[DMC] Implement Jared Carthalion (#9549)

* [DMC] Implement Jared Carthalion

* Applied requested changes
This commit is contained in:
PurpleCrowbar 2022-09-22 02:00:11 +01:00 committed by GitHub
parent ecd43c07e2
commit fddec2ae9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 174 additions and 0 deletions

View file

@ -436,6 +436,7 @@ public enum SubType {
GRIST("Grist", SubTypeSet.PlaneswalkerType),
HUATLI("Huatli", SubTypeSet.PlaneswalkerType),
JACE("Jace", SubTypeSet.PlaneswalkerType),
JARED("Jared", SubTypeSet.PlaneswalkerType),
JESKA("Jeska", SubTypeSet.PlaneswalkerType),
KAITO("Kaito", SubTypeSet.PlaneswalkerType),
KARN("Karn", SubTypeSet.PlaneswalkerType),

View file

@ -0,0 +1,39 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.common.InfoEffect;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.Zone;
/**
* @author PurpleCrowbar
*/
public final class KavuAllColorToken extends TokenImpl {
public KavuAllColorToken() {
super("Kavu Token", "3/3 Kavu creature token with trample that's all colors");
cardType.add(CardType.CREATURE);
subtype.add(SubType.KAVU);
color.setWhite(true);
color.setBlue(true);
color.setBlack(true);
color.setRed(true);
color.setGreen(true);
power = new MageInt(3);
toughness = new MageInt(3);
this.addAbility(TrampleAbility.getInstance());
this.addAbility(new SimpleStaticAbility(Zone.ALL, new InfoEffect("This creature is all colors")));
setOriginalExpansionSetCode("DMC");
}
public KavuAllColorToken(final KavuAllColorToken token) {
super(token);
}
public KavuAllColorToken copy() {
return new KavuAllColorToken(this);
}
}