mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Ready // Willing - Fixed tooltip text.
This commit is contained in:
parent
52d90a8d6f
commit
7c579c198d
1 changed files with 5 additions and 4 deletions
|
@ -61,8 +61,9 @@ public class ReadyWilling extends SplitCard<ReadyWilling> {
|
|||
// Creatures you control are indestructible this turn. Untap each creature you control.
|
||||
getLeftHalfCard().getColor().setGreen(true);
|
||||
getLeftHalfCard().getColor().setWhite(true);
|
||||
getLeftHalfCard().getSpellAbility().addEffect(
|
||||
new GainAbilityAllEffect(IndestructibleAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent("Creatures you controll"), false));
|
||||
Effect effect = 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"));
|
||||
|
||||
// Willing
|
||||
|
@ -70,8 +71,8 @@ public class ReadyWilling extends SplitCard<ReadyWilling> {
|
|||
getRightHalfCard().getColor().setWhite(true);
|
||||
getRightHalfCard().getColor().setBlack(true);
|
||||
getRightHalfCard().getSpellAbility().addEffect(new GainAbilityControlledEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures")) );
|
||||
Effect effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures"));
|
||||
effect.setText("Creatures you control gain lifelink until end of turn.");
|
||||
effect = new GainAbilityControlledEffect(LifelinkAbility.getInstance(), Duration.EndOfTurn, new FilterCreaturePermanent("Creatures"));
|
||||
effect.setText("Creatures you control gain lifelink until end of turn");
|
||||
getRightHalfCard().getSpellAbility().addEffect(effect);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue