Overview
| Comment: | 0.0.2744 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9078d0bbe3e4e191af848a61e892b74a |
| User & Date: | 顽雨沉风 on 2023-10-14 23:34:09.243 |
| Other Links: | manifest | tags |
Context
|
2023-10-18
| ||
| 04:39 | 0.0.2745 check-in: c3b0832764 user: 顽雨沉风 tags: trunk | |
|
2023-10-14
| ||
| 23:34 | 0.0.2744 check-in: 9078d0bbe3 user: 顽雨沉风 tags: trunk | |
| 10:13 | 0.0.2743 check-in: d8be18d9bf user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [9d6c3d2b8c]
to [9faacea6ff].
| ︙ | ︙ | |||
69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
Debug.ReloadFieldBegin = function(str_1, str_2) --{
str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
str["规则表"] = {
[3] = "大师3 "
, [4] = "新大师 "
, [5] = "大师2020 "
}
| > > | 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 |
end --}
if str["无BP"] == 0 then --{
str["开局说明"] = str["开局说明"] .. "无BP "
end --}
if str["开局添加手卡"] then --{
str["开局说明"] = str["开局说明"]
.. "选"
.. str["开局添加手卡的数量"]
| > > > > > > | 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["开局添加手卡的数量"]
|
| ︙ | ︙ |