It is currently 10 Aug 2025, 19:52
   
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 maginater5000 » 01 Aug 2012, 05:38

ok thx you all guys for your answers^^
i thought also that it will not work, but i wanted to know your opinion.
maybe it will work in dotp2014, if it will be released :-D
User avatar
maginater5000
 
Posts: 55
Joined: 18 Sep 2011, 09:29
Has thanked: 4 times
Been thanked: 9 times

Re: Card Creation Request Thread

Postby Deus Leonis » 10 Aug 2012, 20:39

too bad about Tolarian Academy being too complicated to port from DoTP 2012.
its probably my favorite mana card of all since im partial to artifact decks. :)
User avatar
Deus Leonis
 
Posts: 25
Joined: 27 Jun 2011, 10:37
Location: Philippines
Has thanked: 13 times
Been thanked: 0 time

Re: Card Creation Request Thread

Postby RiiakShiNal » 10 Aug 2012, 20:56

Deus Leonis wrote:too bad about Tolarian Academy being too complicated to port from DoTP 2012.
its probably my favorite mana card of all since im partial to artifact decks. :)
Actually, with nabeshin's mana tokens (This thread), Tolarian Academy could be made, but there will still be some issues/limitations (landfall abilities triggering as tokens come into play, etc....).
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Card Creation Request Thread

Postby sadlyblue » 11 Aug 2012, 18:01

RiiakShiNal wrote:Actually, with nabeshin's mana tokens (This thread), Tolarian Academy could be made, but there will still be some issues/limitations (landfall abilities triggering as tokens come into play, etc....).
The main problem with the mana token is with something like Doubling Season, it doubles the mana you get.
Even if we code like Cloudpost, without the mana tokens, the remaning mana gets lost after the first tap. I believe that if mana tokens could be improved, so that it doesn't interact with Doubling Season and such but interact with other cards that filter mana abilities there would be no problem using them.

This problem, along with the priority the game has for tapping creatures and colorless mana first, leaves me with a question:
Is it possible to code a token to act as a mana pool? Any ideas?
sadlyblue
 
Posts: 175
Joined: 06 Feb 2012, 13:18
Has thanked: 18 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby thefiremind » 11 Aug 2012, 18:54

sadlyblue wrote:The main problem with the mana token is with something like Doubling Season, it doubles the mana you get.
This prevented me from coding a couple of cards using invisible tokens... which isn't bad because I struggled to find another way, but it made me think about it. The only idea that I have is to choose a register in the DuelDataChest (if we have enough freedom in it, I have never saved something personal there) or in the affected player's data chest, so that we can set it to a certain value to "shut down" Doubling Season and Parallel Lives. Then we change the code of those 2 cards so that the trigger doesn't happen when that register is set to that value. In pseudo-code:

Card that generates the mana token:
<set register X to value Y>
<put the token on the battlefield>
<clear register X>

Doubling Season and Parallel Lives:
<if register X isn't set to value Y, then trigger>
< 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 sadlyblue » 12 Aug 2012, 08:28

That would work and solve the problem for multiple color sources.
sadlyblue
 
Posts: 175
Joined: 06 Feb 2012, 13:18
Has thanked: 18 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby delijoe » 14 Aug 2012, 04:58

I'm looking for a couple of cards I saw in 2012 custom DLCs but not in 2013 yet...

Could someone possibly code Emeria, the Sky Ruin and Student of Warfare?
delijoe
 
Posts: 2
Joined: 06 Aug 2012, 05:17
Has thanked: 0 time
Been thanked: 0 time

Re: Card Creation Request Thread

Postby Deus Leonis » 15 Aug 2012, 04:30

can someone port the card Akroma's Memorial to this game from 2012 pls?
User avatar
Deus Leonis
 
Posts: 25
Joined: 27 Jun 2011, 10:37
Location: Philippines
Has thanked: 13 times
Been thanked: 0 time

Re: Card Creation Request Thread

Postby thefiremind » 15 Aug 2012, 08:45

Note that Emeria, the Sky Ruin will have the wrong frame (colorless instead of white), but there's nothing I can do about it: DotP2013 decides the frame according to the card's color and there's no way to override the decision.

EMERIA_THE_SKY_RUIN_190414.zip
(106.49 KiB) Downloaded 462 times
AKROMAS_MEMORIAL_279712.zip
(104.37 KiB) Downloaded 457 times

For Student of Warfare, I'm not coding it yet because I still have to decide my standards for level-up creatures. When I make a level-up deck, Student of Warfare will be there.
< 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 sadlyblue » 15 Aug 2012, 12:09

Student of Warfare was already coded. I believe is in the Emashzed's DLC.
sadlyblue
 
Posts: 175
Joined: 06 Feb 2012, 13:18
Has thanked: 18 times
Been thanked: 16 times

Re: Card Creation Request Thread

Postby RiiakShiNal » 15 Aug 2012, 14:12

thefiremind wrote:Note that Emeria, the Sky Ruin will have the wrong frame (colorless instead of white), but there's nothing I can do about it: DotP2013 decides the frame according to the card's color and there's no way to override the decision.
Did you try adding:
Code: Select all
   <COLOUR value="W" />
to it after any CASTING_COST tag (even if blank)?
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Card Creation Request Thread

Postby thefiremind » 15 Aug 2012, 14:14

RiiakShiNal wrote:
thefiremind wrote:Note that Emeria, the Sky Ruin will have the wrong frame (colorless instead of white), but there's nothing I can do about it: DotP2013 decides the frame according to the card's color and there's no way to override the decision.
Did you try adding:
Code: Select all
   <COLOUR value="W" />
to it after any CASTING_COST tag (even if blank)?
This would make the land white, and effects that care about white permanents would consider it, too.
< 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 RiiakShiNal » 15 Aug 2012, 15:06

thefiremind wrote:This would make the land white, and effects that care about white permanents would consider it, too.
Oops, sorry I just caught the comment about the frame color and forgot to look at the card to see if it was actually white. That will teach me not to just skim posts and make assumptions to save time.
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Card Creation Request Thread

Postby Cerskel » 23 Aug 2012, 14:08

Omnath, Locus of Mana would be amazing :o
Cerskel
 
Posts: 3
Joined: 23 Aug 2012, 06:19
Has thanked: 0 time
Been thanked: 0 time

Re: Card Creation Request Thread

Postby sadlyblue » 23 Aug 2012, 14:37

Cerskel wrote:Omnath, Locus of Mana would be amazing :o
Yes, but with no mana pool it's nearly impossible to code.
sadlyblue
 
Posts: 175
Joined: 06 Feb 2012, 13:18
Has thanked: 18 times
Been thanked: 16 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 2 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 2 users online :: 0 registered, 0 hidden and 2 guests (based on users active over the past 10 minutes)
Most users ever online was 7303 on 15 Jul 2025, 20:46

Users browsing this forum: No registered users and 2 guests

Login Form