mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-20 01:00:29 +01:00
4e402c7d3b
- npc's follow and stand by order - mob shoot attack rehauled - velocity changes - fixed shoot bug - mob shoot timings fixed - dungeon master plasma balls less laggy - DM plama ball less laggy - added on_die function and jump_height - Added jump_chance for jumping mods, set walk_chance to 0 when in use - added jump mobs, footstep nodes, api tweaks - fixed jump follow and follow jump glitch - Added rotate to mob definition - Reworked breeding - tidied code - added mobs_enable_blood flag in minetest.conf (true/false) - tidied code - Fixed selftimer issue - beehive cannot be eaten (oops) - fixed lifetimer bug - added magic lasso to pick up animals - pets and chicken can be picked up without magic lasso - update version
75 lines
2.3 KiB
Lua
Executable File
75 lines
2.3 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") -- AspireMint
|
|
|
|
-- NPC
|
|
dofile(minetest.get_modpath("mobs").."/npc.lua") -- TenPlus1
|
|
|
|
-- 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,
|
|
})
|
|
|
|
-- Golden Lasso
|
|
|
|
minetest.register_tool("mobs:magic_lasso", {
|
|
description = "Magic Lasso (right-click animal to put in inventory)",
|
|
inventory_image = "mobs_magic_lasso.png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mobs:magic_lasso",
|
|
recipe = {
|
|
{"farming:string", "default:gold_lump", "farming:string"},
|
|
{"default:gold_lump", "default:diamondblock", "default:gold_lump"},
|
|
{"farming:string", "default:gold_lump", "farming:string"},
|
|
}
|
|
})
|
|
|
|
if minetest.setting_get("log_mods") then
|
|
minetest.log("action", "mobs loaded")
|
|
end
|