2022-11-23 03:56:33 +01:00
|
|
|
-- Minetest 5.0 mod: too many stones
|
|
|
|
-- See README.txt for licensing and other information.
|
|
|
|
|
|
|
|
-- Load support for MT game translation.
|
|
|
|
local S = minetest.get_translator("too_many_stones")
|
|
|
|
|
|
|
|
-- Definitions made by this mod that other mods can use too
|
|
|
|
too_many_stones = {}
|
|
|
|
|
|
|
|
default.LIGHT_MAX = 14
|
|
|
|
default.get_translator = S
|
|
|
|
|
|
|
|
-- Load files
|
|
|
|
local default_path = minetest.get_modpath("too_many_stones")
|
|
|
|
|
|
|
|
dofile(default_path.."/nodes.lua")
|
2022-12-03 00:54:55 +01:00
|
|
|
dofile(default_path.."/nodes_ore.lua")
|
2022-11-23 03:56:33 +01:00
|
|
|
dofile(default_path.."/crafting.lua")
|
|
|
|
dofile(default_path.."/mapgen.lua")
|
2022-12-03 00:54:55 +01:00
|
|
|
dofile(default_path.."/mapgen_ore.lua")
|
2022-11-23 03:56:33 +01:00
|
|
|
dofile(default_path.."/wall.lua")
|
|
|
|
dofile(default_path.."/stairs.lua")
|