added Loxodon Mystic and Loyal Sentry
parent
1a4233fa67
commit
13d39c22b6
|
@ -1,3 +1,27 @@
|
|||
>Loyal Sentry
|
||||
image=http://magiccards.info/scans/en/10e/27.jpg
|
||||
value=2
|
||||
rarity=R
|
||||
type=Creature
|
||||
subtype=Human,Soldier
|
||||
color=w
|
||||
converted=1
|
||||
cost={W}
|
||||
pt=1/1
|
||||
timing=main
|
||||
|
||||
>Loxodon Mystic
|
||||
image=http://magiccards.info/scans/en/10e/26.jpg
|
||||
value=3
|
||||
rarity=C
|
||||
type=Creature
|
||||
subtype=Elephant,Cleric
|
||||
color=w
|
||||
converted=5
|
||||
cost={3}{W}{W}
|
||||
pt=3/3
|
||||
timing=main
|
||||
|
||||
>Lord of the Undead
|
||||
image=http://magiccards.info/scans/en/10e/155.jpg
|
||||
value=3
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicManaCost;
|
||||
import magic.model.MagicSource;
|
||||
import magic.model.condition.MagicCondition;
|
||||
import magic.model.event.MagicActivationHints;
|
||||
import magic.model.event.MagicEvent;
|
||||
import magic.model.event.MagicPayManaCostTapEvent;
|
||||
import magic.model.event.MagicPermanentActivation;
|
||||
import magic.model.event.MagicTapCreatureActivation;
|
||||
import magic.model.event.MagicTiming;
|
||||
|
||||
public class Loxodon_Mystic {
|
||||
public static final MagicPermanentActivation A1 = new MagicTapCreatureActivation(
|
||||
new MagicCondition[]{MagicCondition.CAN_TAP_CONDITION,MagicManaCost.WHITE.getCondition()},
|
||||
new MagicActivationHints(MagicTiming.Tapping),
|
||||
"Tap") {
|
||||
@Override
|
||||
public MagicEvent[] getCostEvent(final MagicSource source) {
|
||||
return new MagicEvent[]{
|
||||
new MagicPayManaCostTapEvent(source,source.getController(),
|
||||
MagicManaCost.WHITE)};
|
||||
}
|
||||
};
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
package magic.card;
|
||||
|
||||
import magic.model.MagicGame;
|
||||
import magic.model.MagicPermanent;
|
||||
import magic.model.action.MagicDestroyAction;
|
||||
import magic.model.event.MagicEvent;
|
||||
import magic.model.trigger.MagicWhenBlocksTrigger;
|
||||
|
||||
public class Loyal_Sentry {
|
||||
public static final MagicWhenBlocksTrigger T = new MagicWhenBlocksTrigger() {
|
||||
@Override
|
||||
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent data) {
|
||||
final MagicPermanent blocked = permanent.getBlockedCreature();
|
||||
return (permanent == data && blocked.isValid()) ?
|
||||
new MagicEvent(
|
||||
permanent,
|
||||
permanent.getController(),
|
||||
new Object[]{blocked,permanent},
|
||||
this,
|
||||
"Destroy " + blocked + ". Destroy " + permanent + "."):
|
||||
MagicEvent.NONE;
|
||||
}
|
||||
@Override
|
||||
public void executeEvent(
|
||||
final MagicGame game,
|
||||
final MagicEvent event,
|
||||
final Object data[],
|
||||
final Object[] choiceResults) {
|
||||
game.doAction(new MagicDestroyAction((MagicPermanent)data[0]));
|
||||
game.doAction(new MagicDestroyAction((MagicPermanent)data[1]));
|
||||
}
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue