48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
end
fun["是否效果卡"] = function(card)
cache_1 = Card.IsType(card, TYPE_SPELL)
cache_2 = Card.IsType(card, TYPE_TRAP)
cache_3 = Card.IsType(card, TYPE_EFFECT)
--~ cache_4 = Card.IsType(card, TYPE_PENDULUM)
if cache_1
or cache_2
or cache_3 then
--~ or cache_4 then
return true
end
return false
end
fun["开局说明"] = function()
if str["开局说明吗"] == 1 then
return
else
|
<
<
>
>
>
>
>
>
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
end
fun["是否效果卡"] = function(card)
cache_1 = Card.IsType(card, TYPE_SPELL)
cache_2 = Card.IsType(card, TYPE_TRAP)
cache_3 = Card.IsType(card, TYPE_EFFECT)
if cache_1
or cache_2
or cache_3 then
return true
end
cache_1 = Card.IsType(card, TYPE_PENDULUM)
if cache_1 then
cache_1 = Card.IsCode(card, )
end
return false
end
fun["开局说明"] = function()
if str["开局说明吗"] == 1 then
return
else
|