0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-29 09:35:48 +00:00
GC-Resources/Resources/Scripts/Gadget/WinterCampSnowPile.lua
2023-03-21 14:32:55 +08:00

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