41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
Debug.ShowHint("残局群181175613")
return
end
effect_1:SetOperation(cache_1)
Duel.RegisterEffect(effect_1
, 0)
fun["开局说明"]()
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)
|
<
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
Debug.ShowHint("残局群181175613")
return
end
effect_1:SetOperation(cache_1)
Duel.RegisterEffect(effect_1
, 0)
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)
|
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
if str["开局添加手卡"] then
str["开局说明"] = str["开局说明"] .. "选"
str["开局说明"] = str["开局说明"] .. str["开局添加手卡"]
str["开局说明"] = str["开局说明"] .. "卡 "
end
Debug.ShowHint(str["开局说明"])
end
fun["开局添加手卡"] = function(str_1)
str["开局添加手卡"] = str_1
effect_1 = Effect.GlobalEffect()
effect_1:SetType(EFFECT_TYPE_FIELD
+ EFFECT_TYPE_CONTINUOUS)
|
>
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
if str["开局添加手卡"] then
str["开局说明"] = str["开局说明"] .. "选"
str["开局说明"] = str["开局说明"] .. str["开局添加手卡"]
str["开局说明"] = str["开局说明"] .. "卡 "
end
Debug.ShowHint(str["开局说明"])
fun["通关邀请"]()
end
fun["开局添加手卡"] = function(str_1)
str["开局添加手卡"] = str_1
effect_1 = Effect.GlobalEffect()
effect_1:SetType(EFFECT_TYPE_FIELD
+ EFFECT_TYPE_CONTINUOUS)
|
160
161
162
163
164
165
166
167
168
|
Duel.SendtoHand(str["玩家选定的卡"]
, nil
, REASON_RULE)
end
effect_1:SetOperation(cache_1)
Duel.RegisterEffect(effect_1
, 0)
fun["通关邀请"]()
end
|
|
|
160
161
162
163
164
165
166
167
168
|
Duel.SendtoHand(str["玩家选定的卡"]
, nil
, REASON_RULE)
end
effect_1:SetOperation(cache_1)
Duel.RegisterEffect(effect_1
, 0)
fun["开局说明"]()
end
|