[Help] Unlocks, Deck editing, and Braids Cabal Minion

Hi:
I'm just editing the awesome Soulstorm's deck "On a Pale Horse" ([Deck_504102_ST]) adding several black creatures, such as, Nekrataal, Blood Artist, Gatekeeper of Malakir, Disciple of Griselbrand, etc, and due the high amount of cards, I need to use the sideboard.
So I tried to edit TheFiremind's unlock deck as well, to get the sideboard unlocked, and I thought It was as easy as:
Also, when I check the decks I made on the game, they are name "[DECK_xxxx]" How can I do to show a normal name like "Ponza", "Stompy", etc?
On the other hand, I'm trying to code a Black Control Deck, (Thanks to the cards of Kevlahnota, TheFiremind,SoulStorm, Riiak Shi Nal, BlindWillow, Skullblakka and Pcastellazzi, and the only card I need is Braids, Cabal Minion but I know its implemented on DoTP 2010, so this is the code:
Thanks in advance
I'm just editing the awesome Soulstorm's deck "On a Pale Horse" ([Deck_504102_ST]) adding several black creatures, such as, Nekrataal, Blood Artist, Gatekeeper of Malakir, Disciple of Griselbrand, etc, and due the high amount of cards, I need to use the sideboard.
So I tried to edit TheFiremind's unlock deck as well, to get the sideboard unlocked, and I thought It was as easy as:
- Code: Select all
[DECK_IMNOTDEAD] <-- Name of my .xml file
12666005 <-- uid of my deck
97360 <-- Constant to Unlock
97361 <-- Constant to Unlock
Also, when I check the decks I made on the game, they are name "[DECK_xxxx]" How can I do to show a normal name like "Ponza", "Stompy", etc?
On the other hand, I'm trying to code a Black Control Deck, (Thanks to the cards of Kevlahnota, TheFiremind,SoulStorm, Riiak Shi Nal, BlindWillow, Skullblakka and Pcastellazzi, and the only card I need is Braids, Cabal Minion but I know its implemented on DoTP 2010, so this is the code:
- Code: Select all
<?xml version="1.0"?>
<MULTICARDS>
<CARD>
<!--
///////////////////////////////////////////////////////////////////////////////////
CARD INFORMATIONS
///////////////////////////////////////////////////////////////////////////////////
-->
<FILENAME text = "BRAIDS_CABAL_MINION" />
<ARTID value = "88880013" />
<TITLE text = "BRAIDS_CABAL_MINION_TITLE" />
<SUPERTYPE metaname = "Legendary" />
<TYPE metaname = "Creature" />
<SUB_TYPE metaname = "Human" />
<SUB_TYPE metaname = "Minion" />
<POWER value = "2" />
<TOUGHNESS value = "2" />
<CASTING_COST cost = "{2}{B}{B}" />
<COLOR value = "B" />
<FRAMECOLOUR name = "B" />
<EXPANSION metaname = "8888" />
<RARITY metaname = "Rare" />
<COLLECTIONMAX value = "0" />
<COLLECTORNUMBER value = "0" />
<CARDNUMBER value = "0" />
<ARTIST name = "Eric Peterson" />
<FLAVOURTEXT text = "BRAIDS_CABAL_MINION_FLAVOUR" />
<!--
///////////////////////////////////////////////////////////////////////////////////
START OF CARD ABILITIES
///////////////////////////////////////////////////////////////////////////////////
-->
<TRIGGERED_ABILITY tag="BRAIDS_CABAL_MINION_RULE_1" auto_skip="1" layer="0">
<TRIGGER value="BEGINNING_OF_STEP">
return ( MTG():GetStep() == STEP_UPKEEP and TriggerPlayer():MyTurn() ~= 0 )
</TRIGGER>
<PRE_EFFECT>
local PSacrificeLCA = TriggerPlayer()
Object():Register_Player_Set( 0, PSacrificeLCA )
Object():GetFilter():Clear()
Object():GetFilter():NotTargetted()
Object():GetFilter():SetPlayer( PSacrificeLCA )
Object():GetFilter():SetZone( ZONE_IN_PLAY )
Object():GetFilter():SetController( PSacrificeLCA )
Object():GetFilter():AddCardType( CARD_TYPE_LAND )
Object():GetFilter():AddCardType( CARD_TYPE_CREATURE )
Object():GetFilter():AddCardType( CARD_TYPE_ARTIFACT )
PSacrificeLCA:ChooseTarget( "CHOOSEALANDARTIFACTCREATURESAC" )
</PRE_EFFECT>
<EFFECT>
SacrificeTargetCard()
</EFFECT>
</TRIGGERED_ABILITY>
<!--
///////////////////////////////////////////////////////////////////////////////////
END OF CARD ABILITIES
///////////////////////////////////////////////////////////////////////////////////
-->
<SFX text="BLACKCLAW3_attack" />
</CARD>
</MULTICARDS>
Thanks in advance