diff --git a/release/Magarena/scripts/Wirewood_Lodge.groovy b/release/Magarena/scripts/Wirewood_Lodge.groovy deleted file mode 100644 index 7fa3bf1170..0000000000 --- a/release/Magarena/scripts/Wirewood_Lodge.groovy +++ /dev/null @@ -1,34 +0,0 @@ -[ - new MagicPermanentActivation( - new MagicActivationHints(MagicTiming.Tapping), - "Untap" - ) { - - @Override - public Iterable getCostEvent(final MagicPermanent source) { - return [ - new MagicPayManaCostTapEvent(source,"{G}") - ]; - } - - @Override - public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) { - return new MagicEvent( - source, - MagicTargetChoice.POS_TARGET_ELF, - MagicTapTargetPicker.Untap, - this, - "Untap target Elf\$." - ); - } - - @Override - public void executeEvent(final MagicGame game, final MagicEvent event) { - event.processTargetPermanent(game,new MagicPermanentAction() { - public void doAction(final MagicPermanent creature) { - game.doAction(new MagicUntapAction(creature)); - } - }); - } - } -] diff --git a/release/Magarena/scripts/Wirewood_Lodge.txt b/release/Magarena/scripts/Wirewood_Lodge.txt index edde063b9e..c2d41f9746 100644 --- a/release/Magarena/scripts/Wirewood_Lodge.txt +++ b/release/Magarena/scripts/Wirewood_Lodge.txt @@ -4,6 +4,6 @@ image=http://magiccards.info/scans/en/evg/26.jpg value=4.440 rarity=U type=Land -ability=tap add mana {1} +ability=tap add mana {1};\ + pay {G},{T} Untap target Elf. timing=land -requires_groovy_code