Overview
| Comment: | 0 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9aebdead2a4f0298c49356b6c8d57c8a |
| User & Date: | 顽雨沉风 on 2024-06-27 08:15:06.065 |
| Other Links: | manifest | tags |
Context
|
2024-06-27
| ||
| 08:16 | 0 check-in: 72cc83c4a1 user: 顽雨沉风 tags: trunk | |
| 08:15 | 0 check-in: 9aebdead2a user: 顽雨沉风 tags: trunk | |
| 08:13 | 0 check-in: b0c9c72494 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [ba050fc603]
to [ba24fc198c].
| ︙ | ︙ | |||
28 29 30 31 32 33 34 |
[5] = "大师规则(2020) ",
}
s["Debug.ReloadFieldBegin"] = _G.Debug.ReloadFieldBegin
--~ 模
--~ 则数
function _G.Debug.ReloadFieldBegin(u1, u2)
s["伪洗卡"] = u1 & DUEL_PSEUDO_SHUFFLE
| | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
[5] = "大师规则(2020) ",
}
s["Debug.ReloadFieldBegin"] = _G.Debug.ReloadFieldBegin
--~ 模
--~ 则数
function _G.Debug.ReloadFieldBegin(u1, u2)
s["伪洗卡"] = u1 & DUEL_PSEUDO_SHUFFLE
d["战斗阶段"] = u1 & DUEL_ATTACK_FIRST_TURN
d["人工智能"] = u1 & DUEL_SIMPLE_AI
if u2 then
s["则"] = h1[u2]
else
s["则"] = h1[5]
end
s["Debug.ReloadFieldBegin"](u1, u2)
end
|
| ︙ | ︙ | |||
150 151 152 153 154 155 156 |
end
--~ 开局说明
h1 = h2 .. "卡 " .. s["则"]
if s["伪洗卡"] == 0 then
else
h1 = h1 .. "伪洗卡 "
end
| | | | | | 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
end
--~ 开局说明
h1 = h2 .. "卡 " .. s["则"]
if s["伪洗卡"] == 0 then
else
h1 = h1 .. "伪洗卡 "
end
if d["战斗阶段"] == 0 then
h1 = h1 .. "无战斗阶段 "
end
if d["人工智能"] == 0 then
h1 = h1 .. "无人工智能 "
end
if d["数_选卡"] then
h1 = h1 .. "选" .. d["数_选卡"] .. "卡 "
end
if d["数_禁格"] then
h1 = h1 .. "禁" .. d["数_禁格"] .. "怪格 "
end
|
| ︙ | ︙ |