forked from External/mage
* added dungeon and dungeon room class * [AFR] Implemented Tomb of Annihilation * [AFR] Implemented Shortcut Seeker * [AFR] Implemented Gloom Stalker * [AFR] Implemented Nadaar, Selfless Paladin * added room triggers * added more venturing code, currently untested * fixed error * moved venture into dungeon from player class to game class * removed unnecessary sourceobject from dungeon * fixed npe error * added dungeon completion * fixed concurrent modification exception * added logging * added proper copy methods * added views * updated room text generation * added some missing code * finished implementing CompletedDungeonCondition * [AFR] Implemented Ellywick Tumblestrum * [AFR] Implemented Lost Mine of Phandelver * added choice dialog for dungeons * [AFR] Implemented Dungeon of the Mad Mage * small text fix * added initial dungeon test * [AFR] Implemented Cloister Gargoyle * [AFR] Implemented Dungeon Crawler * small text change for dungeon rooms * added more tests * some simplification to dungeon props * updated testing helper functions * added currently failing test for venturing on separate steps and turns * added tests for dungeon completion * fixed missing trigger visual and dungeons not persisting through turns * some text updates * added rollback test * added a test for multiple dungeons at once * added one more condition test
33 lines
916 B
Java
33 lines
916 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.DeathtouchAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class TheAtropalToken extends TokenImpl {
|
|
|
|
public TheAtropalToken() {
|
|
super("The Atropal", "The Atropal, a legendary 4/4 black God Horror creature token with deathtouch");
|
|
supertype.add(SuperType.LEGENDARY);
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlack(true);
|
|
subtype.add(SubType.GOD);
|
|
subtype.add(SubType.HORROR);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
addAbility(DeathtouchAbility.getInstance());
|
|
}
|
|
|
|
public TheAtropalToken(final TheAtropalToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public TheAtropalToken copy() {
|
|
return new TheAtropalToken(this);
|
|
}
|
|
}
|