mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Garrison Cat
This commit is contained in:
parent
415f5d2e6a
commit
ac3ebcbf60
2 changed files with 39 additions and 0 deletions
38
Mage.Sets/src/mage/cards/g/GarrisonCat.java
Normal file
38
Mage.Sets/src/mage/cards/g/GarrisonCat.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.HumanSoldierToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GarrisonCat extends CardImpl {
|
||||
|
||||
public GarrisonCat(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}");
|
||||
|
||||
this.subtype.add(SubType.CAT);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// When Garrison Cat dies, create a 1/1 white Human Soldier creature token.
|
||||
this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new HumanSoldierToken())));
|
||||
}
|
||||
|
||||
private GarrisonCat(final GarrisonCat card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GarrisonCat copy() {
|
||||
return new GarrisonCat(this);
|
||||
}
|
||||
}
|
|
@ -93,6 +93,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Forbidden Friendship", 119, Rarity.COMMON, mage.cards.f.ForbiddenFriendship.class));
|
||||
cards.add(new SetCardInfo("Frondland Felidar", 186, Rarity.RARE, mage.cards.f.FrondlandFelidar.class));
|
||||
cards.add(new SetCardInfo("Fully Grown", 154, Rarity.COMMON, mage.cards.f.FullyGrown.class));
|
||||
cards.add(new SetCardInfo("Garrison Cat", 14, Rarity.COMMON, mage.cards.g.GarrisonCat.class));
|
||||
cards.add(new SetCardInfo("Gemrazer", 155, Rarity.RARE, mage.cards.g.Gemrazer.class));
|
||||
cards.add(new SetCardInfo("General Kudro of Drannith", 187, Rarity.MYTHIC, mage.cards.g.GeneralKudroOfDrannith.class));
|
||||
cards.add(new SetCardInfo("General's Enforcer", 188, Rarity.UNCOMMON, mage.cards.g.GeneralsEnforcer.class));
|
||||
|
|
Loading…
Reference in a new issue