2020-09-21 10:48:45 +02:00
|
|
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
|
|
|
|
2022-01-20 09:55:41 +01:00
|
|
|
-- Check for translation method
|
|
|
|
local S
|
|
|
|
if minetest.get_translator ~= nil then
|
|
|
|
S = minetest.get_translator("mobs_animal") -- 5.x translation function
|
|
|
|
else
|
|
|
|
if minetest.get_modpath("intllib") then
|
|
|
|
dofile(minetest.get_modpath("intllib") .. "/init.lua")
|
|
|
|
if intllib.make_gettext_pair then
|
2022-09-27 10:15:59 +02:00
|
|
|
S = intllib.make_gettext_pair() -- new gettext method
|
2022-01-20 09:55:41 +01:00
|
|
|
else
|
2022-09-27 10:15:59 +02:00
|
|
|
S = intllib.Getter() -- old text file method
|
2022-01-20 09:55:41 +01:00
|
|
|
end
|
|
|
|
else -- boilerplate function
|
|
|
|
S = function(str, ...)
|
|
|
|
local args = {...}
|
|
|
|
return str:gsub("@%d+", function(match)
|
|
|
|
return args[tonumber(match:sub(2))]
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-09-21 10:48:45 +02:00
|
|
|
|
2022-01-20 09:55:41 +01:00
|
|
|
mobs.intllib_animal = S
|
2016-06-11 12:14:08 +02:00
|
|
|
|
2020-09-21 10:48:45 +02:00
|
|
|
|
|
|
|
-- Check for custom mob spawn file
|
|
|
|
local input = io.open(path .. "spawn.lua", "r")
|
|
|
|
|
|
|
|
if input then
|
|
|
|
mobs.custom_spawn_animal = true
|
|
|
|
input:close()
|
|
|
|
input = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
-- Animals
|
2020-09-21 10:48:45 +02:00
|
|
|
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 .. "penguin.lua") -- D00Med
|
|
|
|
dofile(path .. "panda.lua") -- AspireMint
|
|
|
|
|
|
|
|
|
|
|
|
-- Load custom spawning
|
|
|
|
if mobs.custom_spawn_animal then
|
|
|
|
dofile(path .. "spawn.lua")
|
|
|
|
end
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2020-08-25 10:56:14 +02:00
|
|
|
-- Lucky Blocks
|
2022-09-27 10:15:59 +02:00
|
|
|
if minetest.get_modpath("lucky_block") then
|
|
|
|
dofile(path .. "lucky_block.lua")
|
|
|
|
end
|
2020-09-21 10:48:45 +02:00
|
|
|
|
2016-12-01 19:40:17 +01:00
|
|
|
|
2021-11-14 15:22:15 +01:00
|
|
|
print ("[MOD] Mobs Redo Animals loaded")
|