- Added Ichor Rats.

This commit is contained in:
jendave
2011-08-06 08:26:47 +00:00
parent 70490d1a5c
commit e3c6f1f184
3 changed files with 32 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -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

View File

@@ -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

View File

@@ -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")) {