Commit 7aedb7c6 authored by mercury233's avatar mercury233 Committed by DailyShana

fix 巨竜の守護騎士 (#469)

parent 40d7219c
...@@ -37,7 +37,7 @@ function c33460840.eqop(e,tp,eg,ep,ev,re,r,rp) ...@@ -37,7 +37,7 @@ function c33460840.eqop(e,tp,eg,ep,ev,re,r,rp)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_EQUIP) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_EQUIP)
local g=Duel.SelectMatchingCard(tp,c33460840.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,1,nil,c) local g=Duel.SelectMatchingCard(tp,c33460840.filter,tp,LOCATION_HAND+LOCATION_GRAVE,0,1,1,nil,c)
local tc=g:GetFirst() local tc=g:GetFirst()
if not Duel.Equip(tp,tc,c,true) then return end if not (tc and Duel.Equip(tp,tc,c,true)) then return end
local atk=tc:GetTextAttack()/2 local atk=tc:GetTextAttack()/2
local def=tc:GetTextDefense()/2 local def=tc:GetTextDefense()/2
if atk<0 then atk=0 end if atk<0 then atk=0 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