Page 98 of 102

Re: Card Creation Request Thread

PostPosted: 24 Jul 2014, 23:03
by volrathxp
triskelion wrote:I can imagine that everyone must be incredibly busy with trying to figure out Magic 2015 and those ZED files, but would anyone by chance be able to make me a Kalonian Twingrove card from the new core set?
I can look at it, I'm making up M15 stuff. It shouldn't be too difficult.

Re: Card Creation Request Thread

PostPosted: 25 Jul 2014, 00:29
by volrathxp
triskelion wrote:I can imagine that everyone must be incredibly busy with trying to figure out Magic 2015 and those ZED files, but would anyone by chance be able to make me a Kalonian Twingrove card from the new core set?
Here's the XML/TDX. I haven't fully tested it, but it's a relatively simple card. Show up fine with no errors in Riiak's deckbuilder.

Re: Card Creation Request Thread

PostPosted: 25 Jul 2014, 00:46
by triskelion
Excellent, thank you very much, I will give it a test when I get home

Re: Card Creation Request Thread

PostPosted: 25 Jul 2014, 01:12
by mr friendly guy
I am thinking of doing a Jester's cap based deck using phrexian metamorph and Academy ruins to recycle. I however plan to use Ghostly Prison, copy enchantment (of the prison), Blazing Archon or silent arbiter to slow things down until I exile his cards. I like to play this on either DoTP 2013 or DoTP 2014. I have checked the deck builders and it seems like I need either

