mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 18:10:26 +01:00
2029fd7428
- Prepared the update of Minotaur (renamed this mob minotaur) - NPC tamed with 4 diamonds now do 4 damage (before 6) - Wolf can now be tamed in exchange of 4 "raw_meat" and become dog, the dog can be healed with "raw_meat" (need to be change, maybe conflicted) - The dog mob is less powerful than the wolf (-2 damage, less walk/run velocity) => the explanation for this "nerf" is simple, the dog is almost free, compared to the NPC who costs 4 diamonds ! :) - Add one sound when wolfs attack - One small fix for the zombie monster - Add a pre-alpha version of yeti, many things missing for the moment (yeti is a monster who spawns in snow biome and attack wit snowball)
65 lines
1.5 KiB
Lua
65 lines
1.5 KiB
Lua
|
|
-- Rat by PilzAdam
|
|
|
|
mobs:register_mob("mobs:rat", {
|
|
-- animal, monster, npc, barbarian
|
|
type = "animal",
|
|
-- not aggressive
|
|
passive = true,
|
|
-- health & armor
|
|
hp_min = 1,
|
|
hp_max = 4,
|
|
armor = 200,
|
|
-- textures and model
|
|
collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.2, 0.2},
|
|
visual = "mesh",
|
|
mesh = "mobs_rat.x",
|
|
textures = {
|
|
{"mobs_rat.png"},
|
|
{"mobs_rat_brown.png"},
|
|
},
|
|
blood_texture = "mobs_blood.png",
|
|
-- sounds
|
|
makes_footstep_sound = false,
|
|
sounds = {
|
|
random = "mobs_rat",
|
|
},
|
|
-- speed and jump
|
|
walk_velocity = 1,
|
|
jump = true,
|
|
-- no drops
|
|
drops = {},
|
|
-- damaged by
|
|
water_damage = 0,
|
|
lava_damage = 4,
|
|
light_damage = 0,
|
|
-- right click to pick up rat
|
|
on_rightclick = function(self, clicker)
|
|
if clicker:is_player()
|
|
and clicker:get_inventory()
|
|
and self.child == false
|
|
and clicker:get_inventory():room_for_item("main", "mobs:rat") then
|
|
clicker:get_inventory():add_item("main", "mobs:rat")
|
|
self.object:remove()
|
|
end
|
|
end,
|
|
})
|
|
-- spawn on stone between 1 and 20 light, 1 in 7000 chance, 1 per area up to 31000 in height
|
|
mobs:register_spawn("mobs:rat", {"default:stone"}, 20, 0, 10000, 1, 31000)
|
|
-- register spawn egg
|
|
mobs:register_egg("mobs:rat", "Rat", "mobs_rat_inventory.png", 0)
|
|
|
|
-- cooked rat, yummy!
|
|
minetest.register_craftitem("mobs:rat_cooked", {
|
|
description = "Cooked Rat",
|
|
inventory_image = "mobs_cooked_rat.png",
|
|
on_use = minetest.item_eat(3),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "mobs:rat_cooked",
|
|
recipe = "mobs:rat",
|
|
cooktime = 5,
|
|
})
|