Custom Set card - Emblem that transforms creatures

For all your questions regarding Image Card Coding.
Please read the Image Posting Guideline & Index before posting in this forum.
Forum rules
DO NOT POST BUG REPORT IN THIS FORUM !!

Please read carefully the forum rules related to the card coding section : viewtopic.php?f=21&t=1545

All post will be edited to follow forum rules.
Locked
drakurredragon
Posts: 4
Joined: Thu Jul 17, 2014 3:00 am

Custom Set card - Emblem that transforms creatures

Post by drakurredragon »

Hello! I'm messing around with a concept set, and I'm having trouble getting this code snip to work.

Basically, the planewalker's final ability is supposed to drop an emblem that makes all of my creatures merfolk as well as their original type. It's supposed to work in synergy with the rest of the set I'm toying with that contains other lord cards as well.

Code: Select all

auto={C(0/0,-8,Loyalty)}:name(Merfolk!) emblem transforms((,newability[lord(creature|myBattlefield) transforms(merfolk)])) forever dontremove
^This one doesn't work.^

Code: Select all

auto={C(0/0,-8,Loyalty)}:name(Merfolk!) emblem transforms((,newability[lord(creature|myBattlefield) transforms((merfolk))])) forever dontremove
^This one crashes the game.^

Is this even possible? Any help would be greatly appreciated. Thanks!
drakurredragon
Posts: 4
Joined: Thu Jul 17, 2014 3:00 am

Re: Custom Set card - Emblem that transforms creatures

Post by drakurredragon »

Did it again, solved my own problem!

If anyone else wonders,

Code: Select all

auto={C(0/0,-8,Loyalty)}:name(Merfolk!) emblem transforms((,newability[lord(creature|myBattlefield) becomes(merfolk)])) forever dontremove
Locked