mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
4645ef3cb5
- api.lua (many improves, chicken egg more frequent, NPC attack nearly mobs, textures code, etc…) - Bee (spawn on group:flower now, textures code updated) - Bunny (textures code updated) - Chicken (two times more eggs, textures code updated) - Cow (textures code updated) - Creeper (finish reorganize the code, textures code updated, new eggs inventory texture) - Dirt Monster (textures code updated) - Dungeon Master (textures code updated) - init.lua (small credits tweaks) - Kitten (textures code updated, now drop sometimes farming:string) - Lava Flan (textures code updated, now 3 can spawn per chunck) - Mese Monster (textures code updated) - NPC (textures code updated, revert give raw meat versus health code for tests) - Oerkki (textures code updated, now 1 light damage) - Rat (textures code updated) - Sand Monster (textures code updated) - Sheep (textures code updated, now give 2 to 3 wool when sheared) - Spider (textures code updated, change credits, comments our modifications) - Stone Monster (textures code updated) - Tree Monster (textures code updated) - Warthog (textures code updated) - Wolf (finish reorganize the code, textures code updated, add spawner egg and an inventory texture) - Tweaks some sounds
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") -- 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,
|
|
})
|
|
|
|
if minetest.setting_get("log_mods") then
|
|
minetest.log("action", "mobs loaded")
|
|
end
|