Overview
| Comment: | 好 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f4490a058ad7b79380336756b8d0b53e |
| User & Date: | 顽雨沉风 on 2024-02-14 01:40:31.269 |
| Other Links: | manifest | tags |
Context
|
2024-02-14
| ||
| 02:01 | 好 check-in: e14f5fd087 user: 顽雨沉风 tags: trunk | |
| 01:40 | 好 check-in: f4490a058a user: 顽雨沉风 tags: trunk | |
| 01:35 | 好 check-in: 21cd94e151 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [02b7de0422]
to [e31f06ac81].
| ︙ | ︙ | |||
99 100 101 102 103 104 105 |
end
end
h3:SetCondition(h4)
h3:SetOperation(aux.NULL)
Duel.RegisterEffect(h3, 0)
end
end
| | | | | | | | > < | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
end
end
h3:SetCondition(h4)
h3:SetOperation(aux.NULL)
Duel.RegisterEffect(h3, 0)
end
end
function s.["是否效牌"](card)
for i = 1, #s["效牌之类排"] do
if Card.IsType(card, s["效牌之类排"][i]) then
return true
end
end
if Card.IsType(card, TYPE_PENDULUM) then
for i = 1, #s["无效灵摆怪兽之卡编排"] do
if Card.IsCode(card, s["无效灵摆怪兽之卡编排"][i]) then
else
return true
end
end
end
end
function s["开局选牌入手"](u1)
local h1, h2
str["开局选牌入手之数"] = u1
--~ 效果
h1 = Effect.GlobalEffect()
h1:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS)
h1:SetCode(EVENT_ADJUST)
|
| ︙ | ︙ |