2015-03-05 19:20:51 +00:00
|
|
|
|
|
|
|
-- Warthog by KrupnoPavel
|
2014-11-09 19:13:11 +00:00
|
|
|
|
|
|
|
mobs:register_mob("mobs:pumba", {
|
|
|
|
type = "animal",
|
2015-03-05 19:20:51 +00:00
|
|
|
passive = false,
|
|
|
|
attack_type = "dogfight",
|
2015-10-12 19:14:36 +01:00
|
|
|
group_attack = true,
|
2015-09-24 18:36:23 +01:00
|
|
|
reach = 2,
|
2015-03-05 19:20:51 +00:00
|
|
|
damage = 2,
|
2015-04-09 16:09:10 +01:00
|
|
|
hp_min = 5,
|
|
|
|
hp_max = 15,
|
|
|
|
armor = 200,
|
2014-11-09 19:13:11 +00:00
|
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
|
2015-03-05 19:20:51 +00:00
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_pumba.x",
|
2015-03-18 20:55:50 +00:00
|
|
|
textures = {
|
|
|
|
{"mobs_pumba.png"},
|
2014-12-03 19:45:18 +00:00
|
|
|
},
|
2014-11-09 19:13:11 +00:00
|
|
|
makes_footstep_sound = true,
|
2015-03-05 19:20:51 +00:00
|
|
|
sounds = {
|
|
|
|
random = "mobs_pig",
|
2015-03-06 09:59:56 +00:00
|
|
|
attack = "mobs_pig_angry",
|
2015-03-05 19:20:51 +00:00
|
|
|
},
|
2014-11-09 19:13:11 +00:00
|
|
|
walk_velocity = 2,
|
2015-03-05 13:08:08 +00:00
|
|
|
run_velocity = 3,
|
2015-03-05 19:20:51 +00:00
|
|
|
jump = true,
|
2015-08-13 16:23:48 +01:00
|
|
|
follow = {"default:apple", "farming:potato"},
|
2015-03-06 09:59:56 +00:00
|
|
|
view_range = 10,
|
2014-11-09 19:13:11 +00:00
|
|
|
drops = {
|
|
|
|
{name = "mobs:pork_raw",
|
2015-11-13 10:18:36 +00:00
|
|
|
chance = 1, min = 1, max = 3},
|
2014-11-09 19:13:11 +00:00
|
|
|
},
|
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 5,
|
|
|
|
light_damage = 0,
|
|
|
|
animation = {
|
|
|
|
speed_normal = 15,
|
2015-07-03 15:18:28 +01:00
|
|
|
stand_start = 25,
|
|
|
|
stand_end = 55,
|
|
|
|
walk_start = 70,
|
|
|
|
walk_end = 100,
|
|
|
|
punch_start = 70,
|
|
|
|
punch_end = 100,
|
2014-11-09 19:13:11 +00:00
|
|
|
},
|
|
|
|
on_rightclick = function(self, clicker)
|
2015-09-18 21:31:16 +01:00
|
|
|
mobs:feed_tame(self, clicker, 8, true, true)
|
2015-06-28 11:31:19 +01:00
|
|
|
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
|
2014-11-09 19:13:11 +00:00
|
|
|
end,
|
|
|
|
})
|
2015-04-09 16:09:10 +01:00
|
|
|
|
2015-09-30 16:39:41 +01:00
|
|
|
mobs:register_spawn("mobs:pumba", {"ethereal:mushroom_dirt", "default:dirt_with_dry_grass"}, 20, 10, 15000, 1, 31000)
|
2015-04-09 16:09:10 +01:00
|
|
|
|
2015-02-20 16:37:36 +00:00
|
|
|
mobs:register_egg("mobs:pumba", "Warthog", "wool_pink.png", 1)
|
2014-11-09 19:13:11 +00:00
|
|
|
|
2015-07-03 15:18:28 +01:00
|
|
|
-- raw porkchop
|
2014-11-09 19:13:11 +00:00
|
|
|
minetest.register_craftitem("mobs:pork_raw", {
|
|
|
|
description = "Raw Porkchop",
|
|
|
|
inventory_image = "mobs_pork_raw.png",
|
|
|
|
on_use = minetest.item_eat(4),
|
|
|
|
})
|
|
|
|
|
2015-07-03 15:18:28 +01:00
|
|
|
-- cooked porkchop
|
2014-11-09 19:13:11 +00:00
|
|
|
minetest.register_craftitem("mobs:pork_cooked", {
|
|
|
|
description = "Cooked Porkchop",
|
|
|
|
inventory_image = "mobs_pork_cooked.png",
|
|
|
|
on_use = minetest.item_eat(8),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:pork_cooked",
|
|
|
|
recipe = "mobs:pork_raw",
|
|
|
|
cooktime = 5,
|
2015-07-03 15:18:28 +01:00
|
|
|
})
|