Overview
Comment: | 0.0.241 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d65bfdb2459a7fa52f8627171d579d4d |
User & Date: | 顽雨沉风 on 2023-06-26 00:02:07 |
Other Links: | manifest | tags |
Context
2023-06-26
| ||
00:10 | 0.0.242 check-in: 3b85b0d9d6 user: 顽雨沉风 tags: trunk | |
00:02 | 0.0.241 check-in: d65bfdb245 user: 顽雨沉风 tags: trunk | |
2023-06-25
| ||
23:57 | 0.0.240 check-in: 949c8a99ee user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局函数库/残局函数库.lua from [d571c3eb88] to [41c4f7806b].
︙ | ︙ | |||
28 29 30 31 32 33 34 | return end effect_100:SetOperation(cache_1) Duel.RegisterEffect(effect_100 , 0) end | | | > > > > > > > > > | 28 29 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 55 56 57 58 59 60 61 62 63 64 65 | return end effect_100:SetOperation(cache_1) Duel.RegisterEffect(effect_100 , 0) end fun["开局添加手卡"] = function(str_1) local effect_101 effect_101 = Effect.GlobalEffect() effect_101:SetType(EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS) effect_101:SetCode(EVENT_ADJUST) effect_101:SetCountLimit(1) function cache_1() cache_1 = Duel.GetLP(0) if cache_1 > 0 then cache_1 = true else cache_1 = false end return cache_1 end effect_101:SetCondition(cache_1) function cache_1(effect_event , player_who_activate_the_effect) cache_1 = Duel.SelectMatchingCard(player_who_activate_the_effect , Card.IsAbleToHand , player_who_activate_the_effect , LOCATION_DECK , 0 , str_1 , str_1 , nil) end end fun["通关邀请"]() |