Boggart Sprite-Chaser - (Discussion)

Card coding that have been confirmed working and added to the SVN are moved in this forum. Do not post here.
Locked
caront
Posts: 3
Joined: Thu Oct 28, 2010 12:06 pm

Boggart Sprite-Chaser - (Discussion)

Post by caront »

Image

Code: Select all

[card]
name=Boggart Sprite-Chaser
auto=aslongas(other creature[faerie]|myBattlefield) 1/1 && flying
text=As long as you control a Faerie, Boggart Sprite-Chaser gets +1/+1 and has flying.
mana={1}{R}
type=Creature
subtype=Goblin Warrior
power=1
toughness=2
[/card]
I'm not sure to use correctly && and i don't know if is better, like i wrote the code or changing the auto line for 2 auto lines like this(without &&):
auto=aslongas(other creature[faerie]|myBattlefield) 1/1
auto=aslongas(other creature[faerie]|myBattlefield) flying
Zethfox
Posts: 3029
Joined: Thu Jun 10, 2010 11:28 pm

Re: Boggart Sprite-Chaser - (Discussion)

Post by Zethfox »

Code: Select all

[card]
name=Boggart Sprite-Chaser
auto=aslongas(faerie|myBattlefield) 1/1
auto=aslongas(faerie|myBattlefield) flying
text=As long as you control a Faerie, Boggart Sprite-Chaser gets +1/+1 and has flying.
mana={1}{R}
type=Creature
subtype=Goblin Warrior
power=1
toughness=2
[/card]
is already in wagic.
Locked