Overview
Comment: | 0.0.756 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6a268909587d97660cadb888535aa911 |
User & Date: | 顽雨沉风 on 2023-07-06 13:03:25 |
Other Links: | manifest | tags |
Context
2023-07-06
| ||
13:03 | 0.0.757 check-in: 38127bc74b user: 顽雨沉风 tags: trunk | |
13:03 | 0.0.756 check-in: 6a26890958 user: 顽雨沉风 tags: trunk | |
13:01 | 0.0.755 check-in: 1700f9f25e user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [66e7b85409] to [e8352c2fe4].
︙ | ︙ | |||
120 121 122 123 124 125 126 127 128 129 130 131 132 133 | end if str["开局添加手卡"] then str["开局说明"] = str["开局说明"] .. "选" str["开局说明"] = str["开局说明"] .. str["开局添加手卡"] str["开局说明"] = str["开局说明"] .. "卡 " end Debug.ShowHint(str["开局说明"]) fun["通关邀请"]() end fun["开局添加手卡"] = function(str_1) str["开局添加手卡"] = str_1 | > > > > > > | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | end if str["开局添加手卡"] then str["开局说明"] = str["开局说明"] .. "选" str["开局说明"] = str["开局说明"] .. str["开局添加手卡"] str["开局说明"] = str["开局说明"] .. "卡 " end if str["禁格"] then str["开局说明"] = str["开局说明"] .. "选" str["开局说明"] = str["开局说明"] .. str["开局添加手卡"] str["开局说明"] = str["开局说明"] .. "卡 " end Debug.ShowHint(str["开局说明"]) fun["通关邀请"]() end fun["开局添加手卡"] = function(str_1) str["开局添加手卡"] = str_1 |
︙ | ︙ | |||
164 165 166 167 168 169 170 171 172 173 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) fun["开局说明"]() end fun["禁格"] = function(str_1) effect_1 = Effect.GlobalEffect() effect_1:SetType(EFFECT_TYPE_FIELD) end | > > > > | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) fun["开局说明"]() end fun["禁格"] = function(str_1) str["禁格"] = str_1 effect_1 = Effect.GlobalEffect() effect_1:SetType(EFFECT_TYPE_FIELD) effect_1:SetCode(EFFECT_USE_EXTRA_MZONE) effect_1:SetValue(str_1) Duel.RegisterEffect(effect_1,0) end |