mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-01 15:32:39 +00:00
84 lines
1.7 KiB
Lua
84 lines
1.7 KiB
Lua
|
--License for code WTFPL and otherwise stated in readmes
|
||
|
|
||
|
-- intllib
|
||
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||
|
local S, NS = dofile(MP.."/intllib.lua")
|
||
|
|
||
|
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
||
|
|
||
|
--###################
|
||
|
--################### POLARBEAR
|
||
|
--###################
|
||
|
|
||
|
|
||
|
mobs:register_mob("mobs_mc:polar_bear", {
|
||
|
type = "animal",
|
||
|
runaway = false,
|
||
|
passive = false,
|
||
|
stepheight = 1.2,
|
||
|
hp_min = 30,
|
||
|
hp_max = 30,
|
||
|
collisionbox = {-0.7, -0.01, -0.7, 0.7, 1.39, 0.7},
|
||
|
visual = "mesh",
|
||
|
mesh = "mobs_mc_polarbear.b3d",
|
||
|
textures = {
|
||
|
{"mobs_mc_polarbear.png"},
|
||
|
},
|
||
|
visual_size = {x=3.0, y=3.0},
|
||
|
makes_footstep_sound = true,
|
||
|
damage = 6,
|
||
|
walk_velocity = 1.2,
|
||
|
run_velocity = 2.4,
|
||
|
group_attack = true,
|
||
|
attack_type = "dogfight",
|
||
|
drops = {
|
||
|
-- 3/4 chance to drop raw fish (poor approximation)
|
||
|
{name = mobs_mc.items.fish_raw,
|
||
|
chance = 2,
|
||
|
min = 0,
|
||
|
max = 2,},
|
||
|
-- 1/4 to drop raw salmon
|
||
|
{name = mobs_mc.items.salmon_raw,
|
||
|
chance = 4,
|
||
|
min = 0,
|
||
|
max = 2,},
|
||
|
|
||
|
},
|
||
|
water_damage = 0,
|
||
|
floats = 1,
|
||
|
lava_damage = 5,
|
||
|
light_damage = 0,
|
||
|
fear_height = 4,
|
||
|
sounds = {
|
||
|
random = "Cowhurt1", -- TODO: Replace
|
||
|
distance = 16,
|
||
|
},
|
||
|
animation = {
|
||
|
speed_normal = 25, speed_run = 50,
|
||
|
stand_start = 0, stand_end = 0,
|
||
|
walk_start = 0, walk_end = 40,
|
||
|
run_start = 0, run_end = 40,
|
||
|
},
|
||
|
|
||
|
view_range = 16,
|
||
|
})
|
||
|
|
||
|
|
||
|
-- compatibility
|
||
|
mobs:alias_mob("mobs_mc:polarbear", "mobs_mc:polar_bear")
|
||
|
|
||
|
|
||
|
mobs:register_spawn("mobs_mc:polar_bear", mobs_mc.spawn.snow, minetest.LIGHT_MAX+1, 0, 7000, 3, 31000)
|
||
|
|
||
|
|
||
|
-- spawn egg
|
||
|
|
||
|
|
||
|
|
||
|
mobs:register_egg("mobs_mc:polar_bear", S("Polar Bear"), "mobs_mc_spawn_icon_polarbear.png", 0)
|
||
|
|
||
|
|
||
|
if minetest.settings:get_bool("log_mods") then
|
||
|
minetest.log("action", "MC Polar Bear loaded")
|
||
|
end
|