diff --git a/res/card-pictures.txt b/res/card-pictures.txt index a940e409d50..f94108613fa 100644 --- a/res/card-pictures.txt +++ b/res/card-pictures.txt @@ -38,6 +38,10 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg +quag_vampires.jpg http://www.wizards.com/global/images/magic/general/quag_vampires.jpg +skitter_of_lizards.jpg http://www.wizards.com/global/images/magic/general/skitter_of_lizards.jpg +blaze.jpg http://www.wizards.com/global/images/magic/general/blaze.jpg +wolfbriar_elemental.jpg http://www.wizards.com/global/images/magic/general/wolfbriar_elemental.jpg isochron_scepter.jpg http://www.wizards.com/global/images/magic/general/isochron_scepter.jpg prosperity.jpg http://www.wizards.com/global/images/magic/general/prosperity.jpg azorius_chancery.jpg http://www.wizards.com/global/images/magic/general/azorius_chancery.jpg diff --git a/res/cards.txt b/res/cards.txt index 6db7c880360..a356fe6ea75 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -1,3 +1,19 @@ +Quag Vampires +B +Creature Vampire Rogue +Quag Vampires enters the battlefield with a +1/+1 counter on it for each time it was kicked. +1/1 +Swampwalk +Multikicker 1 B + +Skitter of Lizards +R +Creature Lizard +Skitter of Lizards enters the battlefield with a +1/+1 counter on it for each time it was kicked. +1/1 +Haste +Multikicker 1 R + Blaze X R Sorcery diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index 2fc5a487477..4e5d3f922d1 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -17230,7 +17230,8 @@ public class CardFactory_Creatures { }//*************** END ************ END ************************** //*************** START *********** START ************************** - else if(cardName.equals("Gnarlid Pack") || cardName.equals("Apex Hawks") || cardName.equals("Enclave Elite")) + else if(cardName.equals("Gnarlid Pack") || cardName.equals("Apex Hawks") || cardName.equals("Enclave Elite") || + cardName.equals("Quag Vampires") || cardName.equals("Skitter of Lizards")) { final Ability ability = new Ability(card, "0") { @Override