Commit 8d3f775d authored by salix5's avatar salix5

fix string id

parent bed48643
...@@ -50,15 +50,15 @@ function c37972500.teop(e,tp,eg,ep,ev,re,r,rp) ...@@ -50,15 +50,15 @@ function c37972500.teop(e,tp,eg,ep,ev,re,r,rp)
local b2=c37972500.chkcon(g,tp,1) local b2=c37972500.chkcon(g,tp,1)
local sg=Group.CreateGroup() local sg=Group.CreateGroup()
if b1 and not b2 then if b1 and not b2 then
Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,3)) Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,2))
sg=g:FilterSelect(tp,c37972500.chkfilter,1,1,nil,0) sg=g:FilterSelect(tp,c37972500.chkfilter,1,1,nil,0)
end end
if not b1 and b2 then if not b1 and b2 then
Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,3)) Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,2))
sg=g:FilterSelect(tp,c37972500.chkfilter,1,1,nil,1) sg=g:FilterSelect(tp,c37972500.chkfilter,1,1,nil,1)
end end
if b1 and b2 then if b1 and b2 then
Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,3)) Duel.Hint(HINT_SELECTMSG,tp,aux.Stringid(37972500,2))
sg=g:Select(tp,1,1,nil) sg=g:Select(tp,1,1,nil)
end end
local tc=sg:GetFirst() local tc=sg:GetFirst()
......
...@@ -24,7 +24,7 @@ function c71159974.initial_effect(c) ...@@ -24,7 +24,7 @@ function c71159974.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--destroy --destroy
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(71159974,1)) e3:SetDescription(aux.Stringid(71159974,0))
e3:SetCategory(CATEGORY_DESTROY) e3:SetCategory(CATEGORY_DESTROY)
e3:SetType(EFFECT_TYPE_IGNITION) e3:SetType(EFFECT_TYPE_IGNITION)
e3:SetCode(EVENT_FREE_CHAIN) e3:SetCode(EVENT_FREE_CHAIN)
...@@ -36,6 +36,7 @@ function c71159974.initial_effect(c) ...@@ -36,6 +36,7 @@ function c71159974.initial_effect(c)
c:RegisterEffect(e3) c:RegisterEffect(e3)
--Draw --Draw
local e4=Effect.CreateEffect(c) local e4=Effect.CreateEffect(c)
e4:SetDescription(aux.Stringid(71159974,1))
e4:SetCategory(CATEGORY_DRAW) e4:SetCategory(CATEGORY_DRAW)
e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e4:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e4:SetCode(EVENT_DESTROYED) e4:SetCode(EVENT_DESTROYED)
......
...@@ -13,6 +13,7 @@ function c97112505.initial_effect(c) ...@@ -13,6 +13,7 @@ function c97112505.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--tohand --tohand
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(97112505,1))
e2:SetCategory(CATEGORY_TOHAND) e2:SetCategory(CATEGORY_TOHAND)
e2:SetType(EFFECT_TYPE_IGNITION) e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_GRAVE) e2:SetRange(LOCATION_GRAVE)
......
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