Files
hk4e/gdconf/game_data_config/lua/gadget/WinterCampSnowPile.lua
2022-11-30 00:00:20 +08:00

11 lines
227 B
Go

-- 雪堆被攻击
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