- Radiant, Archangel is a 3/3 now.

- Discarding when controlling Necropotence should exile the card.
- Fixed a bug in the combat code where if a creature has received equal to its toughness, it will die no matter what.
- Umezawa's Jitte should trigger now when attacking a planeswalker.
- Added Pit Scorpion and Serpent Generator.
This commit is contained in:
jendave
2011-08-06 03:04:18 +00:00
parent f580399361
commit c80fa9b374
10 changed files with 121 additions and 111 deletions

View File

@@ -17801,8 +17801,46 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
};
card.clearSpellAbility();
card.addSpellAbility(spell);
}
}//*************** END ************ END **************************
//*************** START *********** START **************************
if (cardName.equals("Serpent Generator"))
{
final SpellAbility ability = new Ability_Tap(card, "4")
{
private static final long serialVersionUID = 8428205362391909464L;
public void resolve()
{
PlayerZone play = AllZone.getZone(card);
Card c = new Card();
c.setOwner(card.getController());
c.setController(card.getController());
c.setName("Snake");
c.setImageName("C 1 1 Snake");
c.setManaCost("");
c.setToken(true);
c.addType("Artifact");
c.addType("Creature");
c.addType("Snake");
c.setBaseAttack(1);
c.setBaseDefense(1);
c.addIntrinsicKeyword("Whenever this creature deals damage to a player, that player gets a poison counter.");
play.add(c);
}
};
ability.setStackDescription("Put a 1/1 colorless Snake artifact creature token onto the battlefield. This creature has \"Whenever this creature deals damage to a player, that player gets a poison counter.\"");
ability.setDescription("4, Tap: Put a 1/1 colorless Snake artifact creature token onto the battlefield. This creature has \"Whenever this creature deals damage to a player, that player gets a poison counter.\" (A player with ten or more poison counters loses the game.)");
card.addSpellAbility(ability);
}//*************** END ************ END **************************
// Cards with Cycling abilities
// -1 means keyword "Cycling" not found