Overview
Comment: | 0.0.363 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b4952245a8b1440f961e1f55c66113f5 |
User & Date: | 顽雨沉风 on 2023-06-29 13:58:59 |
Other Links: | manifest | tags |
Context
2023-06-29
| ||
14:00 | 0.0.364 check-in: 1fecb51d54 user: 顽雨沉风 tags: trunk | |
13:58 | 0.0.363 check-in: b4952245a8 user: 顽雨沉风 tags: trunk | |
13:58 | 0.0.362 check-in: a22f1ef138 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [8fbf7e9817] to [99e5aef771].
︙ | ︙ | |||
32 33 34 35 36 37 38 39 40 | _G["开局说明"] = function() str["这个残局的效果卡数量"] = 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) str["我方魔陷区"] = Duel.GetFieldGroupCount(0,LOCATION_SZONE,0) str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方怪兽区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方墓地"] | > > | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | _G["开局说明"] = function() str["这个残局的效果卡数量"] = 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) str["我方魔陷区"] = Duel.GetFieldGroupCount(0,LOCATION_SZONE,0) str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方怪兽区"] str["这个残局的效果卡数量"] = str["这个残局的效果卡数量"] + str["我方墓地"] --~ Debug.ShowHint(str["这个残局的效果卡数量"]) end |