forked from mtcontrib/mobs_animal
tweak and tidy code
This commit is contained in:
56
warthog.lua
56
warthog.lua
@ -1,4 +1,4 @@
|
||||
-- Translation support
|
||||
|
||||
local S = minetest.get_translator("mobs_animal")
|
||||
|
||||
-- Warthog originally by KrupnoPavel, B3D model by sirrobzeroone
|
||||
@ -19,9 +19,7 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
collisionbox = {-0.4, -0.01, -0.4, 0.4, 0.95, 0.4},
|
||||
visual = "mesh",
|
||||
mesh = "mobs_pumba.b3d",
|
||||
textures = {
|
||||
{"mobs_pumba.png"}
|
||||
},
|
||||
textures = {{"mobs_pumba.png"}},
|
||||
makes_footstep_sound = true,
|
||||
sounds = {
|
||||
random = "mobs_pig",
|
||||
@ -43,18 +41,12 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
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,
|
||||
|
||||
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,
|
||||
die_rotate = true
|
||||
stand_start = 25, stand_end = 55,
|
||||
walk_start = 70, walk_end = 100,
|
||||
punch_start = 70, punch_end = 100,
|
||||
-- no specific dying animation, so use 2 frames at 1fps and rotate
|
||||
die_start = 1, die_end = 2, die_speed = 1,
|
||||
die_loop = false, die_rotate = true
|
||||
},
|
||||
|
||||
on_rightclick = function(self, clicker)
|
||||
@ -65,22 +57,18 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
end
|
||||
})
|
||||
|
||||
|
||||
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"}
|
||||
spawn_by = {"flowers:mushroom_brown", "flowers:mushroom_red"}
|
||||
end
|
||||
-- where to spawn
|
||||
|
||||
if not mobs.custom_spawn_animal then
|
||||
|
||||
local spawn_on = {"default:dirt_with_grass", "default:dry_dirt_with_dry_grass"}
|
||||
local spawn_by = {"group:grass"}
|
||||
|
||||
if minetest.get_modpath("ethereal") then
|
||||
spawn_on = {"ethereal:mushroom_dirt"}
|
||||
spawn_by = {"flowers:mushroom_brown", "flowers:mushroom_red"}
|
||||
end
|
||||
|
||||
mobs:spawn({
|
||||
name = "mobs_animal:pumba",
|
||||
nodes = spawn_on,
|
||||
@ -94,15 +82,16 @@ if not mobs.custom_spawn_animal then
|
||||
})
|
||||
end
|
||||
|
||||
|
||||
-- spawn egg
|
||||
|
||||
mobs:register_egg("mobs_animal:pumba", S("Warthog"), "mobs_pumba_inv.png")
|
||||
|
||||
-- old mobs mod compatibility
|
||||
|
||||
mobs:alias_mob("mobs:pumba", "mobs_animal:pumba") -- compatibility
|
||||
|
||||
mobs:alias_mob("mobs:pumba", "mobs_animal:pumba")
|
||||
|
||||
-- raw porkchop
|
||||
|
||||
minetest.register_craftitem(":mobs:pork_raw", {
|
||||
description = S("Raw Porkchop"),
|
||||
inventory_image = "mobs_pork_raw.png",
|
||||
@ -112,7 +101,8 @@ minetest.register_craftitem(":mobs:pork_raw", {
|
||||
|
||||
mobs.add_eatable("mobs:pork_raw", 4)
|
||||
|
||||
-- cooked porkchop
|
||||
-- cooked porkchop and recipe
|
||||
|
||||
minetest.register_craftitem(":mobs:pork_cooked", {
|
||||
description = S("Cooked Porkchop"),
|
||||
inventory_image = "mobs_pork_cooked.png",
|
||||
|
Reference in New Issue
Block a user