12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
local cache_9
_G.fun = {}
str["二解弹窗"] = "QB:「你居然二解了,请加群告诉我怎么二解。」"
str["原解弹窗"] = "残局群181175613"
fun["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
Debug.ReloadFieldBegin = function(str_1, str_2) --{
str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
if str_2 then --{
if str_2 == 3 then --{
str["规则"] = "大师3 "
--}
elseif str_2 == 4 then --{
str["规则"] = "新大师 "
--}
elseif str_2 == 5 then --{
str["规则"] = "大师2020 "
--}
end --}
else --{
|
>
>
>
>
|
|
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|
local cache_9
_G.fun = {}
str["二解弹窗"] = "QB:「你居然二解了,请加群告诉我怎么二解。」"
str["原解弹窗"] = "残局群181175613"
str["大师3"] = "大师3 "
str["新大师"] = "新大师 "
str["大师2020"] = "大师2020 "
fun["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
Debug.ReloadFieldBegin = function(str_1, str_2) --{
str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
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 --{
|