游戏王残局简化版

Annotation For script/c0.lua
Login

Annotation For script/c0.lua

Lines of script/c0.lua from check-in 154313a5bc that are changed by the sequence of edits moving toward check-in 0d8bedefaa:

                         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 i
                        15: 
                        16: _G.fun = {}
                        17: 
                        18: ---------------------------------
                        19: 
                        20: str["二解弹窗"] = "QB:「你居然二解了,请加群告诉我怎么二解。」"
                        21: str["原解弹窗"] = "残局群181175613"
                        22: 
                        23: str["规则"] = ""
                        24: 
                        25: str["规则表"] = {}
                        26: str["规则表"][3] = "大师3 "
                        27: str["规则表"][4] = "新大师 "
                        28: str["规则表"][5] = "大师2020 "
                        29: 
                        30: str["印卡过多的弹窗"] = "印卡过多!"
                        31: 
                        32: str["印卡弹窗1"] = "点击对方额外卡组可以进行印卡。\n手卡只能印 "
                        33: str["印卡弹窗2"] = " 张。\n最多可以印 "
                        34: str["印卡弹窗3"] = " 张"
                        35: 
                        36: str["不洗牌的说明"] = "伪洗牌 "
                        37: str["无BP的说明"] = "无BP "
                        38: 
                        39: str["效果卡数量的后缀"] = "卡 "
                        40: 
                        41: str["选卡的前缀"] = "选"
                        42: str["选卡的后缀"] = "卡 "
                        43: 
                        44: str["禁格的前缀"] = "禁"
                        45: str["禁格的后缀"] = "格 "
                        46: 
                        47: str["效果卡的种类表"] = {}
                        48: 
                        49: str["效果卡的种类表"][1] = TYPE_SPELL
                        50: str["效果卡的种类表"][2] = TYPE_TRAP
                        51: str["效果卡的种类表"][3] = TYPE_EFFECT
                        52: 
                        53: str["无效果灵摆怪兽表"] = {}
                        54: 
                        55: str["无效果灵摆怪兽表"][1] = 28363749
                        56: str["无效果灵摆怪兽表"][2] = 19474136
                        57: str["无效果灵摆怪兽表"][3] = 17390179
                        58: str["无效果灵摆怪兽表"][4] = 83980492
                        59: 
                        60: cache_1 = 0
                        61: 
                        62: cache_1 = cache_1 + LOCATION_HAND
                        63: cache_1 = cache_1 + LOCATION_MZONE
                        64: cache_1 = cache_1 + LOCATION_SZONE
                        65: cache_1 = cache_1 + LOCATION_GRAVE
                        66: cache_1 = cache_1 + LOCATION_REMOVED
                        67: 
                        68: str["除卡组与额外卡组以外的区域"] = cache_1
                        69: 
                        70: cache_1 = cache_1 + LOCATION_DECK
                        71: cache_1 = cache_1 + LOCATION_EXTRA
                        72: 
                        73: str["所有区域"] = cache_1
                        74: 
                        75: str["随机抽卡的前缀"] = "抽"
                        76: str["随机抽卡的后缀"] = "卡 "
                        77: 
                        78: ---------------------------------
                        79: 
                        80: fun["Debug.ReloadFieldBegin"] = Debug.ReloadFieldBegin
                        81: 
                        82: Debug.ReloadFieldBegin = function(str_1, str_2) --{
                        83:   
                        84:   str["不洗牌"] = str_1 & DUEL_PSEUDO_SHUFFLE
                        85:   
                        86:   str["无BP"] = str_1 & DUEL_ATTACK_FIRST_TURN
                        87:   
                        88:   if str_2 then --{
                        89:     
                        90:     str["规则"] = str["规则表"][str_2]
                        91:     
                        92:     --}
                        93:     
                        94:   else --{
                        95:     
                        96:     str["规则"] = str["规则表"][5]
                        97:     
                        98:     end --}
                        99:     
                       100:   fun["Debug.ReloadFieldBegin"](str_1, str_2)
                       101:   
                       102:   end --}
                       103:   
                       104: fun["aux.BeginPuzzle"] = aux.BeginPuzzle
                       105: 
                       106: aux.BeginPuzzle = function(str_1, str_2) --{
                       107:   
                       108:   fun["aux.BeginPuzzle"]()
                       109:   
                       110:   if str_1 then --{
                       111:     
                       112:     fun["开局添加手卡"](str_1)
                       113:     
                       114:     end --}
                       115:     
                       116:   if str_2 then --{
                       117:     
                       118:     fun["禁格"](str_2)
                       119:     
                       120:     end --}
                       121:     
                       122:   fun["开局说明"]()
                       123:   
                       124:   fun["通关邀请"]()
                       125:   
                       126:   end --}
                       127:   
                       128: fun["通关邀请"] = function() --{
                       129:   
                       130:   str["效果"] = Effect.GlobalEffect()
                       131:   
                       132:   str["效果"]:SetType(EFFECT_TYPE_FIELD
                       133:   + EFFECT_TYPE_CONTINUOUS)
                       134:   
                       135:   str["效果"]:SetCode(EVENT_DAMAGE)
                       136:   
                       137:   function cache_1() --{
                       138:     
                       139:     cache_1 = Duel.GetLP(1)
                       140:     
                       141:     if cache_1 <= 0 then --{
                       142:       
                       143:       if cache_1 == 0 then --{
                       144:         
                       145:         --}
                       146:         
                       147:       else  --{
                       148:         
154313a5bc 2023-07-23  149:         Debug.ShowHint(str["二解弹窗"])
                       150:         
                       151:         end --}
                       152:         
154313a5bc 2023-07-23  153:       Debug.ShowHint(str["原解弹窗"])
                       154:       
                       155:       --}
                       156:       
                       157:     else --{
                       158:       
                       159:       return false
                       160:       
                       161:       end --}
                       162:       
                       163:     end --}
                       164:     
                       165:   str["效果"]:SetCondition(cache_1)
                       166:   
                       167:   str["效果"]:SetOperation(aux.NULL)
                       168:   
                       169:   Duel.RegisterEffect(str["效果"]
                       170:   , 0)
                       171:   
                       172:   end --}
                       173:   
                       174: fun["是否效果卡"] = function(card) --{
                       175:   
                       176:   cache_1 = #str["效果卡的种类表"]
                       177:   
                       178:   for i = 1, cache_1 do --{
                       179:     
                       180:     cache_1 = Card.IsType(card, str["效果卡的种类表"][i])
                       181:     
                       182:     if cache_1 then --{
                       183:       
                       184:       return true
                       185:       end --}
                       186:       
                       187:     end --}
                       188:     
                       189:   cache_1 = Card.IsType(card, TYPE_PENDULUM)
                       190:   
                       191:   if cache_1 then --{
                       192:     
                       193:     cache_1 = #str["无效果灵摆怪兽表"]
                       194:     
                       195:     for i = 1, cache_1 do --{
                       196:       
                       197:       cache_1 = Card.IsCode(card, str["无效果灵摆怪兽表"][i])
                       198:       
                       199:       if cache_1 then --{
                       200:         
                       201:         --}
                       202:         
                       203:       else  --{
                       204:         
                       205:         return true
                       206:         
                       207:         end --}
                       208:         
                       209:       end --}
                       210:       
                       211:     end --}
                       212:     
                       213:   return false
                       214:   
                       215:   end --}
                       216:   
                       217: fun["开局说明"] = function() --{
                       218:   
                       219:   str["这个残局的效果卡数量"] = Duel.GetMatchingGroupCount(fun["是否效果卡"]
                       220:   , 0
                       221:   , str["所有区域"]
                       222:   , str["所有区域"]
                       223:   , nil)
                       224:   
                       225:   cache_1 = Duel.GetOverlayGroup(0
                       226:   , LOCATION_MZONE
                       227:   , LOCATION_MZONE)
                       228:   
                       229:   for k in aux.Next(cache_1) do --{
                       230:     
                       231:     cache_1 = fun["是否效果卡"](k)
                       232:     
                       233:     if cache_1 then --{
                       234:       
                       235:       str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + 1
                       236:       
                       237:       end --}
                       238:       
                       239:     end --}
                       240:     
                       241:   str["开局说明"] = str["这个残局的效果卡数量"]
                       242:   .. "卡 "
                       243:   .. str["规则"]
                       244:   
                       245:   if str["不洗牌"] == 0 then --{
                       246:     
                       247:     --}
                       248:     
                       249:   else --{
                       250:     
                       251:     str["开局说明"] = str["开局说明"] .. "伪洗牌 "
                       252:     
                       253:     end --}
                       254:     
                       255:   if str["无BP"] == 0 then --{
                       256:     
                       257:     str["开局说明"] = str["开局说明"] .. "无BP "
                       258:     
                       259:     end --}
                       260:     
                       261:   if str["开局添加手卡"] then --{
                       262:     
                       263:     str["开局说明"] = str["开局说明"]
                       264:     .. "选"
                       265:     .. str["开局添加手卡的数量"]
                       266:     .. "卡 "
                       267:     
                       268:     end --}
                       269:     
                       270:   if str["禁格"] then --{
                       271:     
                       272:     str["开局说明"] = str["开局说明"]
                       273:     .. "禁"
                       274:     .. str["禁格的数量"]
                       275:     .. "格 "
                       276:     
                       277:     end --}
                       278:     
                       279:   if str["随机抽卡的数量"] then --{
                       280:     
                       281:     str["开局说明"] = str["开局说明"]
                       282:     .. "抽"
                       283:     .. str["随机抽卡的数量"]
                       284:     .. "卡 "
                       285:     end --}
                       286:     
                       287:   Debug.ShowHint(str["开局说明"])
                       288:   
                       289:   end --}
                       290:   
                       291: fun["开局添加手卡"] = function(str_1) --{
                       292:   
                       293:   str["开局添加手卡的数量"] = str_1
                       294:   
                       295:   str["效果"] = Effect.GlobalEffect()
                       296:   
                       297:   str["效果"]:SetType(EFFECT_TYPE_FIELD
                       298:   + EFFECT_TYPE_CONTINUOUS)
                       299:   
                       300:   str["效果"]:SetCode(EVENT_ADJUST)
                       301:   
                       302:   str["效果"]:SetCondition(aux.TRUE)
                       303:   
                       304:   function cache_1(effect_event
                       305:   , player_who_activate_the_effect) --{
                       306:     
                       307:     str["玩家选定的卡"] = Duel.SelectMatchingCard(player_who_activate_the_effect
                       308:     , Card.IsAbleToHand
                       309:     , player_who_activate_the_effect
                       310:     , LOCATION_DECK
                       311:     , 0
                       312:     , str_1
                       313:     , str_1
                       314:     , nil)
                       315:     
                       316:     Duel.SendtoHand(str["玩家选定的卡"]
                       317:     , nil
                       318:     , REASON_RULE)
                       319:     
                       320:     effect_event:Reset()
                       321:     
                       322:     end --}
                       323:     
                       324:   str["效果"]:SetOperation(cache_1)
                       325:   
                       326:   Duel.RegisterEffect(str["效果"]
                       327:   , 0)
                       328:   
                       329:   end --}
                       330:   
                       331: fun["禁格"] = function(str_1) --{
                       332:   
                       333:   str["禁格的数量"] = str_1
                       334:   
                       335:   str["效果"] = Effect.GlobalEffect()
                       336:   
                       337:   str["效果"]:SetCode(EFFECT_USE_EXTRA_MZONE)
                       338:   
                       339:   str["效果"]:SetValue(str_1)
                       340:   
                       341:   Duel.RegisterEffect(str["效果"],0)
                       342:   
                       343:   end --}
                       344:   
                       345: fun["印卡"] = function(str_1, str_2, str_3) --{
                       346:   
                       347:   if str_3 then --{
                       348:     
                       349:     --}
                       350:     
                       351:   else --{
                       352:     
                       353:     str_3 = str_2
                       354:     
                       355:     end --}
                       356:     
                       357:   Debug.ShowHint("点击对方额外卡组可以进行印卡。\n手卡只能印 "
                       358:   .. str_2
                       359:   .. " 张。\n最多可以印 "
                       360:   .. str_3
                       361:   .. " 张")
                       362:   
                       363:   str["效果"] = Effect.CreateEffect(str_1)
                       364:   
                       365:   str["当前印卡数"] = 1
                       366:   
                       367:   str["效果"]:SetType(EFFECT_TYPE_IGNITION)
                       368:   
                       369:   str["效果"]:SetProperty(EFFECT_FLAG_BOTH_SIDE
                       370:   + EFFECT_FLAG_UNCOPYABLE
                       371:   + EFFECT_FLAG_CANNOT_NEGATE
                       372:   + EFFECT_FLAG_CANNOT_DISABLE)
                       373:   
                       374:   cache_1 = function() --{
                       375:     
                       376:     Duel.SetChainLimit(aux.FALSE)
                       377:     
                       378:     return true
                       379:     
                       380:     end --}
                       381:     
                       382:   str["效果"]:SetTarget(cache_1)
                       383:   
                       384:   str["效果"]:SetRange(LOCATION_EXTRA)
                       385:   
                       386:   function print_hand(effect_event
                       387:   , player_who_activate_the_effect) --{
                       388:     
                       389:     announce_card = Duel.AnnounceCard(player_who_activate_the_effect)
                       390:     
                       391:     card = Duel.CreateToken(player_who_activate_the_effect
                       392:     , announce_card)
                       393:     
                       394:     if str["当前印卡数"] <= str_2 then --{
                       395:       
                       396:       str["当前印卡数"] = str["当前印卡数"] + 1
                       397:       
                       398:       Duel.SendtoHand(card,nil,REASON_RULE)
                       399:       
                       400:       --}
                       401:       
                       402:     else --{
                       403:       
                       404:       if str["当前印卡数"] <= str_3 then --{
                       405:         
                       406:         str["当前印卡数"] = str["当前印卡数"] + 1
                       407:         
                       408:         Duel.Remove(card,POS_FACEUP,REASON_RULE)
                       409:         
                       410:         Duel.SendtoDeck(card,player_who_activate_the_effect,0,REASON_RULE)
                       411:         
                       412:         --}
                       413:         
                       414:       else --{
                       415:         
                       416:         Debug.ShowHint(str["印卡过多的弹窗"])
                       417:         
                       418:         effect_event:Reset()
                       419:         
                       420:         end --}
                       421:         
                       422:       end --}
                       423:       
                       424:     end --}
                       425:     
                       426:   str["效果"]:SetOperation(print_hand)
                       427:   
                       428:   str_1:RegisterEffect(str["效果"])
                       429:   
                       430:   end --}
                       431:   
                       432: fun["随机抽卡"] = function(str_1) --{
                       433:   
                       434:   str["随机抽卡的数量"] = str_1
                       435:   
                       436:   str["效果"] = Effect.GlobalEffect()
                       437:   
                       438:   str["效果"]:SetType(EFFECT_TYPE_FIELD
                       439:   + EFFECT_TYPE_CONTINUOUS)
                       440:   
                       441:   str["效果"]:SetCode(EVENT_ADJUST)
                       442:   
                       443:   str["效果"]:SetCondition(aux.TRUE)
                       444:   
                       445:   function cache_1(effect_event
                       446:   , player_who_activate_the_effect) --{
                       447:     
                       448:     Duel.ShuffleDeck(0)
                       449:     
                       450:     Duel.Draw(0,str_1,REASON_RULE)
                       451:     
                       452:     effect_event:Reset()
                       453:     
                       454:     end --}
                       455:     
                       456:   str["效果"]:SetOperation(cache_1)
                       457:   
                       458:   Duel.RegisterEffect(str["效果"]
                       459:   , 0)
                       460:   
                       461:   end --}
                       462: