184
185
186
187
188
189
190
191
192
193
194
195
196
197
|
effect_1:SetCode(EFFECT_USE_EXTRA_MZONE)
effect_1:SetValue(str_1)
Duel.RegisterEffect(effect_1,0)
end
fun["印卡"] = function(str_1, str_2, str_3)
str["印卡"] = 1
str["当前印卡数"] = 1
effect_1 = Effect.CreateEffect(str_1)
effect_1:SetType(EFFECT_TYPE_IGNITION)
|
>
>
>
>
>
|
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
effect_1:SetCode(EFFECT_USE_EXTRA_MZONE)
effect_1:SetValue(str_1)
Duel.RegisterEffect(effect_1,0)
end
fun["印卡"] = function(str_1, str_2, str_3)
str["印卡"] = 1
if str_3 then
else
str_3 = str_2
end
str["当前印卡数"] = 1
effect_1 = Effect.CreateEffect(str_1)
effect_1:SetType(EFFECT_TYPE_IGNITION)
|