Painter's Servant code working

Card coding that have been confirmed working and added to the SVN are moved in this forum. Do not post here.
Locked
Blacker lotus
Posts: 2
Joined: Wed Oct 05, 2016 7:31 pm

Painter's Servant code working

Post by Blacker lotus »

Code: Select all

[card]
name=Painter's Servant
auto=choice name(White) aslongas(White Painted|mybattkefield) token(-22233351) <1
auto=choice name(Blue) aslongas(Blue Painted|mybattkefield) token(-22233352) <1
auto=choice name(Black) aslongas(Black Painted|mybattkefield) token(-22233353) <1
auto=choice name(Red) aslongas(Red Painted|mybattkefield) token(-22233354) <1
auto=choice name(Green) aslongas(Green Painted|mybattkefield) token(-22233355) <1
text=As Painter's Servant enters the battlefield, choose a color. -- All cards that aren't on the battlefield, spells, and permanents are the chosen color in addition to their other colors.
mana={2}
type=Artifact Creature
subtype=Scarecrow
power=1
toughness=3
[/card]
[card]
name=White Painted
id=-22233351
type=Legendary Emblem
abilities=shroud,indestructible
auto=lord(*|mybattlefield) becomes(,newcolors[white])
text=All your permanents become White.
[/card]
[card]
name=Blue Painted
id=-22233352
type=Legendary Emblem
abilities=shroud,indestructible
auto=lord(*|mybattlefield) becomes(,newcolors[blue])
text=All your permanents become Blue.
[/card]
[card]
name=Black Painted
id=-22233353
type=Legendary Emblem
abilities=shroud,indestructible
auto=lord(*|mybattlefield) becomes(,newcolors[black])
text=All your permanents become Black.
[/card]
[card]
name=Red Painted
id=-22233354
type=Legendary Emblem
abilities=shroud,indestructible
auto=lord(*|mybattlefield) becomes(,newcolors[red])
text=All your permanents become Red.
[/card]
[card]
name=Green Painted
id=-22233355
type=Legendary Emblem
abilities=shroud,indestructible
auto=lord(*|mybattlefield) becomes(,newcolors[green])
text=All your permanents become Green.
[/card]
Luruz
Posts: 142
Joined: Sat Apr 27, 2013 12:33 am

Re: Painter's Servant code working

Post by Luruz »

Hi, try with this:

Code: Select all

[card]
name=Painter's Servant
auto=chooseacolor lord(creature,artifact,enchantment,planeswalker,stack,exile,sideboard,graveyard,library) transforms(,chosencolor) chooseend
text=As Painter’s Servant enters the battlefield, choose a color. / All cards that aren’t on the battlefield, spells, and permanents are the chosen color in addition to their other colors.
mana={2}
type=Artifact Creature
subtype=Scarecrow
power=1
toughness=3
[/card]
Locked