mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +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
|
Brood Birthing
|
||||||
1 R
|
1 R
|
||||||
Sorcery
|
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."
|
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
|
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
|
Animate Artifact
|
||||||
3 U
|
3 U
|
||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
|
|||||||
@@ -5681,7 +5681,7 @@ class CardFactory_Auras {
|
|||||||
|
|
||||||
for (int i = 0; i < 2; i ++)
|
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());
|
Power = Integer.parseInt(ptk[0].trim());
|
||||||
Tough = Integer.parseInt(ptk[1].trim());
|
Tough = Integer.parseInt(ptk[1].trim());
|
||||||
|
|||||||
Reference in New Issue
Block a user