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