2013-05-17 23:13:02 -07:00
|
|
|
[
|
2013-07-09 05:41:40 -07:00
|
|
|
new MagicWhenOtherDiesTrigger() {
|
2013-05-17 23:13:02 -07:00
|
|
|
@Override
|
|
|
|
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent otherPermanent) {
|
2013-06-23 18:29:26 -07:00
|
|
|
return (otherPermanent.isCreature() &&
|
2013-05-17 23:13:02 -07:00
|
|
|
otherPermanent.hasAbility(MagicAbility.Shadow)) ?
|
|
|
|
new MagicEvent(
|
|
|
|
permanent,
|
|
|
|
this,
|
|
|
|
"PN puts a +1/+1 counter on SN."
|
|
|
|
) :
|
|
|
|
MagicEvent.NONE;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
|
|
game.doAction(new MagicChangeCountersAction(event.getPermanent(),MagicCounterType.PlusOne,1,true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|