1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-14 08:40:23 +02:00
server-nalc/mods/mobs/warthog.lua

122 lines
2.9 KiB
Lua
Raw Normal View History

-- Warthog by KrupnoPavel
2014-10-28 18:01:32 +01:00
mobs:register_mob("mobs:pumba", {
-- animal, monster, npc, barbarian
2014-10-28 18:01:32 +01:00
type = "animal",
2015-03-26 20:08:30 +01:00
-- aggressive, deals 5 damage to player when threatened
passive = false,
group_attack = true,
attack_type = "dogfight",
damage = 4,
-- health & armor
hp_min = 15,
hp_max = 20,
armor = 200,
-- textures and model
2014-10-28 18:01:32 +01: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-10 16:44:45 +01:00
},
visual_size = {x=1,y=1},
blood_texture = "mobs_blood.png",
-- sounds
2014-10-28 18:01:32 +01:00
makes_footstep_sound = true,
sounds = {
random = "mobs_pig",
attack = "mobs_pig_angry",
},
-- speed and jump
2014-10-28 18:01:32 +01:00
walk_velocity = 2,
run_velocity = 3,
jump = true,
-- follows apple
follow = "default:apple",
view_range = 8,
-- drops raw pork when dead
2014-10-28 18:01:32 +01:00
drops = {
{name = "mobs:pork_raw",
chance = 1, min = 2, max = 3,},
{name = "maptools:silver_coin",
chance = 10, min = 1, max = 1,},
2014-10-28 18:01:32 +01:00
},
-- damaged by
2014-10-28 18:01:32 +01:00
water_damage = 1,
lava_damage = 5,
light_damage = 0,
-- model animation
2014-10-28 18:01:32 +01:00
animation = {
speed_normal = 15,
stand_start = 25, stand_end = 55,
walk_start = 70, walk_end = 100,
punch_start = 70, punch_end = 100,
2014-10-28 18:01:32 +01:00
},
-- can be tamed by feeding 8 wheat (will not attack when tamed)
2014-10-28 18:01:32 +01:00
on_rightclick = function(self, clicker)
local item = clicker:get_wielded_item()
local name = clicker:get_player_name()
if item:get_name() == "default:apple" then
-- take item
2014-10-28 18:01:32 +01:00
if not minetest.setting_getbool("creative_mode") then
item:take_item()
clicker:set_wielded_item(item)
end
-- make child grow quicker
if self.child == true then
self.hornytimer = self.hornytimer + 10
return
end
-- feed and tame
2014-10-28 18:01:32 +01:00
self.food = (self.food or 0) + 1
if self.food > 7 then
2014-10-28 18:01:32 +01:00
self.food = 0
if self.hornytimer == 0 then
self.horny = true
end
2014-10-28 18:01:32 +01:00
self.tamed = true
-- make owner
if self.owner == "" then
self.owner = name
end
minetest.sound_play("mobs_pig", {
object = self.object,
gain = 1.0,
max_hear_distance = 16,
loop = false,
})
2014-10-28 18:01:32 +01:00
end
return
end
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
2014-10-28 18:01:32 +01:00
end,
})
-- spawns on dirt or junglegrass, between 8 and 20 light, 1 in 10000 chance, 1 in area up to 31000 in height
mobs:spawn_specific("mobs:pumba", {"default:dirt", "default:junglegrass"}, {"air"}, 8, 20, 30, 10000, 1, -31000, 31000, true)
-- register spawn egg
mobs:register_egg("mobs:pumba", "Warthog", "wool_pink.png", 1)
2014-10-28 18:01:32 +01:00
-- porkchop (raw and cooked)
2014-10-28 18:01:32 +01:00
minetest.register_craftitem("mobs:pork_raw", {
description = "Raw Porkchop",
inventory_image = "mobs_pork_raw.png",
on_use = minetest.item_eat(4),
})
2015-07-16 00:15:56 +02:00
-- cooked porkchop
2014-10-28 18:01:32 +01: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,
})