From 5c760a6e195b4d628e4f5245a5bbb364a1fe3d4e Mon Sep 17 00:00:00 2001 From: melvin Date: Tue, 27 Aug 2013 10:30:25 +0800 Subject: [PATCH] replace groovy script with ability in card script --- .../Magarena/scripts/Thistledown_Liege.groovy | 26 ------------------- .../Magarena/scripts/Thistledown_Liege.txt | 6 +++-- 2 files changed, 4 insertions(+), 28 deletions(-) delete mode 100644 release/Magarena/scripts/Thistledown_Liege.groovy diff --git a/release/Magarena/scripts/Thistledown_Liege.groovy b/release/Magarena/scripts/Thistledown_Liege.groovy deleted file mode 100644 index a46a6de38d..0000000000 --- a/release/Magarena/scripts/Thistledown_Liege.groovy +++ /dev/null @@ -1,26 +0,0 @@ -[ - new MagicStatic( - MagicLayer.ModPT, - MagicTargetFilter.TARGET_WHITE_CREATURE_YOU_CONTROL) { - @Override - public void modPowerToughness(final MagicPermanent source,final MagicPermanent permanent,final MagicPowerToughness pt) { - pt.add(1,1); - } - @Override - public boolean condition(final MagicGame game,final MagicPermanent source,final MagicPermanent target) { - return source != target; - } - }, - new MagicStatic( - MagicLayer.ModPT, - MagicTargetFilter.TARGET_BLUE_CREATURE_YOU_CONTROL) { - @Override - public void modPowerToughness(final MagicPermanent source,final MagicPermanent permanent,final MagicPowerToughness pt) { - pt.add(1,1); - } - @Override - public boolean condition(final MagicGame game,final MagicPermanent source,final MagicPermanent target) { - return source != target; - } - } -] diff --git a/release/Magarena/scripts/Thistledown_Liege.txt b/release/Magarena/scripts/Thistledown_Liege.txt index 9bec64deac..1bff5a5b44 100644 --- a/release/Magarena/scripts/Thistledown_Liege.txt +++ b/release/Magarena/scripts/Thistledown_Liege.txt @@ -7,6 +7,8 @@ type=Creature subtype=Kithkin,Knight cost={1}{W/U}{W/U}{W/U} pt=1/3 -ability=flash +ability=flash,\ + lord other white creatures you control get +1/+1,\ + lord other blue creatures you control get +1/+1 +static=player timing=flash -requires_groovy_code