Overview
Comment: | 0.0.2006 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
9a1184f29f4caab7156bcc844b22888a |
User & Date: | 顽雨沉风 on 2023-07-22 04:00:28 |
Other Links: | manifest | tags |
Context
2023-07-22
| ||
04:11 | 0.0.2007 check-in: 0852ed07b8 user: 顽雨沉风 tags: trunk | |
04:00 | 0.0.2006 check-in: 9a1184f29f user: 顽雨沉风 tags: trunk | |
03:59 | 0.0.2005 check-in: cea1cbb009 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [5fdad5476f] to [8fc2d791f8].
︙ | ︙ | |||
23 24 25 26 27 28 29 | str["规则"] = "" str["规则表"] = {} str["规则表"][3] = "大师3 " str["规则表"][4] = "新大师 " str["规则表"][5] = "大师2020 " | < < | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | str["规则"] = "" str["规则表"] = {} str["规则表"][3] = "大师3 " str["规则表"][4] = "新大师 " str["规则表"][5] = "大师2020 " str["印卡过多的弹窗"] = "印卡过多!" str["印卡弹窗1"] = "点击对方额外卡组可以进行印卡。\n手卡只能印 " str["印卡弹窗2"] = " 张。\n最多可以印 " str["印卡弹窗3"] = " 张" str["不洗牌"] = false |
︙ | ︙ | |||
352 353 354 355 356 357 358 359 360 361 362 363 364 365 | str["印卡弹窗1"] = str["印卡弹窗1"] .. str["印卡弹窗2"] str["印卡弹窗1"] = str["印卡弹窗1"] .. str_3 str["印卡弹窗1"] = str["印卡弹窗1"] .. str["印卡弹窗3"] Debug.ShowHint(str["印卡弹窗1"]) effect_1 = Effect.CreateEffect(str_1) effect_1:SetType(EFFECT_TYPE_IGNITION) effect_1:SetProperty(EFFECT_FLAG_BOTH_SIDE + EFFECT_FLAG_UNCOPYABLE + EFFECT_FLAG_CANNOT_NEGATE + EFFECT_FLAG_CANNOT_DISABLE) | > > | 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | str["印卡弹窗1"] = str["印卡弹窗1"] .. str["印卡弹窗2"] str["印卡弹窗1"] = str["印卡弹窗1"] .. str_3 str["印卡弹窗1"] = str["印卡弹窗1"] .. str["印卡弹窗3"] Debug.ShowHint(str["印卡弹窗1"]) effect_1 = Effect.CreateEffect(str_1) str["当前印卡数"] = 1 effect_1:SetType(EFFECT_TYPE_IGNITION) effect_1:SetProperty(EFFECT_FLAG_BOTH_SIDE + EFFECT_FLAG_UNCOPYABLE + EFFECT_FLAG_CANNOT_NEGATE + EFFECT_FLAG_CANNOT_DISABLE) |
︙ | ︙ |