Re: Formal Request Thread
You forgot the resource_id="1" for the TRIGGERED_ABILITY (take another look at my Shipbreaker Kraken if you have doubts).Kieran wrote:Hythonia the Cruel - This card is stuck in a never-ending loop trying to resolve itself whenever an ability is activated or a land is tapped for mana.
You haven't posted the code, but I guess the problem is the same.Kieran wrote:Keepsake Gorgon - This card is also stuck in a never-ending loop trying to resolve itself whenever an ability is activated or a land is tapped for mana.
Of course the target isn't destroyed... you save it on register 0 and read it on register 1...Kieran wrote:Killing Glare - The target isn't destroyed but I did manage to make the 'X' counter work.
I'm not using CODE in the following snippet because I need to use colors.
Same color means they refer to the same data, so they need to match.<TARGET tag="CARD_QUERY_CHOOSE_CREATURE_TO_DESTROY" definition="0" compartment="0" count="1" />
<TARGET_DEFINITION id="0">
local filter = ClearFilter()
filter:Add( FE_TYPE, OP_IS, CARD_TYPE_CREATURE )
filter:Add( FE_POWER, OP_LESS_THAN_OR_EQUAL_TO, X )
</TARGET_DEFINITION>
<RESOLUTION_TIME_ACTION>
local target_creature = EffectDC():Get_Targets(0):Get_CardPtr(0)
if target_creature ~= nil then
target_creature:Destroy()
end
</RESOLUTION_TIME_ACTION>
<AI_SIMPLIFIED_TARGETING compartment="0" hint="HINT_ENEMY_ONLY" />
What you coded here is "you may return target creature card and target enchantment card from your graveyard to your hand", which can't trigger if you don't have both targets available. Actually, your code wouldn't work anyway because you used the same compartment and ID for both targets.Kieran wrote:Pharika's Mender - There is no option to retreive anything from the graveyard and accordingly nothing returns.
Look at Solemn Offering: it asks for target artifact or enchantment. Change CARD_TYPE_ARTIFACT to CARD_TYPE_CREATURE and you have the definition for that pairing. Don't delete your SetZone, that's correct as it is.
What you coded here is "you may return target creature enchantment card from your graveyard to your hand"... it would basically work only on the Gods and the bestow creatures.drleg3nd wrote:This is what i got for pharika mender
The filters are set to "And" by default, which means that all the conditions you add must be true. If your situation requires any one of the conditions to be true (not necessarily all of them), you need to create a sub-filter set to "Or" with those conditions (or set the whole filter to "Or", but let's forget about that unless you need a complicated filter such as Death Baron).
The problem is in the first ability, which has nothing to do with Ashiok.Kieran wrote:Sisters of Stone Death- This one is impossible to implement. Although, I was looking @ Ashiok, Nightmare Weaver for ideas.
EDIT: Before someone asks the same questions again, I'll explain it once more: "creature A blocks creature B if able" implies that if creature A can't block creature B (for example because creature B gained shadow), the effect must not hinder creature A's capability to block: creature A should be able to block normally in that case. While we can check for unblockable, flying, shadow, reach, fear and intimidate, we can't check for blocking exceptions that aren't characteristic-based, such as Hunted Ghoul.
to the suspend cost. But that was an ability: I'd advise not to do the same with 