mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Some text generation changes.
This commit is contained in:
parent
4fb0471fce
commit
cae028cc78
4 changed files with 4 additions and 4 deletions
|
@ -73,7 +73,7 @@ public class JushiApprentice extends CardImpl<JushiApprentice> {
|
|||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardControllerEffect(1), new ManaCostsImpl("{2}{U}"));
|
||||
ability.addCost(new TapSourceCost());
|
||||
ability.addEffect(new ConditionalOneShotEffect(new FlipSourceEffect(), new CardsInHandCondition(CountType.MORE_THAN, 8),
|
||||
"If you have nine or more cards in hand, flip Jushi Apprentice"));
|
||||
"If you have nine or more cards in hand, flip {this}"));
|
||||
this.addAbility(ability);
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinousEffect(new CopyTokenEffect(new TomoyaTheRevealer()), FlippedCondition.getInstance(), "")));
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ public class KitsuneMystic extends CardImpl<KitsuneMystic> {
|
|||
// At the beginning of the end step, if Kitsune Mystic is enchanted by two or more Auras, flip it.
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new OnEventTriggeredAbility(GameEvent.EventType.END_TURN_STEP_PRE, "beginning of the end step", true, new FlipSourceEffect()),
|
||||
new EnchantedCondition(2),"At the beginning of the end step, if Kitsune Mystic is enchanted by two or more Auras, flip it.", false
|
||||
new EnchantedCondition(2),"At the beginning of the end step, if {this} is enchanted by two or more Auras, flip it.", false
|
||||
));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ConditionalContinousEffect(new CopyTokenEffect(new AutumnTailKitsuneSage()), FlippedCondition.getInstance(), "")));
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@ class NezumiGraverobberFlipEffect extends OneShotEffect<NezumiGraverobberFlipEff
|
|||
|
||||
NezumiGraverobberFlipEffect() {
|
||||
super(Constants.Outcome.BecomeCreature);
|
||||
staticText = "If no cards are in that graveyard, flip Nezumi Graverobber";
|
||||
staticText = "If no cards are in that graveyard, flip {this}";
|
||||
}
|
||||
|
||||
NezumiGraverobberFlipEffect(final NezumiGraverobberFlipEffect effect) {
|
||||
|
|
|
@ -109,7 +109,7 @@ class StudentOfElementsHasFlyingAbility extends StateTriggeredAbility<StudentOfE
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "When Student of Elements has flying, flip it.";
|
||||
return "When {this} has flying, flip it.";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue