It is currently 15 Sep 2025, 19:23
   
Text Size

Card Creation Request Thread

User-made mods in DLC (Downloadable Content) form.
Get MTG cards here for your DotP that aren't available anywhere else!

Moderator: CCGHQ Admins

Re: Card Creation Request Thread

Postby thefiremind » 19 May 2013, 18:00

NEMESiS wrote:What am I doing wrong with Skull Rend? It seems to also target me when discarding:
There's a reason why I try to avoid the FILTER block when I have to do more than 1 action in the same ability... sometimes it gives unexplainable problems. I'd suggest you to remove the FILTER and deal the damage with a "for" loop exactly as you are managing the discards.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 722 times

Re: Card Creation Request Thread

Postby NEMESiS » 19 May 2013, 19:23

thefiremind wrote:
NEMESiS wrote:What am I doing wrong with Skull Rend? It seems to also target me when discarding:
There's a reason why I try to avoid the FILTER block when I have to do more than 1 action in the same ability... sometimes it gives unexplainable problems. I'd suggest you to remove the FILTER and deal the damage with a "for" loop exactly as you are managing the discards.
You are right the filter was doing silly things, like making my opponents discard 3 times the mount of cards. :shock: Anyways, I got it working now, thanks!
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Card Creation Request Thread

Postby yinyangyan » 20 May 2013, 03:00

I'm looking for the following cards, if anyone could link me to them if they've been made, or help me out by making them that would be great.

Isperia the Inscrutable
Sunblast Angel
Bruna, Light of Alabaster
Arcanis the Omnipotent
Spirit Link
Guard Gomazoa
Wall of Frost

I tried making these myself using theFiremind's excellent tutorials, but I just can't seem to get it right, sorry if this is too much for one request.
User avatar
yinyangyan
 
Posts: 8
Joined: 30 Mar 2012, 03:46
Has thanked: 2 times
Been thanked: 0 time

Re: Card Creation Request Thread

Postby sumomole » 20 May 2013, 03:28

I would like to request Animate Dead. Animate Dead can put Clone into play and attached to it, and can be put into play by Sun Titan, but can't be put into play to attached to the attacking creature by Sovereigns of Lost Alara. The most important is Animate Dead enters the battlefield before the enchant creature. I really have no idea to achieve all effects and need help. Thanks everyone! :mrgreen:
User avatar
sumomole
Programmer
 
Posts: 611
Joined: 07 Jun 2011, 08:34
Has thanked: 51 times
Been thanked: 234 times

Re: Card Creation Request Thread

Postby NEMESiS » 20 May 2013, 05:03

yinyangyan wrote:I'm looking for the following cards, if anyone could link me to them if they've been made, or help me out by making them that would be great.

Isperia the Inscrutable
Sunblast Angel
Bruna, Light of Alabaster
Arcanis the Omnipotent
Spirit Link
Guard Gomazoa
Wall of Frost

I tried making these myself using theFiremind's excellent tutorials, but I just can't seem to get it right, sorry if this is too much for one request.
Sunblast Angel is an official card which can be found in Act of War. I happen to have a lot of those cards from different mods so I uploaded the ones I could find for you. The only ones you need now are Isperia the Inscrutable and Spirit Link.
Attachments
Cards.rar
(545.33 KiB) Downloaded 256 times
Last edited by NEMESiS on 20 May 2013, 14:33, edited 2 times in total.
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times


Re: Card Creation Request Thread

Postby sumomole » 20 May 2013, 08:14

yinyangyan wrote:Isperia the Inscrutable
I would also like to know how to search a creature card with flying. :lol:
User avatar
sumomole
Programmer
 
Posts: 611
Joined: 07 Jun 2011, 08:34
Has thanked: 51 times
Been thanked: 234 times

Re: Card Creation Request Thread

Postby NEMESiS » 20 May 2013, 12:27

sumomole wrote:
yinyangyan wrote:Isperia the Inscrutable
I would also like to know how to search a creature card with flying. :lol:
I thought "name a card. That player reveals his or her hand. If he or she reveals the named card..." was the hard part. :lol:
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Card Creation Request Thread

Postby Kieran » 20 May 2013, 14:45

Okay, I would like to request Arcane Sanctum, Fertile Ground, Jungle Shrine, Savage Lands, Traumatize, and Transcendent Master to finish Rickycoe123 deck request. In the meantime I'll be working to complete Transcendent Master based on the Level-up cards Vasht provided.
Last edited by Kieran on 20 May 2013, 16:56, edited 2 times in total.
Kieran
 
Posts: 232
Joined: 03 Nov 2012, 01:09
Has thanked: 21 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby thefiremind » 20 May 2013, 14:50

NEMESiS wrote:
sumomole wrote:
yinyangyan wrote:Isperia the Inscrutable
I would also like to know how to search a creature card with flying. :lol:
I thought "name a card. That player reveals his or her hand. If he or she reveals the named card..." was the hard part. :lol:
The "name a card" part can be done with this:
viewtopic.php?f=63&t=8958
Searching a creature with flying can be done in 2 ways:
  • You make a fake characteristic stored in the ObjectDC of the cards with flying that you can check while they are in the library. This would require to recode the cards with flying, though.
  • You make a list of card names for Isperia to search for (at least those that you insert in the deck you're making).

sumomole wrote:I would like to request Animate Dead. Animate Dead can put Clone into play and attached to it, and can be put into play by Sun Titan, but can't be put into play to attached to the attacking creature by Sovereigns of Lost Alara. The most important is Animate Dead enters the battlefield before the enchant creature. I really have no idea to achieve all effects and need help. Thanks everyone! :mrgreen:
It doesn't seem impossible (yet :lol:), but hard for sure. I don't have enough time at the moment, but as soon as I have time I'll give it a try.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 722 times

Re: Card Creation Request Thread

Postby Kieran » 20 May 2013, 16:57

Arcane Sanctum, Jungle Shrine, and Savage Lands have been provided my NEMESiS and have been updated on the Land Request thread. Thanks NEMESiS! I'm only awaiting Traumatize and Transcendent Master.
Kieran
 
Posts: 232
Joined: 03 Nov 2012, 01:09
Has thanked: 21 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby NEMESiS » 20 May 2013, 17:12

Kieran wrote:Arcane Sanctum, Jungle Shrine, and Savage Lands have been provided my NEMESiS and have been updated on the Land Request thread. Thanks NEMESiS! I'm only awaiting Traumatize and Transcendent Master.
You are welcome. BTW, traumatize is an official card found in Jace, Dream Puppets deck. ;)
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Card Creation Request Thread

Postby Kieran » 20 May 2013, 17:32

Yes, I was about to edit the post and state that I found it in Jace 0004 Deck. It's Transcendent Master that's got me perplexed. I'm trying to code it though. I'll provide what I come up with so others can view the code and point out my mistakes (If any).

Edit: Never mind, Vasht is always nice enough to provide it. This community has my eternal thanks!
Last edited by Kieran on 21 May 2013, 18:40, edited 1 time in total.
Kieran
 
Posts: 232
Joined: 03 Nov 2012, 01:09
Has thanked: 21 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby NEMESiS » 21 May 2013, 01:46

Do any of you know if its at all possible to add this kind of custom lands for the game?

Image

The current basic lands are just so bland. :/


Edit: Is there a way to use that card template? If it is possible then all I would have to do is go through each WAD that contains the lands (like FOREST_277779 for example) and replace them with the new cards that way every single deck uses them by default. Of course, that would mean opening about 90 or so WADs and replacing those cards.....
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Card Creation Request Thread

Postby Master Necro » 21 May 2013, 05:31

NEMESiS wrote:Do any of you know if its at all possible to add this kind of custom lands for the game?

Image

The current basic lands are just so bland. :/


Edit: Is there a way to use that card template? If it is possible then all I would have to do is go through each WAD that contains the lands (like FOREST_277779 for example) and replace them with the new cards that way every single deck uses them by default. Of course, that would mean opening about 90 or so WADs and replacing those cards.....
You can replace the images but I'm afraid that the default frames are set in stone as far as I know.

Btw I have managed to make some of the cards myself but I still really, really need these cards:

Izzet Guildmage
Nivix, Aerie of the Firemind
Novijen, Heart of Progress
One Thousand Lashes
Chorus of the Conclave

Pretty please? :)
User avatar
Master Necro
 
Posts: 259
Joined: 24 Apr 2013, 18:25
Has thanked: 83 times
Been thanked: 21 times

PreviousNext

Return to New MTG Cards and Decks (2010, 2012, 2013, 2014, 2015, Magic Duels)

Who is online

Users browsing this forum: No registered users and 9 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 9 users online :: 0 registered, 0 hidden and 9 guests (based on users active over the past 10 minutes)
Most users ever online was 7967 on 09 Sep 2025, 23:08

Users browsing this forum: No registered users and 9 guests

Login Form