69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
+
+
|
Debug.ReloadFieldBegin = function(str_1, str_2) --{
str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
str["无AI"] = str_1 & DUEL_SIMPLE_AI
str["规则表"] = {
[3] = "大师3 "
, [4] = "新大师 "
, [5] = "大师2020 "
}
|
507
508
509
510
511
512
513
514
515
516
517
518
519
520
|
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
|
+
+
+
+
+
+
|
end --}
if str["无BP"] == 0 then --{
str["开局说明"] = str["开局说明"] .. "无BP "
end --}
if str["无AI"] == 0 then --{
str["开局说明"] = str["开局说明"] .. "无AI "
end --}
if str["开局添加手卡"] then --{
str["开局说明"] = str["开局说明"]
.. "选"
.. str["开局添加手卡的数量"]
|