Overview
Comment: | 0.0.391 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d2dde12476bd38981068e05dd0b19bdd |
User & Date: | 顽雨沉风 on 2023-06-29 23:17:42 |
Other Links: | manifest | tags |
Context
2023-06-29
| ||
23:20 | 0.0.392 check-in: 72e877e414 user: 顽雨沉风 tags: trunk | |
23:17 | 0.0.391 check-in: d2dde12476 user: 顽雨沉风 tags: trunk | |
23:14 | 0.0.390 check-in: e7130db7c4 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua from [67a2f1b242] to [1682e2ffcd].
1 2 3 4 5 6 7 8 9 10 11 12 | local str = {} local fun = {} local cache_1 local cache_2 _G["通关邀请"] = function() local effect_1 effect_1 = Effect.GlobalEffect() effect_1:SetType(EFFECT_TYPE_FIELD | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | local str = {} local fun = {} local cache_1 local cache_2 local cache_3 _G["通关邀请"] = function() local effect_1 effect_1 = Effect.GlobalEffect() effect_1:SetType(EFFECT_TYPE_FIELD |
︙ | ︙ | |||
29 30 31 32 33 34 35 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) end fun["是否效果卡"] = function(card) | > > > > | > > > | > > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | effect_1:SetOperation(cache_1) Duel.RegisterEffect(effect_1 , 0) end fun["是否效果卡"] = function(card) local cache_1 local cache_2 local cache_3 cache_1 = Card.IsType(card, TYPE_SPELL) cache_2 = Card.IsType(card, TYPE_TRAP) cache_3 = Card.IsType(card, TYPE_EFFECT) if cache_1 or cache_2 or cache_3 then return true end return false end _G["开局说明"] = function() Debug.ShowHint(Duel.GetMatchingGroupCount(fun["是否效果卡"],0,LOCATION_GRAVE,0,nil)) |
︙ | ︙ |