added Renounce the Guilds

master
melvin 2013-07-14 11:34:02 +08:00
parent 5e06eec01f
commit 8451b32200
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,23 @@
[
new MagicSpellCardEvent() {
@Override
public MagicEvent getEvent(final MagicCardOnStack cardOnStack,final MagicPayedCost payedCost) {
return new MagicEvent(
cardOnStack,
this,
"Each player sacrifices a multicolored permanent."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
for (final MagicPlayer player : game.getPlayers()) {
game.addEvent(new MagicSacrificePermanentEvent(
event.getSource(),
player,
MagicTargetChoice.SACRIFICE_MULTICOLORED_PERMANENT
));
}
}
}
]

View File

@ -0,0 +1,10 @@
name=Renounce the Guilds
url=http://magiccards.info/dgm/en/5.html
image=http://magiccards.info/scans/en/dgm/5.jpg
value=4.632
removal=3
rarity=R
type=Instant
cost={1}{W}
timing=removal
requires_groovy_code