mobs_animal/warthog.lua

127 lines
2.9 KiB
Lua
Raw Permalink Normal View History

2023-08-13 11:56:57 +02:00
-- Translation support
local S = minetest.get_translator("mobs_animal")
2022-09-27 10:15:59 +02:00
-- Warthog originally by KrupnoPavel, B3D model by sirrobzeroone
2016-04-15 15:59:43 +02:00
mobs:register_mob("mobs_animal:pumba", {
2019-01-24 12:11:25 +01:00
stepheight = 0.6,
2016-04-15 15:59:43 +02:00
type = "animal",
passive = false,
attack_type = "dogfight",
group_attack = true,
2017-05-12 11:01:43 +02:00
owner_loyal = true,
2018-06-27 10:42:26 +02:00
attack_npcs = false,
2016-04-15 15:59:43 +02:00
reach = 2,
damage = 2,
hp_min = 5,
hp_max = 15,
armor = 200,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 0.95, 0.4},
2016-04-15 15:59:43 +02:00
visual = "mesh",
mesh = "mobs_pumba.b3d",
2016-04-15 15:59:43 +02:00
textures = {
2022-01-20 09:55:41 +01:00
{"mobs_pumba.png"}
2016-04-15 15:59:43 +02:00
},
makes_footstep_sound = true,
sounds = {
random = "mobs_pig",
2022-01-20 09:55:41 +01:00
attack = "mobs_pig_angry"
2016-04-15 15:59:43 +02:00
},
walk_velocity = 2,
run_velocity = 3,
jump = true,
jump_height = 6,
2018-09-14 18:12:22 +02:00
pushable = true,
2016-04-15 15:59:43 +02:00
follow = {"default:apple", "farming:potato"},
view_range = 10,
drops = {
2022-01-20 09:55:41 +01:00
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3}
2016-04-15 15:59:43 +02:00
},
water_damage = 0.01,
2016-04-15 15:59:43 +02:00
lava_damage = 5,
light_damage = 0,
fear_height = 2,
animation = {
speed_normal = 15,
stand_start = 25,
stand_end = 55,
walk_start = 70,
walk_end = 100,
punch_start = 70,
punch_end = 100,
2021-01-08 11:15:40 +01:00
die_start = 1, -- we dont have a specific death animation so we will
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
die_speed = 1, -- have mob rotate when dying.
die_loop = false,
2022-01-20 09:55:41 +01:00
die_rotate = true
2016-04-15 15:59:43 +02:00
},
2022-09-27 10:15:59 +02:00
2016-04-15 15:59:43 +02:00
on_rightclick = function(self, clicker)
2017-04-27 15:00:57 +02:00
if mobs:feed_tame(self, clicker, 8, true, true) then return end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 0, 5, 50, false, nil) then return end
2022-01-20 09:55:41 +01:00
end
2016-04-15 15:59:43 +02:00
})
2022-09-27 10:15:59 +02:00
local spawn_on = {"default:dirt_with_grass"}
local spawn_by = {"group:grass"}
if minetest.get_mapgen_setting("mg_name") ~= "v6" then
spawn_on = {"default:dirt_with_dry_grass", "default:dry_dirt_with_dry_grass"}
spawn_by = {"group:dry_grass"}
end
if minetest.get_modpath("ethereal") then
spawn_on = {"ethereal:mushroom_dirt"}
2020-06-19 11:57:26 +02:00
spawn_by = {"flowers:mushroom_brown", "flowers:mushroom_red"}
end
if not mobs.custom_spawn_animal then
2022-09-27 10:15:59 +02:00
mobs:spawn({
name = "mobs_animal:pumba",
nodes = spawn_on,
neighbors = spawn_by,
min_light = 14,
interval = 60,
chance = 8000,
min_height = 0,
max_height = 200,
day_toggle = true
})
end
2022-09-27 10:15:59 +02:00
-- spawn egg
mobs:register_egg("mobs_animal:pumba", S("Warthog"), "mobs_pumba_inv.png")
2016-04-15 15:59:43 +02:00
mobs:alias_mob("mobs:pumba", "mobs_animal:pumba") -- compatibility
2016-04-15 15:59:43 +02:00
-- raw porkchop
minetest.register_craftitem(":mobs:pork_raw", {
2016-06-11 12:14:08 +02:00
description = S("Raw Porkchop"),
2016-04-15 15:59:43 +02:00
inventory_image = "mobs_pork_raw.png",
on_use = minetest.item_eat(4),
2022-01-20 09:55:41 +01:00
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2}
2016-04-15 15:59:43 +02:00
})
-- cooked porkchop
minetest.register_craftitem(":mobs:pork_cooked", {
2016-06-11 12:14:08 +02:00
description = S("Cooked Porkchop"),
2016-04-15 15:59:43 +02:00
inventory_image = "mobs_pork_cooked.png",
on_use = minetest.item_eat(8),
2022-01-20 09:55:41 +01:00
groups = {food_meat = 1, food_pork = 1, flammable = 2}
2016-04-15 15:59:43 +02:00
})
minetest.register_craft({
type = "cooking",
output = "mobs:pork_cooked",
recipe = "mobs:pork_raw",
2022-01-20 09:55:41 +01:00
cooktime = 5
2016-04-15 15:59:43 +02:00
})