mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Rune-Tail, Kitsune Ascendant - Fixed tooltip text.
This commit is contained in:
parent
614d0d491a
commit
42ca233db6
1 changed files with 4 additions and 5 deletions
|
@ -62,7 +62,6 @@ public class RuneTailKitsuneAscendant extends CardImpl {
|
||||||
this.flipCard = true;
|
this.flipCard = true;
|
||||||
this.flipCardName = "Rune-Tail's Essence";
|
this.flipCardName = "Rune-Tail's Essence";
|
||||||
|
|
||||||
|
|
||||||
// When you have 30 or more life, flip Rune-Tail, Kitsune Ascendant.
|
// When you have 30 or more life, flip Rune-Tail, Kitsune Ascendant.
|
||||||
this.addAbility(new RuneTailKitsuneAscendantFlipAbility());
|
this.addAbility(new RuneTailKitsuneAscendantFlipAbility());
|
||||||
}
|
}
|
||||||
|
@ -103,14 +102,13 @@ class RuneTailKitsuneAscendantFlipAbility extends StateTriggeredAbility {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRule() {
|
public String getRule() {
|
||||||
return "When you have 30 or more life, flip {this}";
|
return "When you have 30 or more life, flip {this}.";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class RuneTailEssence extends Token {
|
class RuneTailEssence extends Token {
|
||||||
|
|
||||||
|
|
||||||
RuneTailEssence() {
|
RuneTailEssence() {
|
||||||
super("Rune-Tail's Essence", "");
|
super("Rune-Tail's Essence", "");
|
||||||
supertype.add("Legendary");
|
supertype.add("Legendary");
|
||||||
|
@ -119,6 +117,7 @@ class RuneTailEssence extends Token {
|
||||||
color.setWhite(true);
|
color.setWhite(true);
|
||||||
|
|
||||||
// Prevent all damage that would be dealt to creatures you control.
|
// Prevent all damage that would be dealt to creatures you control.
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new PreventAllDamageToAllEffect(Duration.WhileOnBattlefield, new FilterControlledCreatureInPlay())));
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
|
||||||
|
new PreventAllDamageToAllEffect(Duration.WhileOnBattlefield, new FilterControlledCreatureInPlay("creatures you control"))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue