Page 3 of 5
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
02 Nov 2013, 17:25
by NEMESiS
Elven Riders can be blocked by non-wall creatures without flying.
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
02 Nov 2013, 18:25
by GrovyleXShinyCelebi
Fixed!
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
06 Nov 2013, 00:19
by MaDHaTTeR
Firstly, thank you for this great pack! Now on to the bug itself. If you play the March to War deck, and use the
Conqueror's Pledge, the Kor Soldiers the card spawns have distorted art. The normal Soldier tokens for the deck function just fine, as do these Kor soldiers, they just have a garbled noise image for their card art.
Thanks again!
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
06 Nov 2013, 00:47
by GrovyleXShinyCelebi
Alright, it should be fixed.
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
06 Nov 2013, 01:28
by MaDHaTTeR
Thanks again, it seems the art is not in the correct orientation however. Here is a pic.
http(colon)//i(dot)imgur(dot)com/97iOyxJ(dot)jpg
Since I'm a new user it won't let me post links, so I'm sorry for the weird looking url xD
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
08 Nov 2013, 13:29
by korson
Hi there. Thank you for this pack. I think i found a bug.
My Suntail hawk was enchanted with snake umbra and get +2+2 instead of +1+1
Re: 2012 decks imported into 2014 *ALL 21 DECKS COMPLETED*

Posted:
08 Nov 2013, 22:47
by GrovyleXShinyCelebi
Fixed your issue, and also applied another fix to the GXSC_CARDS and DP1 wads to correct the orientation of the Kor token.
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
15 Nov 2013, 00:16
by GrovyleXShinyCelebi
Made one quick patch. Also, check out my 2013 imports! Tell me if there's any bugs in either!
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
18 Nov 2013, 15:19
by Real
I found a bug.
Thunder Dragon (THUNDER_DRAGON_99243479)does not trigger the ETB ability.
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
18 Nov 2013, 23:14
by GrovyleXShinyCelebi
Fixed! Also fixed the one in Duels 2013!
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
26 Nov 2013, 23:54
by GrovyleXShinyCelebi
Applied a short fix to the cleanup text for
Alaborn Cavalier. Tell me if there's any more bugs.
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
05 Dec 2013, 23:06
by GrovyleXShinyCelebi
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
10 Dec 2013, 12:42
by korson
Hi there. I think i found a bug.
When i played forest guardian2012 against Jace2014 i used my primal bellow on his phantom beast. Beast got sacrificed, but my lumberknot dosnt get a counter. It dosn't get a counter when phantasmal bear died in combat, but i got counter when weatherseed treefolk died in combat.
Thank you.
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
10 Dec 2013, 19:42
by wtb300
Lumberknot, I edited this
- Code: Select all
<TRIGGER value="ZONECHANGE_BEGIN" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_IN_PLAY">
And changed it to this
- Code: Select all
<TRIGGER value="ZONECHANGE_BEGIN" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_BATTLEFIELD">
Then I tested under the same specified conditions with no issue the working card is below. i used the same art id value so you could just copy and paset the new code into the same .xml
- Code: Select all
<?xml version='1.0'?>
<CARD_V2>
<FILENAME text="LUMBERKNOT_99271235" />
<CARDNAME text="LUMBERKNOT" />
<TITLE>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Lumberknot]]></LOCALISED_TEXT>
</TITLE>
<MULTIVERSEID value="99271235" />
<ARTID value="623274" />
<ARTIST name="Jason A. Engle" />
<CASTING_COST cost="{2}{G}{G}" />
<FLAVOURTEXT>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Animated by geists fused in its oak, it hungers for more life to add to its core.]]></LOCALISED_TEXT>
</FLAVOURTEXT>
<TYPE metaname="Creature" />
<SUB_TYPE metaname="Treefolk" />
<EXPANSION value="DPG" />
<RARITY metaname="U" />
<POWER value="1" />
<TOUGHNESS value="1" />
<STATIC_ABILITY>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Hexproof]]></LOCALISED_TEXT>
<INTRINSIC characteristic="CHARACTERISTIC_HEXPROOF" />
</STATIC_ABILITY>
<TRIGGERED_ABILITY>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Whenever a creature dies, put a +1/+1 counter on Lumberknot.]]></LOCALISED_TEXT>
<TRIGGER value="ZONECHANGE_BEGIN" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_BATTLEFIELD">
return TriggerObject():GetCardType():Test( CARD_TYPE_CREATURE )
</TRIGGER>
<RESOLUTION_TIME_ACTION>
if EffectSource() ~= nil then
EffectSource():AddCounters( MTG():PlusOnePlusOneCounters(), 1 )
end
</RESOLUTION_TIME_ACTION>
</TRIGGERED_ABILITY>
<HELP title="MORE_INFO_BADGE_TITLE_21" body="MORE_INFO_BADGE_BODY_21" zone="ZONE_ANY" />
<SFX text="COMBAT_BLUNT_LARGE_ATTACK" power_boundary_min="4" power_boundary_max="-1" />
<SFX text="COMBAT_BLUNT_SMALL_ATTACK" power_boundary_min="1" power_boundary_max="3" />
<AI_BASE_SCORE score="600" zone="ZONE_BATTLEFIELD" />
</CARD_V2>
Re: Duels 2012 decks imported into 2014 *ALL 21 DECKS COMPLE

Posted:
11 Dec 2013, 10:07
by korson
Dunno about this changes, not a code guy myself, but i think that lumberknot getting counters from death of my creatures and not getting them form death of opponent creatures. Dont think that changing zone should fix this but i could mistake coz i have no idea what i'm talking about

Also 1 small thing. When i trigger
Heartwood Storyteller effect with my spell, the game asks me if i want to draw a card. And if i say no, then opponent dont get it. It's about fair play i think, but still.