Overview
| Comment: | 0.0.238 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5e73ecd8d2f8667611ce7f7e829b71bb |
| User & Date: | 顽雨沉风 on 2023-06-25 23:54:59.395 |
| Other Links: | manifest | tags |
Context
|
2023-06-25
| ||
| 23:55 | 0.0.239 check-in: 01d5320f0b user: 顽雨沉风 tags: trunk | |
| 23:54 | 0.0.238 check-in: 5e73ecd8d2 user: 顽雨沉风 tags: trunk | |
| 23:53 | 0.0.237 check-in: 431822ea79 user: 顽雨沉风 tags: trunk | |
Changes
Modified 残局函数库/残局函数库.lua
from [617fff39a2]
to [4f19cdac27].
| ︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 |
fun["开局添加手卡"] = function()
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)
end
fun["通关邀请"]()
| > > > > > > > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
fun["开局添加手卡"] = function()
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
end
fun["通关邀请"]()
|