mobs_animal/rat.lua

107 lines
2.1 KiB
Lua
Raw Permalink Normal View History

2023-08-13 11:56:57 +02:00
-- Translation support
local S = minetest.get_translator("mobs_animal")
2022-09-27 10:15:59 +02:00
-- Rat by KPavel and PilzAdam (B3D model by sirrobzeroone)
2016-04-15 15:59:43 +02:00
mobs:register_mob("mobs_animal:rat", {
stepheight = 0.6,
2016-04-15 15:59:43 +02:00
type = "animal",
passive = true,
hp_min = 1,
hp_max = 4,
armor = 200,
collisionbox = {-0.2, -1, -0.2, 0.2, -0.8, 0.2},
visual = "mesh",
mesh = "mobs_rat.b3d",
textures = {
{"mobs_rat.png"},
2022-09-27 10:15:59 +02:00
{"mobs_rat2.png"}
2016-04-15 15:59:43 +02:00
},
makes_footstep_sound = false,
sounds = {
2022-09-27 10:15:59 +02:00
random = "mobs_rat"
2016-04-15 15:59:43 +02:00
},
walk_velocity = 1,
run_velocity = 2,
runaway = true,
jump = true,
water_damage = 0,
lava_damage = 4,
light_damage = 0,
fear_height = 2,
2022-09-27 10:15:59 +02:00
2016-04-15 15:59:43 +02:00
on_rightclick = function(self, clicker)
mobs:capture_mob(self, clicker, 50, 90, 0, true, "mobs_animal:rat")
2016-04-15 15:59:43 +02:00
end,
--[[
2016-05-06 12:19:28 +02:00
do_custom = function(self, dtime)
self.rat_timer = (self.rat_timer or 0) + dtime
if self.rat_timer < 1 then return end -- every 1 second
self.rat_timer = 0
2017-10-09 16:16:05 +02:00
local pos = self.object:get_pos()
2016-05-06 12:19:28 +02:00
print("rat pos", pos.x, pos.y, pos.z, dtime)
2016-06-11 09:39:26 +02:00
return false -- return but skip doing rest of API
2016-04-15 15:59:43 +02:00
end,
2016-05-01 20:41:08 +02:00
]]
--[[
2016-05-01 11:44:20 +02:00
on_blast = function(obj, damage)
print ("--- damage is", damage)
2016-05-01 20:41:08 +02:00
print ("--- mob is", obj.object:get_luaentity().name)
2016-05-01 11:44:20 +02:00
-- return's do_damage, do_knockback and drops
2016-05-01 20:41:08 +02:00
return false, true, {"default:mese"}
2016-05-01 11:44:20 +02:00
end,
2016-05-01 20:41:08 +02:00
]]
2016-04-15 15:59:43 +02:00
})
2022-09-27 10:15:59 +02:00
-- example on_spawn function
2016-10-09 10:12:50 +02:00
local function rat_spawn(self, pos)
self = self:get_luaentity()
print (self.name, pos.x, pos.y, pos.z)
self.hp_max = 100
self.health = 100
2016-10-09 10:12:50 +02:00
end
2022-09-27 10:15:59 +02:00
if not mobs.custom_spawn_animal then
2022-09-27 10:15:59 +02:00
mobs:spawn({
name = "mobs_animal:rat",
nodes = {"default:stone"},
min_light = 3,
max_light = 9,
interval = 60,
chance = 8000,
max_height = 0,
-- on_spawn = rat_spawn,
})
end
2016-04-15 15:59:43 +02:00
mobs:register_egg("mobs_animal:rat", S("Rat"), "mobs_rat_inv.png")
2016-04-15 15:59:43 +02:00
mobs:alias_mob("mobs:rat", "mobs_animal:rat") -- compatibility
2016-04-15 15:59:43 +02:00
-- cooked rat, yummy!
minetest.register_craftitem(":mobs:rat_cooked", {
2016-06-11 12:14:08 +02:00
description = S("Cooked Rat"),
2016-04-15 15:59:43 +02:00
inventory_image = "mobs_cooked_rat.png",
on_use = minetest.item_eat(3),
2021-04-13 22:13:35 +02:00
groups = {food_rat = 1, flammable = 2}
2016-04-15 15:59:43 +02:00
})
minetest.register_craft({
type = "cooking",
output = "mobs:rat_cooked",
2018-01-22 17:05:29 +01:00
recipe = "mobs_animal:rat",
2021-04-13 22:13:35 +02:00
cooktime = 5
2016-04-15 15:59:43 +02:00
})