VoxeLibre/mods/ENTITIES/mcl_mobs/api/mob_functions/environment.lua
2021-04-15 15:04:55 -04:00

13 lines
233 B
Lua

-- default function when mobs are blown up with TNT
local do_tnt = function(obj, damage)
obj.object:punch(obj.object, 1.0, {
full_punch_interval = 1.0,
damage_groups = {fleshy = damage},
}, nil)
return false, true, {}
end