Commit 7ccf9dab authored by whenmo's avatar whenmo Committed by GitHub

add DressUp

parent 44fd3294
......@@ -280,6 +280,16 @@ function VgD.XOverDress(c,f)
end
---舞装加身-「code」(在游戏中,也当做与指定的卡同名的卡使用。)
function VgD.DressUp(c,code)
local e=Effect.CreateEffect(c)
e:SetType(EFFECT_TYPE_SINGLE)
e:SetCode(EFFECT_ADD_CODE)
e:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e:SetValue(code)
c:RegisterEffect(e)
end
--战斗阶段
function VgD.MonsterBattle(c)
--攻击转守备
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment