convert Hystrodon to triggers

This commit is contained in:
jendave
2011-08-06 19:04:44 +00:00
parent 0f5c11fceb
commit 05eeb23f03
2 changed files with 3 additions and 69 deletions

View File

@@ -1,10 +1,12 @@
Name:Hystrodon
ManaCost:4 G
Types:Creature Beast
Text:Whenever Hystrodon deals combat damage to a player, you may draw a card.
Text:no text
PT:3/4
K:Trample
K:Morph:1 G G
T:Mode$ DamageDone | ValidSource$ Card.Self | ValidTarget$ Opponent | CombatDamage$ True | TriggerZones$ Battlefield | Execute$ TrigDraw | Optional$ True | TriggerDescription$ Whenever CARDNAME deals combat damage to a player, you may draw a card.
SVar:TrigDraw:AB$Draw | Cost$ 0 | Defined$ You | NumCards$ 1
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/hystrodon.jpg
SetInfo:ONS|Rare|http://magiccards.info/scans/en/on/266.jpg

View File

@@ -4423,7 +4423,6 @@ public class GameActionUtil {
else if(c.getName().equals("Augury Adept")) playerCombatDamage_Augury_Adept(c);
else if(c.getName().equals("Spawnwrithe")) playerCombatDamage_Spawnwrithe(c);
else if(c.getName().equals("Glint-Eye Nephilim") || c.getName().equals("Cold-Eyed Selkie")) playerCombatDamage_Glint_Eye_Nephilim(c);
else if(c.getName().equals("Hystrodon") && !c.isFaceDown()) playerCombatDamage_Hystrodon(c);
else if(c.getName().equals("Rootwater Thief")) playerCombatDamage_Rootwater_Thief(c);
else if(c.getName().equals("Treva, the Renewer")) playerCombatDamage_Treva(c);
else if(c.getName().equals("Rith, the Awakener")) playerCombatDamage_Rith(c);
@@ -4517,54 +4516,6 @@ public class GameActionUtil {
}
}
private static void may_Return_Graveyard_to_Hand(final Card source, final String[] valid) {
final Player player = source.getController();
final PlayerZone grave = AllZone.getZone(Constant.Zone.Graveyard, player);
final boolean mayReturn = true;
final SpellAbility returnTgt = new Ability(source, "0") {
@Override
public void resolve() {
Card target = getTargetCard();
if (AllZone.GameAction.isCardInZone(target, grave) && CardFactoryUtil.canTarget(source, target)) {
AllZone.GameAction.moveToHand(target);
}
}//resolve()
};// returnTgt
CardList choices = new CardList(grave.getCards());
choices = choices.getValidCards(valid, player, source);
choices = choices.filter(AllZoneUtil.getCanTargetFilter(source));
if( choices.isEmpty() ) return;
if( player.isHuman() ) {
if (grave.size() > 0) {
Object o;
if (mayReturn) {
o = GuiUtils.getChoiceOptional("Select a card", choices.toArray());
} else {
o = GuiUtils.getChoice("Select a card", choices.toArray());
}
if (o != null) {
Card c_1 = (Card) o;
returnTgt.setTargetCard(c_1);
AllZone.Stack.add(returnTgt);
}
}
}// if HumanPlayer
else { // ComputerPlayer
if (choices.size() > 0) {
returnTgt.setTargetCard(choices.get(0));
AllZone.Stack.add(returnTgt);
}
}// ComputerPlayer
}
private static void playerCombatDamage_PoisonCounter(Card c, int n) {
final Player opponent = c.getController().getOpponent();
@@ -4820,25 +4771,6 @@ public class GameActionUtil {
}
}
private static void playerCombatDamage_Hystrodon(final Card c) {
final Player player = c.getController();
final int power = c.getNetAttack();
if (power > 0) {
Ability ability2 = new Ability(c, "0") {
@Override
public void resolve() {
player.mayDrawCard();
}//resolve()
};// ability2
StringBuilder sb = new StringBuilder();
sb.append(c.getName()).append(" - ").append(player).append(" may draw a card.");
ability2.setStackDescription(sb.toString());
AllZone.Stack.add(ability2);
}// if
}//playerCombatDamage_Hystrodon()
private static void playerCombatDamage_Glint_Eye_Nephilim(Card c) {
final Player player = c.getController();
final int power = c.getNetAttack();