Overview
Comment: | 0.0.1781 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
15a06aae931dc3e5bf5687804d0f3fd5 |
User & Date: | 顽雨沉风 on 2023-07-19 04:27:51 |
Other Links: | manifest | tags |
Context
2023-07-19
| ||
06:01 | 0.0.1782 check-in: d16316bada user: 顽雨沉风 tags: trunk | |
04:27 | 0.0.1781 check-in: 15a06aae93 user: 顽雨沉风 tags: trunk | |
04:22 | 0.0.1780 check-in: add769c64d user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [a39eb8b9f1] to [56ef9bb8db].
︙ | ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | str["效果卡的种类表"] = {} str["效果卡的种类表"][1] = TYPE_SPELL str["效果卡的种类表"][2] = TYPE_TRAP str["效果卡的种类表"][3] = TYPE_EFFECT cache_1 = 0 cache_1 = cache_1 + LOCATION_HAND cache_1 = cache_1 + LOCATION_MZONE cache_1 = cache_1 + LOCATION_SZONE cache_1 = cache_1 + LOCATION_GRAVE cache_1 = cache_1 + LOCATION_REMOVED | > > > > > > > | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | str["效果卡的种类表"] = {} str["效果卡的种类表"][1] = TYPE_SPELL str["效果卡的种类表"][2] = TYPE_TRAP str["效果卡的种类表"][3] = TYPE_EFFECT str["无效果灵摆怪兽表"] = {} str["无效果灵摆怪兽表"][1] = 28363749 str["无效果灵摆怪兽表"][2] = 19474136 str["无效果灵摆怪兽表"][3] = 17390179 str["无效果灵摆怪兽表"][4] = 83980492 cache_1 = 0 cache_1 = cache_1 + LOCATION_HAND cache_1 = cache_1 + LOCATION_MZONE cache_1 = cache_1 + LOCATION_SZONE cache_1 = cache_1 + LOCATION_GRAVE cache_1 = cache_1 + LOCATION_REMOVED |
︙ | ︙ | |||
159 160 161 162 163 164 165 | end --} cache_1 = Card.IsType(card, TYPE_PENDULUM) if cache_1 then --{ | | < | < | | | | < < < | | | | | | | > > | 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | end --} cache_1 = Card.IsType(card, TYPE_PENDULUM) if cache_1 then --{ cache_1 = #str["无效果灵摆怪兽表"] for i = 1, cache_1 do --{ cache_1 = Card.IsCode(card, str["无效果灵摆怪兽表"][i]) if cache_1 then --{ --} else --{ return true end --} end --} end --} return false end --} |
︙ | ︙ |