游戏王残局简化版

Check-in [d284579690]
Login

Check-in [d284579690]

Overview
Comment:0.0.1784
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d284579690e223c5aa1bc2b41d6f8c5ab64e33913427a8462c96f44c5adb9b54
User & Date: 顽雨沉风 on 2023-07-19 06:12:43
Other Links: manifest | tags
Context
2023-07-19
06:14
0.0.1785 check-in: 1270346ecf user: 顽雨沉风 tags: trunk
06:12
0.0.1784 check-in: d284579690 user: 顽雨沉风 tags: trunk
06:06
0.0.1783 check-in: cd474d87a3 user: 顽雨沉风 tags: trunk
Changes

Modified script/c0.lua from [e6f4ce6b3f] to [39fc644b19].

24
25
26
27
28
29
30

31







32
33
34
35
36
37
38
str["大师2020"] = "大师2020 "

str["不洗牌"] = false
str["无BP"] = false

str["开局说明"] = ""
str["这个残局的效果卡数量"] = 0

str["效果卡数量的后缀"] = "卡 "








str["胜利条件表"] = {}

str["胜利条件表"][0] = false
str["胜利条件表"][1] = "胜利条件:让对方的卡全部回到卡组·额外卡组。"

str["达成胜利条件弹窗"] = "目标已达成!"







>

>
>
>
>
>
>
>







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
str["大师2020"] = "大师2020 "

str["不洗牌"] = false
str["无BP"] = false

str["开局说明"] = ""
str["这个残局的效果卡数量"] = 0

str["效果卡数量的后缀"] = "卡 "
str["不洗牌的说明"] = "伪洗牌 "
str["无BP的说明"] = "无BP "

str["开局添加手卡"] = false
str["选卡的前缀"] = "选"
str["选卡的后缀"] = "卡 "


str["胜利条件表"] = {}

str["胜利条件表"][0] = false
str["胜利条件表"][1] = "胜利条件:让对方的卡全部回到卡组·额外卡组。"

str["达成胜利条件弹窗"] = "目标已达成!"
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  
  if str["不洗牌"] == 0 then --{
    
    --}
    
  else --{
    
    str["开局说明"] = str["开局说明"] .. "伪洗牌 "
    
    end --}
    
  if str["无BP"] == 0 then --{
    
    str["开局说明"] = str["开局说明"] .. "无BP "
    
    end --}
    
  if str["开局添加手卡"] then --{
    
    str["开局说明"] = str["开局说明"] .. "选"
    str["开局说明"] = str["开局说明"] .. str["开局添加手卡"]
    str["开局说明"] = str["开局说明"] .. " "
    
    end --}
    
  if str["禁格"] then --{
    
    str["开局说明"] = str["开局说明"] .. "禁"
    str["开局说明"] = str["开局说明"] .. str["禁格"]







|





|





|

|







244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
  
  if str["不洗牌"] == 0 then --{
    
    --}
    
  else --{
    
    str["开局说明"] = str["开局说明"] .. str["不洗牌的说明"]
    
    end --}
    
  if str["无BP"] == 0 then --{
    
    str["开局说明"] = str["开局说明"] .. str["无BP的说明"]
    
    end --}
    
  if str["开局添加手卡"] then --{
    
    str["开局说明"] = str["开局说明"] .. str["选卡的前缀"]
    str["开局说明"] = str["开局说明"] .. str["开局添加手卡"]
    str["开局说明"] = str["开局说明"] .. str["选的后缀"]
    
    end --}
    
  if str["禁格"] then --{
    
    str["开局说明"] = str["开局说明"] .. "禁"
    str["开局说明"] = str["开局说明"] .. str["禁格"]