replace card code for Wrecking Ball with effect property in card script

master
melvin 2012-08-26 22:41:13 +08:00
parent 49d697bdf8
commit 7fe22821e9
3 changed files with 2 additions and 44 deletions

View File

@ -7,4 +7,4 @@ rarity=C
type=Instant
cost={2}{B}{R}
timing=removal
requires_card_code
effect=Destroy target creature or land

View File

@ -1,43 +0,0 @@
package magic.card;
import magic.model.MagicGame;
import magic.model.MagicPayedCost;
import magic.model.MagicPermanent;
import magic.model.action.MagicDestroyAction;
import magic.model.action.MagicMoveCardAction;
import magic.model.action.MagicPermanentAction;
import magic.model.choice.MagicTargetChoice;
import magic.model.event.MagicEvent;
import magic.model.event.MagicSpellCardEvent;
import magic.model.stack.MagicCardOnStack;
import magic.model.target.MagicDestroyTargetPicker;
public class Wrecking_Ball {
public static final MagicSpellCardEvent E = new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack.getCard(),
cardOnStack.getController(),
MagicTargetChoice.NEG_TARGET_CREATURE_OR_LAND,
new MagicDestroyTargetPicker(false),
new Object[]{cardOnStack},
this,
"Destroy target creature or land$.");
}
@Override
public void executeEvent(
final MagicGame game,
final MagicEvent event,
final Object[] data,
final Object[] choiceResults) {
game.doAction(new MagicMoveCardAction((MagicCardOnStack)data[0]));
event.processTargetPermanent(game,choiceResults,0,new MagicPermanentAction() {
public void doAction(final MagicPermanent permanent) {
game.doAction(new MagicDestroyAction(permanent));
}
});
}
};
}

View File

@ -497,6 +497,7 @@ public class MagicTargetChoice extends MagicChoice {
factory.put("neg target blocked creature", NEG_TARGET_BLOCKED_CREATURE);
factory.put("neg target creature", NEG_TARGET_CREATURE);
factory.put("neg target creature or enchantment", NEG_TARGET_CREATURE_OR_ENCHANTMENT);
factory.put("neg target creature or land", NEG_TARGET_CREATURE_OR_LAND);
factory.put("neg target nonartifact creature", NEG_TARGET_NONARTIFACT_CREATURE);
factory.put("neg target human creature", NEG_TARGET_HUMAN_CREATURE);
factory.put("neg target nonblack creature", NEG_TARGET_NONBLACK_CREATURE);