Overview
Comment: | 0.0.378 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e3fdda8ef9863230f5d5f456ce0d659d |
User & Date: | 顽雨沉风 on 2023-06-29 22:45:17 |
Other Links: | manifest | tags |
Context
2023-06-29
| ||
22:50 | 0.0.379 check-in: 75a5aae6f2 user: 顽雨沉风 tags: trunk | |
22:45 | 0.0.378 check-in: e3fdda8ef9 user: 顽雨沉风 tags: trunk | |
14:55 | 0.0.377 check-in: 40620faf3c user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [b70647618b] to [e6e5375ee1].
︙ | ︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) end _G["开局说明"] = function() str["这个残局的效果卡数量"] = 0 str["我方卡组"] = Duel.GetFieldGroupCount(0,LOCATION_DECK,0) str["我方墓地"] = Duel.GetFieldGroupCount(0,LOCATION_GRAVE,0) str["我方怪兽区"] = Duel.GetFieldGroupCount(0,LOCATION_MZONE,0) str["我方手卡"] = Duel.GetFieldGroupCount(0,LOCATION_HAND,0) str["我方灵摆区"] = Duel.GetFieldGroupCount(0,LOCATION_PZONE,0) | > > > > > > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) end _G["开局说明"] = function() local cache_1 = {} cache_2 = Duel.GetFieldGroupCount(0,LOCATION_DECK,0) cache_1 str["这个残局的效果卡数量"] = 0 str["我方卡组"] = Duel.GetFieldGroupCount(0,LOCATION_DECK,0) str["我方墓地"] = Duel.GetFieldGroupCount(0,LOCATION_GRAVE,0) str["我方怪兽区"] = Duel.GetFieldGroupCount(0,LOCATION_MZONE,0) str["我方手卡"] = Duel.GetFieldGroupCount(0,LOCATION_HAND,0) str["我方灵摆区"] = Duel.GetFieldGroupCount(0,LOCATION_PZONE,0) |
︙ | ︙ |