mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Implement Healer's Hawk
This commit is contained in:
parent
ef82f571d9
commit
ae62bf4abd
1 changed files with 42 additions and 0 deletions
42
Mage.Sets/src/mage/cards/h/HealersHawk
Normal file
42
Mage.Sets/src/mage/cards/h/HealersHawk
Normal file
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.h;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author jmharmon
|
||||
*/
|
||||
|
||||
public final class HealersHawk extends CardImpl {
|
||||
|
||||
public HealersHawk(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}");
|
||||
|
||||
this.subtype.add(SubType.BIRD);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
public HealersHawk(final HealersHawk card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public HealersHawk copy() {
|
||||
return new HealersHawk(this);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue