28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
if str_2 then --{
if str_2 == 3 then --{
str["规则"] = str["新大师"]
--}
elseif str_2 == 4 then --{
str["规则"] = str["大师2020"]
--}
elseif str_2 == 5 then --{
str["规则"] = str["大师3"]
--}
end --}
else --{
str["规则"] = "大师2020 "
end --}
fun["Debug.ReloadFieldBegin"](str_1, str_2)
end --}
|
|
|
|
|
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
if str_2 then --{
if str_2 == 3 then --{
str["规则"] = str["大师3"]
--}
elseif str_2 == 4 then --{
str["规则"] = str["新大师"]
--}
elseif str_2 == 5 then --{
str["规则"] = str["大师2020"]
--}
end --}
else --{
str["规则"] = str["大师2020"]
end --}
fun["Debug.ReloadFieldBegin"](str_1, str_2)
end --}
|