Re: Card Creation Request Thread
Hey guys, this is more of a request for help than a card request, but a friend requested the card so it kind of fits here.
A friend asked me to make Heartless Summoning, so I gave it a whirl, but the card appears to do nothing to the casting costs of my spells but it does give my creatures -1/-1 like it should. (probably because I yanked the code from Glorious Anthem
)
Here's the code:
A friend asked me to make Heartless Summoning, so I gave it a whirl, but the card appears to do nothing to the casting costs of my spells but it does give my creatures -1/-1 like it should. (probably because I yanked the code from Glorious Anthem
Here's the code:
- Code: Select all
<?xml version='1.0'?>
<CARD_V2>
<FILENAME text="HEARTLESS_SUMMONING_10305003" />
<CARDNAME text="HEARTLESS_SUMMONING" />
<TITLE>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Heartless Summoning]]></LOCALISED_TEXT>
</TITLE>
<MULTIVERSEID value="503019998" />
<ARTID value="10305003" />
<ARTIST name="Anthony Palumbo" />
<CASTING_COST cost="{1}{B}" />
<FLAVOURTEXT>
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA["They won't be winning any beauty pageants, but they'll do the trick." - Enslow, Ghoulcaller of Nephalia]]></LOCALISED_TEXT>
</FLAVOURTEXT>
<TYPE metaname="Enchantment" />
<EXPANSION value="DPG" />
<RARITY metaname="R" />
<STATIC_ABILITY filter_zone="ZONE_IN_PLAY">
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Creature spells you cast cost {2} less to cast. Creatures you control get -1/-1.]]></LOCALISED_TEXT>
<FILTER>
return (FilteredCard() ~= nil and
FilteredCard():GetCardType():Test( CARD_TYPE_CREATURE ) ~= 0 and
FilteredCard():GetZone() == ZONE_IN_PLAY and
FilteredCard():GetPlayer() == Object():GetPlayer())
</FILTER>
<CONTINUOUS_ACTION layer="7C">
if FilteredCard() ~= nil then
local characteristics = FilteredCard():GetCurrentCharacteristics()
if characteristics ~= nil then
characteristics:Power_Add( -1 )
characteristics:Toughness_Add( -1 )
end
end
</CONTINUOUS_ACTION>
<FILTER>
return (FilteredCard() ~= nil and
FilteredCard():GetPlayer() == Object():GetPlayer() and
(FilteredCard():GetCardType():Test( CARD_TYPE_CREATURE ) ~= 0 ))
</FILTER>
<CONTINUOUS_ACTION layer="8">
if FilteredCard() ~= nil then
FilteredCard():DecreaseCost( 2 )
end
</CONTINUOUS_ACTION>
</STATIC_ABILITY>
<AI_BASE_SCORE score="1001" zone="ZONE_IN_PLAY" />
</CARD_V2>
, and the second ability gives creatures you control -1/-1.