Overview
| Comment: | 0 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
a6497b9644ed1b639057467adf05f6be |
| User & Date: | 顽雨沉风 on 2024-07-18 22:33:08.304 |
| Other Links: | manifest | tags |
Context
|
2024-07-18
| ||
| 22:34 | 0 check-in: 33a7684417 user: 顽雨沉风 tags: trunk | |
| 22:33 | 0 check-in: a6497b9644 user: 顽雨沉风 tags: trunk | |
| 22:31 | 0 check-in: 5da02f9613 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [b844a7e355]
to [d7d7a86451].
| ︙ | ︙ | |||
42 43 44 45 46 47 48 |
end
end
f["不被连锁"] = function()
Duel.SetChainLimit(aux.FALSE)
return true
end
f["是否有效果卡"] = function(card)
| | | | | | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
end
end
f["不被连锁"] = function()
Duel.SetChainLimit(aux.FALSE)
return true
end
f["是否有效果卡"] = function(card)
for k1 = 1, #d["排_效果卡之类型"] do
if Card.IsType(card, d["排_效果卡之类型"][k1]) then
return true
end
end
if Card.IsType(card, TYPE_PENDULUM) then
for k1 = 1, #d["排_非效果灵摆怪兽之卡片编号"] do
if Card.IsCode(card, d["排_非效果灵摆怪兽之卡片编号"][k1]) then
return false
else
end
end
return true
end
end
|
| ︙ | ︙ |