* Ready // Willing - Fixed tooltip text.

This commit is contained in:
LevelX2 2013-07-07 11:15:58 +02:00
parent 52d90a8d6f
commit 7c579c198d

View file

@ -61,8 +61,9 @@ public class ReadyWilling extends SplitCard<ReadyWilling> {
// Creatures you control are indestructible this turn. Untap each creature you control. // Creatures you control are indestructible this turn. Untap each creature you control.
getLeftHalfCard().getColor().setGreen(true); getLeftHalfCard().getColor().setGreen(true);
getLeftHalfCard().getColor().setWhite(true); getLeftHalfCard().getColor().setWhite(true);
getLeftHalfCard().getSpellAbility().addEffect( Effect effect = new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures you controll"), false);
new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures you controll"), false)); effect.setText("Creatures you control are indestructible this turn");
getLeftHalfCard().getSpellAbility().addEffect(effect);
getLeftHalfCard().getSpellAbility().addEffect(new UntapAllControllerEffect(new FilterControlledCreaturePermanent(),"Untap each creature you control")); getLeftHalfCard().getSpellAbility().addEffect(new UntapAllControllerEffect(new FilterControlledCreaturePermanent(),"Untap each creature you control"));
// Willing // Willing
@ -70,8 +71,8 @@ public class ReadyWilling extends SplitCard<ReadyWilling> {
getRightHalfCard().getColor().setWhite(true); getRightHalfCard().getColor().setWhite(true);
getRightHalfCard().getColor().setBlack(true); getRightHalfCard().getColor().setBlack(true);
getRightHalfCard().getSpellAbility().addEffect(new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")) ); getRightHalfCard().getSpellAbility().addEffect(new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")) );
Effect effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")); effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures"));
effect.setText("Creatures you control gain lifelink until end of turn."); effect.setText("Creatures you control gain lifelink until end of turn");
getRightHalfCard().getSpellAbility().addEffect(effect); getRightHalfCard().getSpellAbility().addEffect(effect);
} }