Board index
Programs with AI or Rules Enforcement
Magic: The Gathering - Duels of the Planeswalkers
New MTG Cards and Decks
2013
Programs with AI or Rules Enforcement
Magic: The Gathering - Duels of the Planeswalkers
New MTG Cards and Decks
2013
Anvil of Bogardan [request]
Moderators: Xander9009, CCGHQ Admins
Anvil of Bogardan [request]
by skullblakka » 07 Oct 2012, 13:24
hi moders
i'm trying to begin to make some decks and i need this last card that isn't coded by any moders (as far as i know)
can someone code this card? Anvil of Bogardan
thx
i'm trying to begin to make some decks and i need this last card that isn't coded by any moders (as far as i know)
can someone code this card? Anvil of Bogardan
thx
apology my so bad english speaking 
-

skullblakka - Posts: 71
- Joined: 31 Jul 2012, 20:16
- Has thanked: 16 times
- Been thanked: 17 times
Re: Anvil of Bogardan [request]
by thefiremind » 07 Oct 2012, 13:57
It's basically a Spellbook (for all players) plus Howling Mine plus the discard. It shouldn't be difficult. I'll give it a try later if nobody gets it done before.
EDIT: Here it is. I didn't test it, but it should work.
EDIT: Here it is. I didn't test it, but it should work.
- Attachments
-
ANVIL_OF_BOGARDAN_3589.zip- (104.7 KiB) Downloaded 217 times
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-

thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 719 times
Re: Anvil of Bogardan [request]
by skullblakka » 07 Oct 2012, 14:43
i found the code but i don't know how to put the picture of the card on it
DOTP12 card i hope i saved you some time
is it possible to put the picture on it?
EDIT : we both posted
i did test it it work i have to find a way to put the picture now <- noob
- Code: Select all
<?xml version='1.0'?>
<CARD_V2>
<FILENAME text="ANVIL_OF_BOGARDAN_3589" />
<CARDNAME text="ANVIL_OF_BOGARDAN" />
<TITLE>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Anvil Of Bogardan]]></LOCALISED_TEXT>
</TITLE>
<MULTIVERSEID value="3589" />
<ARTID value="3589" />
<FRAMECOLOUR name="A" />
<COLOUR value="A" />
<ARTIST name="Roger Raupp" />
<CASTING_COST cost="{2}" />
<TYPE metaname="Artifact" order_de-DE="0" order_es-ES="0" order_fr-FR="0" order_it-IT="0" order_jp-JA="0" />
<EXPANSION value="DPE" />
<RARITY metaname="R" />
<STATIC_ABILITY influencing_zone="player">
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Players have no maximum hand size.]]></LOCALISED_TEXT>
<FILTER>
return FilteredPlayer() ~= nil
</FILTER>
<CONTINUOUS_ACTION>
FilteredPlayer():GetCurrentCharacteristics():Bool_Set( PLAYER_CHARACTERISTIC_NO_HAND_LIMIT, 1 )
</CONTINUOUS_ACTION>
</STATIC_ABILITY>
<TRIGGERED_ABILITY auto_skip="1" active_zone="in_play">
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[At the beginning of each player’s draw step, that player draws an additional card, then discards a card.]]></LOCALISED_TEXT>
<TRIGGER value="BEGINNING_OF_STEP">
return MTG():GetStep() == STEP_DRAW and TriggerPlayer():MyTurn() ~= 0 and Object():Tapped() == 0
</TRIGGER>
<RESOLUTION_TIME_ACTION>
TriggerPlayer():DrawCard()
</RESOLUTION_TIME_ACTION>
<AI_BASE_SCORE score="400" zone="in_play" />
</TRIGGERED_ABILITY>
<TRIGGERED_ABILITY auto_skip="1" active_zone="in_play">
<TRIGGER value="END_OF_STEP">
return MTG():GetStep() == STEP_DRAW and TriggerPlayer():MyTurn() ~= 0 and Object():Tapped() == 0
</TRIGGER>
<RESOLUTION_TIME_ACTION>
TriggerPlayer():DiscardNCards(1, "CARD_QUERY_CHOOSE_CARD_TO_DISCARD")
</RESOLUTION_TIME_ACTION>
</TRIGGERED_ABILITY>
</CARD_V2>
DOTP12 card i hope i saved you some time
is it possible to put the picture on it?
EDIT : we both posted
i did test it it work i have to find a way to put the picture now <- noob
Last edited by skullblakka on 12 Oct 2012, 15:21, edited 1 time in total.
apology my so bad english speaking 
-

skullblakka - Posts: 71
- Joined: 31 Jul 2012, 20:16
- Has thanked: 16 times
- Been thanked: 17 times
Re: Anvil of Bogardan [request]
by thefiremind » 07 Oct 2012, 14:48
Put the card in DATA_ALL_PLATFORM\CARDS, and the picture in DATA_ALL_PLATFORMS\ART_ASSETS\ILLUSTRATIONS, that's all. You say you are making decks so I suppose you already have your own WAD file... if not, I think you could start from here:
viewtopic.php?f=65&t=8290
viewtopic.php?f=65&t=8290
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-

thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 719 times
Re: Anvil of Bogardan [request]
by skullblakka » 07 Oct 2012, 15:09
yes but i took a wad from a deck i don't like and i didn't know how make my own
ill read your guide thx for all!
ill post my deck when completed and working well
ill read your guide thx for all!
ill post my deck when completed and working well
apology my so bad english speaking 
-

skullblakka - Posts: 71
- Joined: 31 Jul 2012, 20:16
- Has thanked: 16 times
- Been thanked: 17 times
Re: Anvil of Bogardan [request]
by skullblakka » 09 Oct 2012, 16:42
ok well i made two new decks but when i change the decks ID i have an error message at the launch of the game like this one
"your deck has been reset to zero in the original configuration due to the indisponibility of the necessary contents"
maybe that's a bad translation from my french but i think you know what i am talking about.
what must i do to don't have it anymore?
"your deck has been reset to zero in the original configuration due to the indisponibility of the necessary contents"
maybe that's a bad translation from my french but i think you know what i am talking about.
what must i do to don't have it anymore?
apology my so bad english speaking 
-

skullblakka - Posts: 71
- Joined: 31 Jul 2012, 20:16
- Has thanked: 16 times
- Been thanked: 17 times
Re: Anvil of Bogardan [request]
by RiiakShiNal » 09 Oct 2012, 18:33
That error appears when one of several conditions is true:
There may also be other conditions that can cause that message, but generally it means that the game can't read or access something which necessitates resetting the deck configuration for one or more decks.
- When the content of a saved deck has changed resulting in one or more cards that were previously available to no longer be available.
- Card that was working previously now has an XML error that causes it to not load (can be common when building cards).
- Cards removed from deck instead of being replaced (can be common when building decks).
- Unlocks are no longer available (for example changed deck id, but forgot to change the deck id in the unlock xml).
- Deck ID is outside of valid range. Numbers that are too large can cause that, we believe that the deck id uses a 32-bit integer (though we don't know if it is signed or not), so safe numbers are those below about 2.147 billion.
- Deck that was active is no longer available (can happen if testing a deck then changed the id).
There may also be other conditions that can cause that message, but generally it means that the game can't read or access something which necessitates resetting the deck configuration for one or more decks.
Just getting started: Xander9009's DotP 2014 Community Wad
Need a deck builder: DotP 2014 Deck Builder
Problems Modding: DotP 2014 Frequent Modding Mistakes
Need a deck builder: DotP 2014 Deck Builder
Problems Modding: DotP 2014 Frequent Modding Mistakes
- RiiakShiNal
- Programmer
- Posts: 2160
- Joined: 16 May 2011, 21:37
- Has thanked: 74 times
- Been thanked: 483 times
Re: Anvil of Bogardan [request]
by skullblakka » 09 Oct 2012, 19:24
found!
my id was 1 figure too large
thx dude.
i'll post some decks and an unlock file for all decks from all MOTG13 mods when they will be ready
my id was 1 figure too large
thx dude.
i'll post some decks and an unlock file for all decks from all MOTG13 mods when they will be ready
apology my so bad english speaking 
-

skullblakka - Posts: 71
- Joined: 31 Jul 2012, 20:16
- Has thanked: 16 times
- Been thanked: 17 times
8 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 2 guests
