mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 18:10:26 +01:00
crabman77
167a0fe2e3
convert mobs sounds, stereo to mono, 48kb,44100KHz. before 1,2 Mo, after 833,5 ko
64 lines
1.8 KiB
Lua
Executable File
64 lines
1.8 KiB
Lua
Executable File
local path = minetest.get_modpath("mobs")
|
|
|
|
-- Mob Api
|
|
|
|
dofile(path.."/api.lua")
|
|
|
|
-- Animals
|
|
|
|
dofile(path.."/chicken.lua") -- JKmurray
|
|
dofile(path.."/cow.lua") -- KrupnoPavel
|
|
dofile(path.."/rat.lua") -- PilzAdam
|
|
dofile(path.."/sheep.lua") -- PilzAdam
|
|
dofile(path.."/warthog.lua") -- KrupnoPavel
|
|
dofile(path.."/bee.lua") -- KrupnoPavel
|
|
dofile(path.."/bunny.lua") -- ExeterDad
|
|
dofile(path.."/kitten.lua") -- Jordach/BFD
|
|
dofile(path.."/goat.lua") -- ???
|
|
|
|
-- Monsters
|
|
|
|
dofile(path.."/dirtmonster.lua") -- PilzAdam
|
|
dofile(path.."/dungeonmaster.lua") -- PilzAdam
|
|
dofile(path.."/oerkki.lua") -- PilzAdam
|
|
dofile(path.."/sandmonster.lua") -- PilzAdam
|
|
dofile(path.."/stonemonster.lua") -- PilzAdam
|
|
dofile(path.."/treemonster.lua") -- PilzAdam
|
|
dofile(path.."/wolf.lua") -- PilzAdam
|
|
dofile(path.."/dog.lua") -- CProgrammerRU
|
|
--dofile(path.."/lava_flan.lua") -- Zeg9 --Remplaced by Lava Slimes
|
|
dofile(path.."/mese_monster.lua") -- Zeg9
|
|
dofile(path.."/spider.lua") -- AspireMint
|
|
dofile(path.."/greenslimes.lua") -- davedevils/TomasJLuis/TenPlus1
|
|
dofile(path.."/lavaslimes.lua") -- davedevils/TomasJLuis/TenPlus1
|
|
dofile(path.."/zombie.lua") -- ???
|
|
dofile(path.."/yeti.lua") -- ???
|
|
dofile(path.."/minotaur.lua") -- Kalabasa
|
|
|
|
-- begin slimes mobs compatibility changes
|
|
-- cannot find mesecons?, craft glue instead
|
|
if not minetest.get_modpath("mesecons_materials") then
|
|
minetest.register_craftitem(":mesecons_materials:glue", {
|
|
image = "jeija_glue.png",
|
|
description = "Glue",
|
|
})
|
|
end
|
|
|
|
if minetest.setting_get("log_mods") then minetest.log("action", "Slimes loaded") end
|
|
-- end slimes mobs compatibility changes
|
|
|
|
-- NPC
|
|
dofile(path.."/npc.lua") -- TenPlus1
|
|
dofile(path.."/npc_female.lua") -- nuttmeg20
|
|
|
|
-- Creeper (fast impl by davedevils)
|
|
dofile(path.."/creeper.lua")
|
|
|
|
-- Mob Items
|
|
dofile(path.."/crafts.lua")
|
|
|
|
-- Mob menu spawner special MFF
|
|
dofile(path.."/mff_menu.lua")
|
|
|
|
print ("[MOD] Mobs Redo loaded")
|