From d3ff3fcf48e757bae228b3ec433e5f4222ff17f4 Mon Sep 17 00:00:00 2001 From: "a. benedict balbuena" Date: Mon, 3 Jun 2013 13:32:35 +0800 Subject: [PATCH] added Minotaur Tactician --- .../scripts/Minotaur_Tactician.groovy | 19 +++++++++++++++++++ .../Magarena/scripts/Minotaur_Tactician.txt | 12 ++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 release/Magarena/scripts/Minotaur_Tactician.groovy create mode 100644 release/Magarena/scripts/Minotaur_Tactician.txt diff --git a/release/Magarena/scripts/Minotaur_Tactician.groovy b/release/Magarena/scripts/Minotaur_Tactician.groovy new file mode 100644 index 0000000000..3caa8006d6 --- /dev/null +++ b/release/Magarena/scripts/Minotaur_Tactician.groovy @@ -0,0 +1,19 @@ +[ + new MagicStatic(MagicLayer.ModPT) { + @Override + public void modPowerToughness(final MagicPermanent source,final MagicPermanent permanent,final MagicPowerToughness pt) { + if (source.getController().controlsPermanent(MagicColor.White)) { + pt.add(1,1); + } + } + }, + + new MagicStatic(MagicLayer.ModPT) { + @Override + public void modPowerToughness(final MagicPermanent source,final MagicPermanent permanent,final MagicPowerToughness pt) { + if (source.getController().controlsPermanent(MagicColor.Blue)) { + pt.add(1,1); + } + } + } +] diff --git a/release/Magarena/scripts/Minotaur_Tactician.txt b/release/Magarena/scripts/Minotaur_Tactician.txt new file mode 100644 index 0000000000..af71e51258 --- /dev/null +++ b/release/Magarena/scripts/Minotaur_Tactician.txt @@ -0,0 +1,12 @@ +name=Minotaur Tactician +url=http://magiccards.info/ap/en/65.html +image=http://magiccards.info/scans/en/ap/65.jpg +value=2.923 +rarity=C +type=Creature +subtype=Minotaur +cost={3}{R} +pt=1/1 +ability=haste +timing=main +requires_groovy_code