This commit is contained in:
TheOnlyJoeEnderman 2023-03-11 05:10:33 +00:00
parent 444f614461
commit 3ec81e3298
4 changed files with 1136 additions and 8 deletions

View File

@ -14,9 +14,7 @@ dofile(minetest.get_modpath("too_many_stones") .. "/sounds.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/nodes.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/crafting.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen_hades.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen_cavegame.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen_nodecore.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen_universal.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/mapgen_secondary.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/wall.lua")
dofile(minetest.get_modpath("too_many_stones") .. "/stairs.lua")

View File

@ -1,5 +1,3 @@
if minetest.get_modpath("default") ~= nil then
-- Amber
minetest.register_ore({
@ -172,5 +170,3 @@ if minetest.get_modpath("default") ~= nil then
persist = 0.0
},
})
end

1134
mapgen_universal.lua Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
name = too_many_stones
description = Adds several new stone types to nearly any Minetest Game and mapgen to any game that supplies default. V6 terrain is unsupported. Stairs, slabs, and walls will be available only if your game supplies stairs and walls or you install the mods to your game. Geodes are added if you have "geodes" or "geodes_lib" mod. Some blocks can be dyed to make others if you have dye.
description = Adds several new stone types to nearly any Minetest Game and mapgen to any game that uses mapgen_stone. V6 terrain may be buggy, but is supported. Stairs, slabs, and walls will be available only if your game supplies stairs and walls or you install the mods to your game. Geodes are added if you have "geodes" or "geodes_lib" mod. Some blocks can be dyed to make others if you have dye.
optional_depends = stairs, walls, geodes, moreores, geodes_lib, dye, default, hades_core, cavegame_mapgen, lottmapgen, base_earth, base_liquids, fogblox
min_minetest_version = 5.3
title = Too Many Stones