1. Jester's cap for DotP 2014 (my WADS from 2013 have it) or
2. Copy Enchantment for DoTP 2013 (my WADS from 2014 has it)

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 02:13
by triskelion
volrathxp wrote:
triskelion wrote:I can imagine that everyone must be incredibly busy with trying to figure out Magic 2015 and those ZED files, but would anyone by chance be able to make me a Kalonian Twingrove card from the new core set?
Here's the XML/TDX. I haven't fully tested it, but it's a relatively simple card. Show up fine with no errors in Riiak's deckbuilder.
It's almost perfect, but the token doesn't have any creature subtypes, which affects my treefolk deck a lot :(

Can you quickly add that small part in? I tried to myself but had absolutely no idea where I'd put what lol

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 02:18
by volrathxp
triskelion wrote:
volrathxp wrote:
triskelion wrote:I can imagine that everyone must be incredibly busy with trying to figure out Magic 2015 and those ZED files, but would anyone by chance be able to make me a Kalonian Twingrove card from the new core set?
Here's the XML/TDX. I haven't fully tested it, but it's a relatively simple card. Show up fine with no errors in Riiak's deckbuilder.
It's almost perfect, but the token doesn't have any creature subtypes, which affects my treefolk deck a lot :(

Can you quickly add that small part in? I tried to myself but had absolutely no idea where I'd put what lol
Code: Select all
  <TYPE metaname="Creature" />
  <SUB_TYPE metaname="Treefolk Warrior" />
From the token's XML. It looks fine to me...

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 03:18
by sweetLu
It's been awhile but I believe you need to add those separately if this is for 2014. That is:
Code: Select all
<SUB_TYPE metaname="Treefolk" />
<SUB_TYPE metaname="Warrior" />

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 10:21
by mr friendly guy
mr friendly guy wrote:I am thinking of doing a Jester's cap based deck using phrexian metamorph and Academy ruins to recycle. I however plan to use Ghostly Prison, copy enchantment (of the prison), Blazing Archon or silent arbiter to slow things down until I exile his cards. I like to play this on either DoTP 2013 or DoTP 2014. I have checked the deck builders and it seems like I need either

1. Jester's cap for DotP 2014 (my WADS from 2013 have it) or
2. Copy Enchantment for DoTP 2013 (my WADS from 2014 has it)
Also realised I need Ghostly Prison, Sanctum Gargoyle for DoTP 2014.

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 12:03
by volrathxp
sweetLu wrote:It's been awhile but I believe you need to add those separately if this is for 2014. That is:
Code: Select all
<SUB_TYPE metaname="Treefolk" />
<SUB_TYPE metaname="Warrior" />
Ah. Right on. I will look into that then. Thanks. :mrgreen:

Re: Card Creation Request Thread

PostPosted: 26 Jul 2014, 13:23
by volrathxp
triskelion wrote:
volrathxp wrote:
triskelion wrote:I can imagine that everyone must be incredibly busy with trying to figure out Magic 2015 and those ZED files, but would anyone by chance be able to make me a Kalonian Twingrove card from the new core set?
Here's the XML/TDX. I haven't fully tested it, but it's a relatively simple card. Show up fine with no errors in Riiak's deckbuilder.
It's almost perfect, but the token doesn't have any creature subtypes, which affects my treefolk deck a lot :(

Can you quickly add that small part in? I tried to myself but had absolutely no idea where I'd put what lol
Here's the updated XML for the token.

Re: Card Creation Request Thread

PostPosted: 02 Aug 2014, 22:54
by NEMESiS
I have another question. :mrgreen: This one is about my Mindclaw Shaman also in DotP2012. So when casting cards from my opponent like Explore, Tidings it works great but when it has to cast something like Æther Mutation the game does nothing and it leaves you stuck waiting for "something" to happen. Meaning you can't click "continue" until something resolves. here is my code:

Code: Select all
  <TRIGGERED_ABILITY  suppress_fizzle="1" zone="player">
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[When Mindclaw Shaman enters the battlefield, target opponent reveals his or her hand. You may cast an instant or sorcery card from it without paying its mana cost.]]></LOCALISED_TEXT>
    <TRIGGER value="COMES_INTO_PLAY" simple_qualifier="self" />
    <TARGET_DETERMINATION>
    local filter = Object():GetFilter()
    filter:Clear()
    filter:SetOwner( Object():GetController() )
    filter:SetFilterType( FILTER_TYPE_PLAYERS + FILTER_TYPE_OPPONENTS )
    return TargetBadF()
    </TARGET_DETERMINATION>
    <PLAY_TIME_ACTION target_choosing="1">
    ChooseTarget( "CARD_QUERY_CHOOSE_OPPONENT" )
    </PLAY_TIME_ACTION>
    <RESOLUTION_TIME_ACTION>
    local targetPlayer = Object():GetTargetPlayer()
    local filter = Object():GetFilter()
    filter:Clear()
    filter:NotTargetted()
    filter:SetZone( ZONE_HAND )
    filter:AddCardType( CARD_TYPE_SORCERY )
    filter:AddCardType( CARD_TYPE_INSTANT )
    filter:SetPlayer( targetPlayer )
    filter:PlayerAntiHint( Object():GetPlayer() )
    filter:May()
    Object():GetPlayer():ChooseTarget( "CARD_QUERY_CHOOSE_CARD_TO_CAST" )
    </RESOLUTION_TIME_ACTION>
    <RESOLUTION_TIME_ACTION>
    local target = Object():GetTargetCard()
    if target ~= nil and target:GetZone() == ZONE_HAND then
      MTG():ObjectDataChest():Set_ProtectedCardPtr( 1, target )
      Object():GetPlayer():PlaySpellForFreeAtAnyTime( target )
    end
    </RESOLUTION_TIME_ACTION>
   </TRIGGERED_ABILITY>
Is there something I need to add?

Re: Card Creation Request Thread

PostPosted: 09 Aug 2014, 05:04
by Necropotence
I need some cards for dotp2014 =D - Repeal - Search for Tomorrow - Cascade Bluffs - Flooded Grove

from now, thanks

Re: Card Creation Request Thread

PostPosted: 23 Sep 2014, 22:33
by r3ikobomb
Hey, I just started coding cards and I'm starting to get the hand of it. But I'm having trouble figuring out how to code Mirror Gallery. I don't have a card to reference as I don't believe anyone coding for 2014 has made it or anything close. Please help?

Re: Card Creation Request Thread

PostPosted: 23 Sep 2014, 22:44
by RiiakShiNal
r3ikobomb wrote:Hey, I just started coding cards and I'm starting to get the hand of it. But I'm having trouble figuring out how to code Mirror Gallery. I don't have a card to reference as I don't believe anyone coding for 2014 has made it or anything close. Please help?
Unfortunately, it can't be made as there is no way to tell the engine to ignore a specific rule (nor any hacks put in by the developers to allow this specific card either).

Re: Card Creation Request Thread

PostPosted: 12 Oct 2014, 18:16
by Daninja
Hello,

I would like to ask you kindly for a code for DOTP14 for Priest of Titania and Gaea's Cradle. I've not been able to find a well functioning code for them so far.

Any help will be greatly appreciated. Thanks a lot in advance.