1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
local str = {}
local cache_1
local cache_2
_G["通关邀请"] = function()
local effect_1
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
cache_1 = true
else
cache_1 = false
end
return cache_1
end
effect_1:SetCondition(cache_1)
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
local str = {}
local cache_1
local cache_2
_G["通关邀请"] = function()
local effect_1
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
cache_1 = true
else
cache_1 = false
end
return cache_1
end
effect_1:SetCondition(cache_1)
|