forked from mtcontrib/mobs_animal
update translation checks
This commit is contained in:
21
warthog.lua
21
warthog.lua
@ -1,6 +1,5 @@
|
||||
|
||||
local S = mobs.intllib
|
||||
|
||||
local S = mobs.intllib_animal
|
||||
|
||||
-- Warthog originally by KrupnoPavel, B3D model by sirrobzeroone
|
||||
|
||||
@ -21,12 +20,12 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
visual = "mesh",
|
||||
mesh = "mobs_pumba.b3d",
|
||||
textures = {
|
||||
{"mobs_pumba.png"},
|
||||
{"mobs_pumba.png"}
|
||||
},
|
||||
makes_footstep_sound = true,
|
||||
sounds = {
|
||||
random = "mobs_pig",
|
||||
attack = "mobs_pig_angry",
|
||||
attack = "mobs_pig_angry"
|
||||
},
|
||||
walk_velocity = 2,
|
||||
run_velocity = 3,
|
||||
@ -36,7 +35,7 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
follow = {"default:apple", "farming:potato"},
|
||||
view_range = 10,
|
||||
drops = {
|
||||
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3},
|
||||
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3}
|
||||
},
|
||||
water_damage = 0,
|
||||
lava_damage = 5,
|
||||
@ -55,14 +54,14 @@ mobs:register_mob("mobs_animal:pumba", {
|
||||
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,
|
||||
die_rotate = true
|
||||
},
|
||||
on_rightclick = function(self, clicker)
|
||||
|
||||
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
|
||||
end,
|
||||
end
|
||||
})
|
||||
|
||||
local spawn_on = {"default:dirt_with_grass"}
|
||||
@ -88,7 +87,7 @@ mobs:spawn({
|
||||
chance = 8000, -- 15000
|
||||
min_height = 0,
|
||||
max_height = 200,
|
||||
day_toggle = true,
|
||||
day_toggle = true
|
||||
})
|
||||
end
|
||||
|
||||
@ -103,7 +102,7 @@ minetest.register_craftitem(":mobs:pork_raw", {
|
||||
description = S("Raw Porkchop"),
|
||||
inventory_image = "mobs_pork_raw.png",
|
||||
on_use = minetest.item_eat(4),
|
||||
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2},
|
||||
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2}
|
||||
})
|
||||
|
||||
-- cooked porkchop
|
||||
@ -111,12 +110,12 @@ minetest.register_craftitem(":mobs:pork_cooked", {
|
||||
description = S("Cooked Porkchop"),
|
||||
inventory_image = "mobs_pork_cooked.png",
|
||||
on_use = minetest.item_eat(8),
|
||||
groups = {food_meat = 1, food_pork = 1, flammable = 2},
|
||||
groups = {food_meat = 1, food_pork = 1, flammable = 2}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mobs:pork_cooked",
|
||||
recipe = "mobs:pork_raw",
|
||||
cooktime = 5,
|
||||
cooktime = 5
|
||||
})
|
||||
|
Reference in New Issue
Block a user