Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions utility.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1982,3 +1982,37 @@ function Auxiliary.MonsterEffectPropertyFilter(flag)
return e:IsHasProperty(flag) and not e:IsHasRange(LOCATION_PZONE)
end
end

-- patch for Card.SetSPSummonOnce for hints
function Auxiliary.SPSummonOnceHintCondition(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsGlobalFlag(GLOBALFLAG_SPSUMMON_ONCE)
end
function Auxiliary.SPSummonOnceHintTarget(e,c)
return c:IsType(TYPE_MONSTER) and c:CheckSPSummonOnce(c:GetControler())
end
function Auxiliary.SPSummonOnceHintInit(c)
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE+EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_CLIENT_HINT)
e1:SetDescription(226)

local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_GRANT)
e2:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE+EFFECT_FLAG_SET_AVAILABLE+EFFECT_FLAG_IGNORE_RANGE)
e2:SetCondition(Auxiliary.SPSummonOnceHintCondition)
local range=0xff-LOCATION_MZONE
e2:SetTargetRange(range,range)
e2:SetTarget(Auxiliary.SPSummonOnceHintTarget)
e2:SetLabelObject(e1)
Duel.RegisterEffect(e2,0)
end

Auxiliary.SPSummonOnceHintInited=false
Auxiliary.original_SetSPSummonOnce=Card.SetSPSummonOnce
function Card.SetSPSummonOnce(c,...)
if Auxiliary.SPSummonOnceHintInited then
Comment thread
purerosefallen marked this conversation as resolved.
Outdated
Auxiliary.SPSummonOnceHintInited=true
Auxiliary.SPSummonOnceHintInit(c)
end
return Auxiliary.original_SetSPSummonOnce(c,...)
end