mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
Improved target messages for users: added extra hints;
Applied Biomancy - added target's choose hints;
This commit is contained in:
parent
91a3328907
commit
ff5839860e
5 changed files with 52 additions and 49 deletions
|
|
@ -24,11 +24,11 @@ public final class AppliedBiomancy extends CardImpl {
|
|||
|
||||
// • Target creature gets +1/+1 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(1, 1));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent().withChooseHint("gets +1/+1 until end of turn"));
|
||||
|
||||
// • Return target creature to its owner's hand.
|
||||
Mode mode = new Mode(new ReturnToHandTargetEffect());
|
||||
mode.addTarget(new TargetCreaturePermanent());
|
||||
mode.addTarget(new TargetCreaturePermanent().withChooseHint("return to its owner's hand"));
|
||||
this.getSpellAbility().addMode(mode);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue