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")
|
|
|
|
dofile(default_path.."/crafting.lua")
|
|
|
|
dofile(default_path.."/mapgen.lua")
|
2023-02-18 01:32:59 +01:00
|
|
|
dofile(default_path.."/mapgen_secondary.lua")
|
2022-11-23 03:56:33 +01:00
|
|
|
dofile(default_path.."/wall.lua")
|
|
|
|
dofile(default_path.."/stairs.lua")
|
2023-01-31 03:32:40 +01:00
|
|
|
dofile(default_path.."/geodes.lua")
|
2023-02-18 01:32:59 +01:00
|
|
|
dofile(default_path.."/geodes_lib.lua")
|
|
|
|
dofile(default_path.."/nodes_glowing.lua")
|
2023-02-28 23:53:46 +01:00
|
|
|
dofile(default_path.."/nodes_crystal.lua")
|
2023-01-31 03:32:40 +01:00
|
|
|
-- dofile(default_path.."/nodes_ore.lua")
|
|
|
|
-- dofile(default_path.."/mapgen_ore.lua")
|