forked from External/mage
huge rework on subtypes (#3668)
* huge rework on subtypes * update for coat of arms * fix test
This commit is contained in:
parent
81fb4b5d92
commit
09f0c9ad97
185 changed files with 1068 additions and 906 deletions
|
|
@ -35,6 +35,7 @@ import mage.abilities.costs.common.ExileSourceFromGraveCost;
|
|||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.TimingRule;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.Game;
|
||||
|
|
@ -83,7 +84,7 @@ public class EternalizeAbility extends ActivatedAbilityImpl {
|
|||
StringBuilder sb = new StringBuilder("Eternalize ").append(cost.getText());
|
||||
sb.append(" <i>(").append(cost.getText());
|
||||
sb.append(", Exile this card from your graveyard: Create a token that's a copy of it, except it's a 4/4 black Zombie ");
|
||||
for (String subtype : card.getSubtype(null)) {
|
||||
for (SubType subtype : card.getSubtype(null)) {
|
||||
sb.append(subtype).append(" ");
|
||||
}
|
||||
sb.append(" with no mana cost. Eternalize only as a sorcery.)</i>");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue