diff --git a/.gitattributes b/.gitattributes index 633205596a3..655512c0bb9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1803,6 +1803,7 @@ res/cardsfolder/icatian_priest.txt -text svneol=native#text/plain res/cardsfolder/icatian_scout.txt -text svneol=native#text/plain res/cardsfolder/icatian_town.txt -text svneol=native#text/plain res/cardsfolder/ice_storm.txt -text svneol=native#text/plain +res/cardsfolder/ichor_rats.txt -text svneol=native#text/plain res/cardsfolder/ichor_slick.txt -text svneol=native#text/plain res/cardsfolder/ichorclaw_myr.txt -text svneol=native#text/plain res/cardsfolder/icy_manipulator.txt -text svneol=native#text/plain diff --git a/res/cardsfolder/ichor_rats.txt b/res/cardsfolder/ichor_rats.txt new file mode 100644 index 00000000000..10c132de9c3 --- /dev/null +++ b/res/cardsfolder/ichor_rats.txt @@ -0,0 +1,8 @@ +Name:Ichor Rats +ManaCost:1 B B +Types:Creature Rat +Text:When Ichor Rats enters the battlefield, each player gets a poison counter. +PT:2/1 +K:Infect +SVar:Rarity:Uncommon +End diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index bc63935ac24..62112689798 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -17670,6 +17670,29 @@ public class CardFactory_Creatures { card.addComesIntoPlayCommand(addLevelCounters); }//*************** END ************ END ************************** + //*************** START *********** START ************************** + else if(cardName.equals("Ichor Rats")) { + + final Ability ability = new Ability(card, "0") { + + @Override + public void resolve() { + AllZone.Human_PoisonCounter.addPoisonCounters(1); + AllZone.Computer_PoisonCounter.addPoisonCounters(1); + }//resolve() + };//Ability + + Command addPsnCounters = new Command() { + private static final long serialVersionUID = 454918862752568246L; + + public void execute() { + ability.setStackDescription(card + " - Each player gets a poison counter."); + AllZone.Stack.add(ability); + } + }; + card.addComesIntoPlayCommand(addPsnCounters); + }//*************** END ************ END ************************** + //*************** START *********** START ************************** else if(cardName.equals("Tuktuk the Explorer")) {