added Lifelink

master
beholder 2011-08-31 17:22:30 +02:00
parent 480be348c9
commit 5fb4036fa7
2 changed files with 24 additions and 0 deletions

View File

@ -5306,6 +5306,18 @@ power=1
toughness=3
timing=aura
>Lifelink
image=http://magiccards.info/scans/en/m12/24.jpg
value=1
rarity=C
type=Enchantment
subtype=Aura
color=w
converted=1
cost={W}
ability=lifelink
timing=aura
>Elephant Guide
image=http://magiccards.info/scans/en/gvl/18.jpg
value=4

View File

@ -0,0 +1,12 @@
package magic.card;
import magic.model.choice.MagicTargetChoice;
import magic.model.event.MagicPlayAuraEvent;
import magic.model.event.MagicSpellCardEvent;
import magic.model.target.MagicLifelinkTargetPicker;
public class Lifelink {
public static final MagicSpellCardEvent S = new MagicPlayAuraEvent(
MagicTargetChoice.POS_TARGET_CREATURE,
MagicLifelinkTargetPicker.getInstance());
}