diff --git a/res/cards.txt b/res/cards.txt index 8db390b0904..ba459de9d95 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,10 @@ +Eldrazi Conscription +8 +Enchantment Aura +Enchanted creature gets +10/+10 and has trample and annihilator 2. +Enchant creature +enPump:+10/+10/Trample & Annihilator 2 + Brood Birthing 1 R Sorcery @@ -37,6 +44,11 @@ Creature Eldrazi Drone When Dread Drone enters the battlefield, put two 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add 1 to your mana pool." 4/1 +Blood Birthing +1 R +Sorcery +If you control an Eldrazi Spawn, put three 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add 1 to your mana pool." Otherwise, put one of those tokens onto the battlefield. + Animate Artifact 3 U Enchantment Aura diff --git a/src/forge/CardFactory_Auras.java b/src/forge/CardFactory_Auras.java index 86a54e15bc6..32948a90cd3 100644 --- a/src/forge/CardFactory_Auras.java +++ b/src/forge/CardFactory_Auras.java @@ -5681,7 +5681,7 @@ class CardFactory_Auras { for (int i = 0; i < 2; i ++) { - if (ptk[i].matches("[\\+\\-][0-9]")) ptk[i] =ptk[i].replace("+", ""); + if (ptk[i].matches("[\\+\\-][0-9]+")) ptk[i] =ptk[i].replace("+", ""); } Power = Integer.parseInt(ptk[0].trim()); Tough = Integer.parseInt(ptk[1].trim());