mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-07 02:50:26 +01:00
7c27dda103
- Bunnies eat savage carrots - Now, you need mobs:shears(ciseaux) if you want take the sheep’s wool, - Kittens now follow rat and be tamed if they eat 4 fish_raw (obtained when fishing) - Kittens now can be picked with right click, and stored in inventory (like chickens) —> SYNC WITHOUT API.LUA <—
65 lines
1.9 KiB
Lua
Executable File
65 lines
1.9 KiB
Lua
Executable File
-- Mob Api
|
|
|
|
dofile(minetest.get_modpath("mobs").."/api.lua")
|
|
|
|
-- Animals inc. Krupnovpavel's warthog/bee, JKmurray's chicken, ExeterDad's bunny, Jordach/BFD's kitten
|
|
|
|
dofile(minetest.get_modpath("mobs").."/chicken.lua")
|
|
dofile(minetest.get_modpath("mobs").."/cow.lua")
|
|
dofile(minetest.get_modpath("mobs").."/rat.lua")
|
|
dofile(minetest.get_modpath("mobs").."/sheep.lua")
|
|
dofile(minetest.get_modpath("mobs").."/warthog.lua")
|
|
dofile(minetest.get_modpath("mobs").."/bee.lua")
|
|
dofile(minetest.get_modpath("mobs").."/bunny.lua")
|
|
dofile(minetest.get_modpath("mobs").."/kitten.lua")
|
|
|
|
-- Monsters
|
|
|
|
dofile(minetest.get_modpath("mobs").."/dirtmonster.lua")
|
|
dofile(minetest.get_modpath("mobs").."/dungeonmaster.lua")
|
|
dofile(minetest.get_modpath("mobs").."/oerkki.lua")
|
|
dofile(minetest.get_modpath("mobs").."/sandmonster.lua")
|
|
dofile(minetest.get_modpath("mobs").."/stonemonster.lua")
|
|
dofile(minetest.get_modpath("mobs").."/treemonster.lua")
|
|
dofile(minetest.get_modpath("mobs").."/wolf.lua")
|
|
|
|
-- Zmobs by Zeg9
|
|
|
|
dofile(minetest.get_modpath("mobs").."/lava_flan.lua")
|
|
dofile(minetest.get_modpath("mobs").."/mese_monster.lua")
|
|
|
|
-- Spider from Lord of the Test - https://forum.minetest.net/viewtopic.php?pid=127538
|
|
|
|
dofile(minetest.get_modpath("mobs").."/spider.lua")
|
|
|
|
-- NPC
|
|
dofile(minetest.get_modpath("mobs").."/npc.lua")
|
|
|
|
-- Creeper (fast impl by davedevils)
|
|
dofile(minetest.get_modpath("mobs").."/creeper.lua")
|
|
|
|
-- Meat & Cooked Meat
|
|
|
|
minetest.register_craftitem("mobs:meat_raw", {
|
|
description = "Raw Meat",
|
|
inventory_image = "mobs_meat_raw.png",
|
|
on_use = minetest.item_eat(3),
|
|
})
|
|
|
|
minetest.register_craftitem("mobs:meat", {
|
|
description = "Meat",
|
|
inventory_image = "mobs_meat.png",
|
|
on_use = minetest.item_eat(8),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "mobs:meat",
|
|
recipe = "mobs:meat_raw",
|
|
cooktime = 5,
|
|
})
|
|
|
|
if minetest.setting_get("log_mods") then
|
|
minetest.log("action", "mobs loaded")
|
|
end
|