Overview
Comment: | 好 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2033f4039c07021a21ef2b38e5e11b11 |
User & Date: | 顽雨沉风 on 2024-02-17 05:50:16 |
Other Links: | manifest | tags |
Context
2024-02-17
| ||
15:20 | 好 check-in: bb85d78743 user: 顽雨沉风 tags: trunk | |
05:50 | 好 check-in: 2033f4039c user: 顽雨沉风 tags: trunk | |
05:47 | 好 check-in: 53293329e0 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [13353402bb] to [73da5ef015].
︙ | ︙ | |||
132 133 134 135 136 137 138 | h2:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS) h2:SetCode(EVENT_ADJUST) h2:SetCondition(aux.TRUE) h2:SetOperation(s["_开局选卡入手"]) Duel.RegisterEffect(h2, 0) end end | | | | | | | | | | | | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | h2:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS) h2:SetCode(EVENT_ADJUST) h2:SetCondition(aux.TRUE) h2:SetOperation(s["_开局选卡入手"]) Duel.RegisterEffect(h2, 0) end end --~ 禁几个「主怪格」 s["禁几个「主怪格」"] = function(u1) local h1 s["量之禁「主怪格」"] = u1 --~ 效果 h1 = Effect.GlobalEffect() h1:SetCode(EFFECT_USE_EXTRA_MZONE) h1:SetValue(u1) Duel.RegisterEffect(h1, 0) end --~ 禁几个「魔陷格」 s["禁几个「魔陷格」"] = function(u1) local h1 s["量之禁「魔陷格」"] = u1 --~ 效果 h1 = Effect.GlobalEffect() h1:SetCode(EFFECT_USE_EXTRA_SZONE) h1:SetValue(u1) Duel.RegisterEffect(h1, 0) end do s["Debug.ReloadFieldEnd"] = _G.Debug.ReloadFieldEnd --~ 禁几个「主怪格」 --~ 禁几个「魔陷格」 function _G.Debug.ReloadFieldEnd(u1, u2) s["Debug.ReloadFieldEnd"]() if u1 then s["禁几个「主怪格」"](u1) end if u2 then s["禁几个「魔陷格」"](u2) end end end do local h1, h2, h3, h4 --~ 印卡过多之示 h1 = "印卡过多" |
︙ | ︙ | |||
238 239 240 241 242 243 244 | if s["机智"] == 0 then h1 = h1 .. "无机智 " end if s["开局选卡入手之数"] then h1 = h1 .. "选" .. s["开局选卡入手之数"] .. "卡 " end if s["量之禁「主怪格」"] then | | | | 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | if s["机智"] == 0 then h1 = h1 .. "无机智 " end if s["开局选卡入手之数"] then h1 = h1 .. "选" .. s["开局选卡入手之数"] .. "卡 " end if s["量之禁「主怪格」"] then h1 = h1 .. "禁" .. s["量之禁「主怪格」"] .. "怪格 " end if s["量之禁「魔陷格」"] then h1 = h1 .. "禁" .. s["量之禁「魔陷格」"] .. "魔格 " end if s["开局洗卡抽卡之数"] then h1 = h1 .. "抽" .. s["开局洗卡抽卡之数"] .. "卡 " end Debug.ShowHint(h1) end do |
︙ | ︙ |