Hunting Wilds isn't easy... I was about to add it to my land-animating deck, but then I thought it wasn't worth the effort.

I can try to come up with something, but not right now.
Master Necro wrote:Ou, I thought that there had to be something except the trigger or should it be a continuous action?
Not necessarily, there are triggers without actions.
Look at the picture at the end of
this post. It may help you fixing by yourself.
Master Necro wrote:And this is more of a predicament than an error I've played over 10 matches and I can't test if my
Dread Slaver works as he should because I can't seem to get the situation right:
How can it possibly work if you are using EffectDC():Get_CardPtr(0) without ever putting a card into it? Ask yourself the question: who needs to become a black Zombie? TriggerObject. So apply the characteristics to that. It's not enough, though: as I said several times, you can't access a card pointer after the card changes zone, you need to protect it. The undying mechanic would have been a good example of that.
- Code: Select all
<RESOLUTION_TIME_ACTION>
if TriggerObject() ~= nil then
EffectDC():Protect_CardPtr( COMPARTMENT_ID_PARAM_TRIGGER_OBJECT )
TriggerObject():PutOntoBattlefield( EffectController() )
end
</RESOLUTION_TIME_ACTION>
<CONTINUOUS_ACTION layer="5">
local target = TriggerObject()
if target ~= nil then
local colour = target:GetColour()
colour:Add( COLOUR_BLACK )
end
</CONTINUOUS_ACTION>
<CONTINUOUS_ACTION layer="4">
local target = TriggerObject()
if target ~= nil then
local characteristics = target:GetCurrentCharacteristics()
local subtype = characteristics:SubType_GetWritable()
subtype:Add( CREATURE_TYPE_ZOMBIE)
end
</CONTINUOUS_ACTION>
<DURATION>
return TriggerObject() == nil
</DURATION>
Master Necro wrote:Ghoulflesh does not make the enchanted creature a black Zombie:
Same thing, you are using EffectDC():Get_CardPtr(0). Why did you correctly declare the parent as EffectSource():GetParent() for -1/-1 but you didn't for the other characteristics? I would expect you to understand what you are copying and pasting by now... or am I overestimating you?
