Overview
| Comment: | 0.0.973 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2962fe731b2437852f6eab2b404498de |
| User & Date: | 顽雨沉风 on 2023-07-08 15:50:26.304 |
| Other Links: | manifest | tags |
Context
|
2023-07-08
| ||
| 15:57 | 0.0.974 check-in: 72c50a901a user: 顽雨沉风 tags: trunk | |
| 15:50 | 0.0.973 check-in: 2962fe731b user: 顽雨沉风 tags: trunk | |
| 15:49 | 0.0.972 check-in: 048319b4d8 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [e0c084f417]
to [94aea2dd95].
| ︙ | ︙ | |||
26 27 28 29 30 31 32 |
effect_1 = Effect.GlobalEffect()
effect_1:SetType(EFFECT_TYPE_FIELD
+ EFFECT_TYPE_CONTINUOUS)
effect_1:SetCode(EVENT_DAMAGE)
function cache_1()
cache_1 = Duel.GetLP(1)
if cache_1 <= 0 then
| < > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
effect_1 = Effect.GlobalEffect()
effect_1:SetType(EFFECT_TYPE_FIELD
+ EFFECT_TYPE_CONTINUOUS)
effect_1:SetCode(EVENT_DAMAGE)
function cache_1()
cache_1 = Duel.GetLP(1)
if cache_1 <= 0 then
Debug.ShowHint(tostring(cache_1))
cache_1 = true
else
cache_1 = false
end
return cache_1
end
effect_1:SetCondition(cache_1)
function cache_1()
|
| ︙ | ︙ |