Page 48 of 102

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 02:50
by Kieran
Has Gratuitous Violence and Furnace of Rath be created? If so, point me in the right direction.

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 02:56
by AriesKiki

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 08:40
by Kieran
Thanks AriesKiki!

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 09:34
by thefiremind
You can easily make the code for Gratuitous Violence starting from Furnace of Rath: just change
Code: Select all
    <TRIGGER value="CREATURE_TOOK_DAMAGE" />
with
Code: Select all
    <TRIGGER value="CREATURE_TOOK_DAMAGE">
    local source = Damage():GetSource()
    return source:GetZone() == ZONE_IN_PLAY and
    source:GetCardType():Test( CARD_TYPE_CREATURE ) ~= 0 and
    source:GetController() == EffectController()
    </TRIGGER>
then do the same with the other trigger (PLAYER_TOOK_DAMAGE). This will include only creatures you control.

--------------------

AriesKiki wrote:May I request the following cards?

Dauthi Ghoul
Dauthi Warlord
Nether Traitor
Faceless Devourer
Stronghold Overseer
Maze of Shadows
Hatred

Thanks in advance! :)
Preparing a shadow deck? Nice idea! :D I coded Stronghold Overseer for DotP2012 so it shouldn't take me long to update it.

EDIT: I decided to use the same idea that I used on my Agrus Kos. This allows the effect to persist even if a creature gains or loses shadow (which is exactly how it should work).

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 10:24
by Vasht
Hi,

i would like to request Increasing Ambition. Thx

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 11:48
by sumomole
Vasht wrote:Hi,

i would like to request Increasing Ambition. Thx

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 12:05
by Master Necro

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 12:19
by thefiremind

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 12:29
by sumomole
You can find RTR cards in here, and Biomantic Mastery is a official card.
PS: Bane Alley Broker doesn't work perfect, be careful.

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 13:51
by Master Necro

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 15:07
by spakattack
AriesKiki, I figure since I already made it I would share it with you just in case you or someone else would want it, it doesn't really go with your shadow deck, but you may want it for something else your making. Here's Faceless Butcher with the xml, tdx, and png http://www13.zippyshare.com/v/69441120/file.html

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 18:44
by thefiremind
With this, AriesKiki's request should be completely filled. I threw in a Dauthi Slayer as well, since I found a good illustration for it.
I'm thinking about making a shadow deck too... :lol:

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 19:52
by MalevolentZero
Hello! I'm looking to see if a couple of cards were possible to make! One of them, which is the last piece I need to work into a Melira, Sylvok Outcast deck i have, is Phyrexian Unlife. I dunno if its possible to code it, but if it is I would greatly appreciate if someone good with coding could make it for me!

My next request is a pretty big combo:

Ink-Treader Nephilim
Dune-Brood Nephilim
Orochi Leafcaller
Traitorous Instinct
Soul's Fire
Soul's Grace
Chromatic Lantern
Sigil Blessing
Twitch

I know its a big list of requests...but this would absolutely make my day! This deck is amazing in a free-for-all setting and I'm excited to see if it can be implemented!

EDIT: Sorry! I also wanted to add Priviledged Position and Gavonry Ironwright!! Thanks again xP

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 21:08
by thefiremind
I'm afraid you have bad luck with your request... Phyrexian Unlife can't be coded because you can't distinguish between ways of losing the game: either you grant the Platinum Angel characteristic (you can't lose no matter how), or you don't. Ink-Treader Nephilim can't be coded either because you can't check whether a spell has only one target or more.

Re: Card Creation Request Thread

PostPosted: 07 May 2013, 22:24
by AriesKiki
Wow, thank you thefiremind, I have problems specially with Hatred, I had really no idea how to code it :)