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