mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Added Ichor Rats.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
8
res/cardsfolder/ichor_rats.txt
Normal file
8
res/cardsfolder/ichor_rats.txt
Normal 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
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user