* Living Terrian, Corrupted Zendikon - fix incorrect duration and standardize factor.

This commit is contained in:
Li REN 2013-07-18 18:53:58 -04:00
parent 81b6088cff
commit 1370520e87
2 changed files with 184 additions and 184 deletions

View file

@ -63,7 +63,7 @@ public class LivingTerrain extends CardImpl<LivingTerrain> {
Ability ability = new EnchantAbility(auraTarget.getTargetName()); Ability ability = new EnchantAbility(auraTarget.getTargetName());
this.addAbility(ability); this.addAbility(ability);
// Enchanted land is a 5/6 green Treefolk creature that's still a land. // 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) { public LivingTerrain(final LivingTerrain card) {

View file

@ -86,7 +86,7 @@ public class CorruptedZendikon extends CardImpl<CorruptedZendikon> {
class OozeToken extends Token { class OozeToken extends Token {
OozeToken() { OozeToken() {
super("", "3/3 black Ooze creature"); super("Ooze", "3/3 black Ooze creature");
cardType.add(CardType.CREATURE); cardType.add(CardType.CREATURE);
color.setBlack(true); color.setBlack(true);
subtype.add("Ooze"); subtype.add("Ooze");