Commit 42121edb authored by Tachibana's avatar Tachibana

ndyd

parent 5f492c4c
No preview for this file type
......@@ -93,6 +93,7 @@
09300420 1 --替身使者-猜拳小子大柳贤
09300513 1 --后被称为龟的替身使者
09300699 1 --特殊技能暂抽取
09310030 1 --扭曲植物 形单调味树
09330015 0 --冲锋陷阵!
09330016 0 --陷阵营的战前仪式
#101
......@@ -582,6 +583,7 @@
#230
23000001 1 --传令旗手
23000070 0 --血族禁忌之书
23000100 0 --血族 地狱挽歌 夜莱
23000305 1 --白马将军·公孙瓒
23004005 0 --奇妙冒险团 礼物天使
23004020 0 --奇妙冒险团 多彩调配师
......@@ -677,6 +679,7 @@
#328
32828002 1 --风卷浪
#333
33300157 1 --源世导引
33310006 1 --泰拉异变·雨天
33310007 2 --泰拉瑞亚·世界
33310016 0 --泰拉勇者 弓箭手
......
......@@ -51,8 +51,23 @@ function cm.srop(e,tp,eg,ep,ev,re,r,rp)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
local tc=g:GetFirst()
if tc:IsLocation(LOCATION_HAND) then
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_FIELD)
e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET)
e1:SetCode(EFFECT_CANNOT_ACTIVATE)
e1:SetTargetRange(1,0)
e1:SetValue(cm.aclimit)
e1:SetLabel(tc:GetCode())
e1:SetReset(RESET_PHASE+PHASE_END)
Duel.RegisterEffect(e1,tp)
end
end
end
function cm.aclimit(e,re,tp)
return re:GetHandler():IsCode(e:GetLabel())
end
function cm.discon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if ep==tp or c:IsStatus(STATUS_BATTLE_DESTROYED) then return false end
......
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