smart_mobs/warthog.lua

78 lines
1.7 KiB
Lua
Raw Normal View History

-- Warthog by KrupnoPavel
2014-11-09 11:13:11 -08:00
mobs:register_mob("mobs:pumba", {
type = "animal",
passive = false,
attack_type = "dogfight",
2015-10-12 11:14:36 -07:00
group_attack = true,
reach = 2,
damage = 2,
2015-04-09 08:09:10 -07:00
hp_min = 5,
hp_max = 15,
armor = 200,
2014-11-09 11:13:11 -08:00
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
visual = "mesh",
mesh = "mobs_pumba.x",
textures = {
{"mobs_pumba.png"},
2014-12-03 11:45:18 -08:00
},
2014-11-09 11:13:11 -08:00
makes_footstep_sound = true,
sounds = {
random = "mobs_pig",
attack = "mobs_pig_angry",
},
2014-11-09 11:13:11 -08:00
walk_velocity = 2,
2015-03-05 05:08:08 -08:00
run_velocity = 3,
jump = true,
follow = {"default:apple", "farming:potato"},
view_range = 10,
2014-11-09 11:13:11 -08:00
drops = {
{name = "mobs:pork_raw",
2015-11-13 02:18:36 -08:00
chance = 1, min = 1, max = 3},
2014-11-09 11:13:11 -08:00
},
water_damage = 1,
lava_damage = 5,
light_damage = 0,
2016-02-07 13:31:59 -08:00
fear_height = 6,
2014-11-09 11:13:11 -08:00
animation = {
speed_normal = 15,
2015-07-03 07:18:28 -07:00
stand_start = 25,
stand_end = 55,
walk_start = 70,
walk_end = 100,
punch_start = 70,
punch_end = 100,
2014-11-09 11:13:11 -08:00
},
on_rightclick = function(self, clicker)
if mobs:feed_tame(self, clicker, 8, true, true) then
return
end
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
2014-11-09 11:13:11 -08:00
end,
})
2015-04-09 08:09:10 -07:00
2015-11-23 09:03:39 -08:00
mobs:register_spawn("mobs:pumba", {"ethereal:mushroom_dirt", "default:dirt_with_dry_grass"}, 20, 10, 15000, 2, 31000)
2015-04-09 08:09:10 -07:00
2015-02-20 08:37:36 -08:00
mobs:register_egg("mobs:pumba", "Warthog", "wool_pink.png", 1)
2014-11-09 11:13:11 -08:00
2015-07-03 07:18:28 -07:00
-- raw porkchop
2014-11-09 11:13:11 -08: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 07:18:28 -07:00
-- cooked porkchop
2014-11-09 11:13:11 -08: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 07:18:28 -07:00
})