Overview
Comment: | 0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
383ce45c59559590a41e15c90dd04fe4 |
User & Date: | 顽雨沉风 on 2024-07-17 23:08:37 |
Other Links: | manifest | tags |
Context
2024-07-17
| ||
23:25 | 0 check-in: d64decbe1d user: 顽雨沉风 tags: trunk | |
23:08 | 0 check-in: 383ce45c59 user: 顽雨沉风 tags: trunk | |
22:58 | 0 check-in: 07dff49316 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [e0e5b879de] to [b7a97901bb].
︙ | ︙ | |||
34 35 36 37 38 39 40 | d["数_战斗阶段"] = o1 & DUEL_ATTACK_FIRST_TURN d["数_人工智能"] = o1 & DUEL_SIMPLE_AI if o2 then d["字_这一局的规则"] = k1[o2] else d["字_这一局的规则"] = k1[5] end | < | | | | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | d["数_战斗阶段"] = o1 & DUEL_ATTACK_FIRST_TURN d["数_人工智能"] = o1 & DUEL_SIMPLE_AI if o2 then d["字_这一局的规则"] = k1[o2] else d["字_这一局的规则"] = k1[5] end f["Debug.ReloadFieldBegin"](o1, o2) end end f["不被连锁"] = function() Duel.SetChainLimit(aux.FALSE) return true end f["是否有效果卡"] = function(card) for k11 = 1, #d["排_效果卡之类型"] do if Card.IsType(card, d["排_效果卡之类型"][k11]) then return true end end if Card.IsType(card, TYPE_PENDULUM) then for k11 = 1, #d["排_非效果灵摆怪兽之卡片编号"] do if Card.IsCode(card, d["排_非效果灵摆怪兽之卡片编号"][k11]) then return false else end end return true end end |
︙ | ︙ |