游戏王残局简化版

Diff
Login

Diff

Differences From Artifact [962b4029f7]:

To Artifact [01738dfea6]:


1
2
3
4
5
6
7
8
9
10

11
12
13
14
15
16
17
local str = {}
local fun = {}

local cache_1
local cache_2
local cache_3

str["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin

Debug.ReloadFieldBegin = function(str_1, str_2)


  if str_2 then
    if str_2 == 3 then
    str["规则"] = "大师3"
    elseif str_2 == 4 then
      end
    end










>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local str = {}
local fun = {}

local cache_1
local cache_2
local cache_3

str["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin

Debug.ReloadFieldBegin = function(str_1, str_2)
  str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE

  if str_2 then
    if str_2 == 3 then
    str["规则"] = "大师3"
    elseif str_2 == 4 then
      end
    end
76
77
78
79
80
81
82










83
84
85
86
  str["开局说明"] = "效果卡:"
  str["开局说明"] = str["开局说明"] .. str["这个残局的效果卡数量"]

  str["开局说明"] = str["开局说明"] .. " "

  str["开局说明"] = str["开局说明"] .. "规则:"
  str["开局说明"] = str["开局说明"] .. str["规则"]











  Debug.ShowHint(str["开局说明"])
  end








>
>
>
>
>
>
>
>
>
>




77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  str["开局说明"] = "效果卡:"
  str["开局说明"] = str["开局说明"] .. str["这个残局的效果卡数量"]

  str["开局说明"] = str["开局说明"] .. " "

  str["开局说明"] = str["开局说明"] .. "规则:"
  str["开局说明"] = str["开局说明"] .. str["规则"]

  str["开局说明"] = str["开局说明"] .. "\n"

  str["开局说明"] = str["开局说明"] .. "洗牌:"

  if str["不洗牌"] then
    str["开局说明"] = str["开局说明"] .. "伪洗牌"
  else
    str["开局说明"] = str["开局说明"] .. "真洗牌"
    end

  Debug.ShowHint(str["开局说明"])
  end