Lines of
script/c0.lua
from check-in 1911134505
that are changed by the sequence of edits moving toward
check-in 526e8343ee:
1:
2: local str = {}
3:
4: local math = math
5: local string = string
6: local table = table
7:
8: _G.fun = {}
9:
10: ---------------------------------
11:
12: local cache_1
13: local cache_2
14: local cache_3
15: local cache_4
16: local cache_5
17: local cache_6
18: local cache_7
19: local cache_8
20: local cache_9
21:
22: local _
23:
24: str["效果卡的种类表"] = {
25:
26: TYPE_SPELL
27: , TYPE_TRAP
28: , TYPE_EFFECT
29: }
30:
31: str["无效果灵摆怪兽表"] = {
32:
33: 28363749
34: , 19474136
35: , 17390179
36: , 83980492
37: }
38:
39: cache_1 = 0
40:
41: cache_1 = cache_1 + LOCATION_HAND
42: + LOCATION_MZONE
43: + LOCATION_SZONE
44: + LOCATION_GRAVE
45: + LOCATION_REMOVED
46:
47: str["除卡组与额外卡组以外的区域"] = cache_1
48:
49: cache_1 = cache_1 + LOCATION_DECK
50: + LOCATION_EXTRA
51:
52: str["所有区域"] = cache_1
53:
54: --第一层-------------------------------
55:
56: local cache_1
57: local cache_2
58: local cache_3
59: local cache_4
60: local cache_5
61: local cache_6
62: local cache_7
63: local cache_8
64: local cache_9
65:
66: local _
67:
68: fun["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
69:
70: Debug.ReloadFieldBegin = function(str_1, str_2) --{
71:
72: str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
73:
74: str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
75:
76: str["规则表"] = {
77:
78: [3] = "大师3 "
79: , [4] = "新大师 "
80: , [5] = "大师2020 "
81: }
82:
83: if str_2 then --{
84:
85: str["规则"] = str["规则表"][str_2]
86:
87: --}
88:
89: else --{
90:
91: str["规则"] = str["规则表"][5]
92:
93: end --}
94:
95: fun["Debug.ReloadFieldBegin"](str_1, str_2)
96:
97: end --}
98:
99: fun["一_随机抽卡"] = function(str_1) --{
100:
101: str["随机抽卡的数量"] = str_1
102:
103: str["效果"] = Effect.GlobalEffect()
104:
105: str["效果"]:SetType(EFFECT_TYPE_FIELD
106: + EFFECT_TYPE_CONTINUOUS)
107:
108: str["效果"]:SetCode(EVENT_ADJUST)
109:
110: str["效果"]:SetCondition(aux.TRUE)
111:
112: function cache_1(effect_event
113: , player_who_activate_the_effect) --{
114:
115: Duel.ShuffleDeck(0)
116:
117: Duel.Draw(0,str_1,REASON_RULE)
118:
119: effect_event:Reset()
120:
121: end --}
122:
123: str["效果"]:SetOperation(cache_1)
124:
125: Duel.RegisterEffect(str["效果"]
126: , 0)
127:
128: end --}
129:
130: fun["一_失败得分"] = function() --{
131:
132: str["失败得分表"] = {
133:
134: [0] = "神龙之圣刻印"
135: , [100] = "调和支援士"
136: , [200] = "深渊的暗杀者"
137: , [300] = "救援猫"
138: , [400] = "注射天使 莉莉"
139: , [500] = "不知火的隐者"
140: , [600] = "影依猎鹰"
141: , [700] = "铁兽战线 姬特"
142: , [800] = "召唤僧"
143: , [900] = "恩底弥翁的仆从"
144: , [1000] = "机壳工具 丑恶"
145: , [1100] = "欧尼斯特"
146: , [1200] = "次元吸引者"
147: , [1300] = "黑羽-疾风之盖尔"
148: , [1400] = "加农炮兵"
149: , [1500] = "教导的大神祗官"
150: , [1600] = "地中族导师"
151: , [1700] = "相剑师-莫邪"
152: , [1800] = "宝玉兽-青玉飞马"
153: , [1900] = "命运英雄 血魔-D"
154: , [2000] = "流离的狮鹫骑手"
155: , [2100] = "电子龙"
156: , [2200] = "古遗物-死镰"
157: , [2300] = "能朋克 调狐"
158: , [2400] = "俱舍怒威族·芬里尔狼"
159: , [2500] = "黑魔术师"
160: , [2600] = "雅典娜"
161: , [2700] = "暗黑界的龙神 格拉法"
162: , [2800] = "魔导兽 刻耳柏洛斯尊主"
163: , [2900] = "元素英雄 永生侠"
164: , [3000] = "青眼白龙"
165: }
166:
167: str["对方玩家的初始生命值"] = Duel.GetLP(1)
168:
169: str["效果"] = Effect.GlobalEffect()
170:
171: str["效果"]:SetType(EFFECT_TYPE_FIELD
172: + EFFECT_TYPE_CONTINUOUS)
173:
174: str["效果"]:SetCode(EVENT_PHASE_START+PHASE_END)
175:
176: function cache_1(effect_event
177: , player_who_activate_the_effect) --{
178:
179: cache_1 = Duel.GetLP(1) - str["对方玩家的初始生命值"]
180:
181: if cache_1 > 0 then --{
182:
183: return
184:
185: --}
186:
187: else --{
188:
189: cache_1 = math.abs(cache_1) / (str["对方玩家的初始生命值"] - 100)
190:
191: cache_1 = math.tointeger(cache_1 * 3000 // 100 * 100)
192:
193: end --}
194:
195: if cache_1 > 3000 then --{
196:
197: --}
198:
199: else --{
200:
201: Debug.ShowHint("这局,您的得分是 "
202: .. cache_1
203: .. " 分!\n处于「"
204: .. str["失败得分表"][cache_1]
205: .. "」级别!")
206:
207: end --}
208:
209: effect_event:Reset()
210:
211: end --}
212:
213: str["效果"]:SetOperation(cache_1)
214:
215: Duel.RegisterEffect(str["效果"]
216: , 0)
217:
218: end --}
219:
220: fun["一_该效果不能被连锁"] = function() --{
221:
222: Duel.SetChainLimit(aux.FALSE)
223:
224: return true
225: end --}
226:
227: fun["一_通关邀请"] = function() --{
228:
229: str["效果"] = Effect.GlobalEffect()
230:
231: str["效果"]:SetType(EFFECT_TYPE_FIELD
232: + EFFECT_TYPE_CONTINUOUS)
233:
234: str["效果"]:SetCode(EVENT_DAMAGE)
235:
236: function cache_1() --{
237:
238: cache_1 = Duel.GetLP(1)
239:
240: if cache_1 <= 0 then --{
241:
242: if cache_1 == 0 then --{
243:
244: --}
245:
246: else --{
247:
248: Debug.ShowHint("QB:「你居然二解了,请加群告诉我怎么二解。」")
249:
250: end --}
251:
252: Debug.ShowHint("残局群181175613")
253:
254: --}
255:
256: else --{
257:
258: return false
259:
260: end --}
261:
262: end --}
263:
264: str["效果"]:SetCondition(cache_1)
265:
266: str["效果"]:SetOperation(aux.NULL)
267:
268: Duel.RegisterEffect(str["效果"]
269: , 0)
270:
271: end --}
272:
273: fun["一_是否效果卡"] = function(card) --{
274:
275: for i = 1, #str["效果卡的种类表"] do --{
276:
277: if Card.IsType(card, str["效果卡的种类表"][i]) then --{
278:
279: return true
280: end --}
281:
282: end --}
283:
284: if Card.IsType(card, TYPE_PENDULUM) then --{
285:
286: for i = 1, #str["无效果灵摆怪兽表"] do --{
287:
288: if Card.IsCode(card, str["无效果灵摆怪兽表"][i]) then --{
289:
290: --}
291:
292: else --{
293:
294: return true
295:
296: end --}
297:
298: end --}
299:
300: end --}
301:
302: return false
303:
304: end --}
305:
306: fun["一_开局添加手卡"] = function(str_1) --{
307:
308: str["开局添加手卡的数量"] = str_1
309:
310: str["效果"] = Effect.GlobalEffect()
311:
312: str["效果"]:SetType(EFFECT_TYPE_FIELD
313: + EFFECT_TYPE_CONTINUOUS)
314:
315: str["效果"]:SetCode(EVENT_ADJUST)
316:
317: str["效果"]:SetCondition(aux.TRUE)
318:
319: function cache_1(effect_event
320: , player_who_activate_the_effect) --{
321:
322: str["玩家选定的卡"] = Duel.SelectMatchingCard(player_who_activate_the_effect
323: , Card.IsAbleToHand
324: , player_who_activate_the_effect
325: , LOCATION_DECK
326: , 0
327: , str_1
328: , str_1
329: , nil)
330:
331: Duel.SendtoHand(str["玩家选定的卡"]
332: , nil
333: , REASON_RULE)
334:
335: effect_event:Reset()
336:
337: end --}
338:
339: str["效果"]:SetOperation(cache_1)
340:
341: Duel.RegisterEffect(str["效果"]
342: , 0)
343:
344: end --}
345:
346: fun["一_禁格"] = function(str_1) --{
347:
348: str["禁格的数量"] = str_1
349:
350: str["效果"] = Effect.GlobalEffect()
351:
352: str["效果"]:SetCode(EFFECT_USE_EXTRA_MZONE)
353:
354: str["效果"]:SetValue(str_1)
355:
356: Duel.RegisterEffect(str["效果"],0)
357:
358: end --}
359:
360: --第二层-------------------------------
361:
362: local cache_1
363: local cache_2
364: local cache_3
365: local cache_4
366: local cache_5
367: local cache_6
368: local cache_7
369: local cache_8
370: local cache_9
371:
372: local _
373:
374: fun["Debug.ReloadFieldEnd"] = Debug.ReloadFieldEnd
375:
376: Debug.ReloadFieldEnd = function(str_1) --{
377:
378: fun["Debug.ReloadFieldEnd"]()
379:
380: if str_1 then --{
381:
382: fun["一_随机抽卡"](str_1)
383:
384: end --}
385:
386: end --}
387:
388: fun["二_印卡"] = function(str_1, str_2, str_3) --{
389:
390: if str_3 then --{
391:
392: --}
393:
394: else --{
395:
396: str_3 = str_2
397:
398: end --}
399:
400: Debug.ShowHint("点击对方额外卡组可以进行印卡。\n手卡只能印 "
401: .. str_2
402: .. " 张。\n最多可以印 "
403: .. str_3
404: .. " 张")
405:
406: str["效果"] = Effect.CreateEffect(str_1)
407:
408: str["当前印卡数"] = 1
409:
410: str["效果"]:SetType(EFFECT_TYPE_IGNITION)
411:
412: str["效果"]:SetProperty(EFFECT_FLAG_BOTH_SIDE
413: + EFFECT_FLAG_UNCOPYABLE
414: + EFFECT_FLAG_CANNOT_NEGATE
415: + EFFECT_FLAG_CANNOT_DISABLE)
416:
417: str["效果"]:SetTarget(fun["一_该效果不能被连锁"])
418:
419: str["效果"]:SetRange(LOCATION_EXTRA)
420:
421: function print_hand(effect_event
422: , player_who_activate_the_effect) --{
423:
424: announce_card = Duel.AnnounceCard(player_who_activate_the_effect)
425:
426: card = Duel.CreateToken(player_who_activate_the_effect
427: , announce_card)
428:
429: if str["当前印卡数"] <= str_2 then --{
430:
431: str["当前印卡数"] = str["当前印卡数"] + 1
432:
433: Duel.SendtoHand(card,nil,REASON_RULE)
434:
435: --}
436:
437: else --{
438:
439: if str["当前印卡数"] <= str_3 then --{
440:
441: str["当前印卡数"] = str["当前印卡数"] + 1
442:
443: Duel.Remove(card,POS_FACEUP,REASON_RULE)
444:
445: Duel.SendtoDeck(card,player_who_activate_the_effect,0,REASON_RULE)
446:
447: --}
448:
449: else --{
450:
451: Debug.ShowHint("印卡过多!")
452:
453: effect_event:Reset()
454:
455: end --}
456:
457: end --}
458:
459: end --}
460:
461: str["效果"]:SetOperation(print_hand)
462:
463: str_1:RegisterEffect(str["效果"])
464:
465: end --}
466:
467: fun["二_开局说明"] = function() --{
468:
469: str["这个残局的效果卡数量"] = Duel.GetMatchingGroupCount(fun["是否效果卡"]
470: , 0
471: , str["所有区域"]
472: , str["所有区域"]
473: , nil)
474:
475: str["超量素材组"] = Duel.GetOverlayGroup(0
476: , LOCATION_MZONE
477: , LOCATION_MZONE)
478:
479: for k in aux.Next(str["超量素材组"]) do --{
480:
481: if fun["一_是否效果卡"](k) then --{
482:
483: str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + 1
484:
485: end --}
486:
487: end --}
488:
489: str["开局说明"] = str["这个残局的效果卡数量"]
490: .. "卡 "
491: .. str["规则"]
492:
493: if str["不洗牌"] == 0 then --{
494:
495: --}
496:
497: else --{
498:
499: str["开局说明"] = str["开局说明"] .. "伪洗牌 "
500:
501: end --}
502:
503: if str["无BP"] == 0 then --{
504:
505: str["开局说明"] = str["开局说明"] .. "无BP "
506:
507: end --}
508:
509: if str["开局添加手卡"] then --{
510:
511: str["开局说明"] = str["开局说明"]
512: .. "选"
513: .. str["开局添加手卡的数量"]
514: .. "卡 "
515:
516: end --}
517:
518: if str["禁格"] then --{
519:
520: str["开局说明"] = str["开局说明"]
521: .. "禁"
522: .. str["禁格的数量"]
523: .. "格 "
524:
525: end --}
526:
527: if str["随机抽卡的数量"] then --{
528:
529: str["开局说明"] = str["开局说明"]
530: .. "抽"
531: .. str["随机抽卡的数量"]
532: .. "卡 "
533: end --}
534:
535: Debug.ShowHint(str["开局说明"])
536:
537: end --}
538:
539: --第三层-------------------------------
540:
541: local cache_1
542: local cache_2
543: local cache_3
544: local cache_4
545: local cache_5
546: local cache_6
547: local cache_7
548: local cache_8
549: local cache_9
550:
551: local _
552:
553: fun["aux.BeginPuzzle"] = aux.BeginPuzzle
554:
555: aux.BeginPuzzle = function(str_1, str_2) --{
556:
557: fun["aux.BeginPuzzle"]()
558:
559: if str_1 then --{
560:
561: fun["一_开局添加手卡"](str_1)
562:
563: end --}
564:
565: if str_2 then --{
566:
567: fun["一_禁格"](str_2)
568:
569: end --}
570:
571: fun["二_开局说明"]()
572:
573: fun["一_通关邀请"]()
574:
575: fun["一_失败得分"]()
576:
577: end --}
578:
579: --兼容层-------------------------------
580:
581:
582: fun["印卡"] = fun["二_印卡"]
583: fun["开局添加手卡"] = fun["一_开局添加手卡"]
584: fun["是否效果卡"] = fun["一_是否效果卡"]
585: fun["禁格"] = fun["一_禁格"]
586: fun["随机抽卡"] = fun["一_随机抽卡"]
1911134505 2023-08-02 587:
1911134505 2023-08-02 588:
1911134505 2023-08-02 589:
1911134505 2023-08-02 590:
1911134505 2023-08-02 591:
1911134505 2023-08-02 592:
1911134505 2023-08-02 593:
1911134505 2023-08-02 594:
1911134505 2023-08-02 595:
1911134505 2023-08-02 596:
1911134505 2023-08-02 597:
1911134505 2023-08-02 598:
1911134505 2023-08-02 599:
1911134505 2023-08-02 600: