游戏王残局简化版

Check-in [29959a9986]
Login

Check-in [29959a9986]

Overview
Comment:0.0.482
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 29959a998600664dafa7df98a0fef11d2b3b6d699ba9c779694d36cb6f7d2908
User & Date: 顽雨沉风 on 2023-06-30 04:46:14
Other Links: manifest | tags
Context
2023-06-30
04:47
0.0.483 check-in: ab8e787d19 user: 顽雨沉风 tags: trunk
04:46
0.0.482 check-in: 29959a9986 user: 顽雨沉风 tags: trunk
04:41
0.0.481 check-in: 77fef710b5 user: 顽雨沉风 tags: trunk
Changes

Modified script/c0.lua from [962b4029f7] to [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