mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-04 17:40:26 +01:00
59 lines
1.9 KiB
Lua
Executable File
59 lines
1.9 KiB
Lua
Executable File
-- Mob Api
|
|
|
|
dofile(minetest.get_modpath("mobs").."/api.lua")
|
|
|
|
-- Animals
|
|
|
|
dofile(minetest.get_modpath("mobs").."/chicken.lua") -- JKmurray
|
|
dofile(minetest.get_modpath("mobs").."/cow.lua") -- KrupnoPavel
|
|
dofile(minetest.get_modpath("mobs").."/rat.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/sheep.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/warthog.lua") -- KrupnoPavel
|
|
dofile(minetest.get_modpath("mobs").."/bee.lua") -- KrupnoPavel
|
|
dofile(minetest.get_modpath("mobs").."/bunny.lua") -- ExeterDad
|
|
dofile(minetest.get_modpath("mobs").."/kitten.lua") -- Jordach/BFD
|
|
|
|
-- Monsters
|
|
|
|
dofile(minetest.get_modpath("mobs").."/dirtmonster.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/dungeonmaster.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/oerkki.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/sandmonster.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/stonemonster.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/treemonster.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/wolf.lua") -- PilzAdam
|
|
dofile(minetest.get_modpath("mobs").."/lava_flan.lua") -- Zeg9
|
|
dofile(minetest.get_modpath("mobs").."/mese_monster.lua") -- Zeg9
|
|
dofile(minetest.get_modpath("mobs").."/spider.lua") -- https://forum.minetest.net/viewtopic.php?pid=127538
|
|
|
|
-- 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
|