mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Living Terrian, Corrupted Zendikon - fix incorrect duration and standardize factor.
This commit is contained in:
parent
81b6088cff
commit
1370520e87
2 changed files with 184 additions and 184 deletions
|
@ -63,7 +63,7 @@ public class LivingTerrain extends CardImpl<LivingTerrain> {
|
|||
Ability ability = new EnchantAbility(auraTarget.getTargetName());
|
||||
this.addAbility(ability);
|
||||
// Enchanted land is a 5/6 green Treefolk creature that's still a land.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAttachedEffect(new TreefolkToken(), "Enchanted land is a 5/6 green Treefolk creature that's still a land", Duration.EndOfTurn)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BecomesCreatureAttachedEffect(new TreefolkToken(), "Enchanted land is a 5/6 green Treefolk creature that's still a land", Duration.Custom)));
|
||||
}
|
||||
|
||||
public LivingTerrain(final LivingTerrain card) {
|
||||
|
|
|
@ -86,7 +86,7 @@ public class CorruptedZendikon extends CardImpl<CorruptedZendikon> {
|
|||
class OozeToken extends Token {
|
||||
|
||||
OozeToken() {
|
||||
super("", "3/3 black Ooze creature");
|
||||
super("Ooze", "3/3 black Ooze creature");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add("Ooze");
|
||||
|
|
Loading…
Reference in a new issue