mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
11 lines
227 B
Lua
11 lines
227 B
Lua
-- 雪堆被攻击
|
|
function OnBeHurt(context, element_type, strike_type, is_host)
|
|
if is_host == true then
|
|
if ElementType.Fire == element_type then
|
|
ScriptLib.SetGadgetState(context, GadgetState.GearStart)
|
|
end
|
|
|
|
end
|
|
end
|
|
|