mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
- Added Eldrazi Conscription (and fixed the regex to look at more than one digit for P/T in CardFactory_Auras).
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user