24 lines
916 B
Groovy
24 lines
916 B
Groovy
[
|
|
new MagicWhenOtherComesIntoPlayTrigger() {
|
|
@Override
|
|
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent otherPermanent) {
|
|
return (otherPermanent.isCreature() &&
|
|
otherPermanent.isFriend(permanent)) ?
|
|
new MagicEvent(
|
|
permanent,
|
|
otherPermanent,
|
|
this,
|
|
"PN gains life equal to the toughness of RN."
|
|
) :
|
|
MagicEvent.NONE;
|
|
}
|
|
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
// get toughness here so counters on the creature are considered
|
|
final int toughness = (event.getRefPermanent()).getToughness();
|
|
game.doAction(new MagicChangeLifeAction(event.getPlayer(),toughness));
|
|
}
|
|
}
|
|
]
|