0.3.4 final

This commit is contained in:
TheOnlyJoeEnderman 2023-03-26 22:05:20 +00:00
parent 8a68cc5e2b
commit 5b9efbf1a2
4 changed files with 100 additions and 0 deletions

View File

@ -2100,6 +2100,18 @@ minetest.register_node("too_many_stones:slate_cracked_brick", {
groups = {cracky = 2, dark_grey_stone = 1, stone = 1},
sounds = too_many_stones.node_sound_stone_defaults(),
})
minetest.register_node("too_many_stones:slate_tile", {
description = S("Slate Tile"),
paramtype2 = "facedir",
place_param2 = 0,
tiles = {"tms_slate_tile.png"},
is_ground_content = false,
groups = {cracky = 2, dark_grey_stone = 1, stone = 1},
sounds = too_many_stones.node_sound_stone_defaults(),
on_place = minetest.rotate_node
})
-- Smokey Quartz
minetest.register_node("too_many_stones:smokey_quartz", {
description = S("Smokey Quartz"),

View File

@ -2174,6 +2174,17 @@ stairs.register_stair_and_slab(
too_many_stones.node_sound_stone_defaults(),
false
)
stairs.register_stair_and_slab(
"slate_tile",
"too_many_stones:slate_tile",
{cracky = 2},
{"tms_slate_tile.png"},
"Slate Tile Stair",
"Slate Tile Slab",
too_many_stones.node_sound_stone_defaults(),
false
)
-- Smokey Quartz
stairs.register_stair_and_slab(
"smokey_quartz",

View File

@ -0,0 +1,74 @@
GLOBAL (all climates)
Amber
Amethyst
Calcite
Chrysoprase
Galena
Gray Granite
White Granite
Heliodor
Jade
Quartz
Slate
Sugilite
Travertine
POLAR (low temperature, low humidity)
GLACIAL (low temperature, high humidity)
Blue Granite
Kyanite
COLD (low temperature, all humidity)
Black Granite
Pink Granite
Howlite
Ilvaite
Rose Quartz
Soapstone
Sodalite
HUMID (all temperature, high humidity)
Celestine
Green Granite
Blue Limestone
White Limestone
Mudstone
Serpentine
Vivianite
TROPICAL (high temperature, high humidity)
Blue Agate
Gray Agate
Green Agate
Moss Agate
Orange Agate
Purple Agate
Red Agate
Amazonite
Marble
ARID (high temperature, low humidity)
Basalt
Carnotite
Columnar Basalt
Eudialite
Pumice
Scoria
Smokey Quartz
DRY (all temperature, low humidity)
Prasiolite
HOT (high temperature, all humidity)
Andesite
Citrine
Gabbro
Red Granite
Beige Tuff
Grey Tuff
Red Tuff
SPECIAL (alternate qualities)
Lapis Lazuli (desert/sandstone only)
Turquoise (desert/sandstone only)

View File

@ -593,6 +593,9 @@ walls.register("too_many_stones:slate_block_wall", "Slate Block Wall", "tms_slat
walls.register("too_many_stones:slate_cobble_wall", "Cobbled Slate Wall", "tms_slate_cobble.png",
"too_many_stones:slate_cobble", too_many_stones.node_sound_stone_defaults())
walls.register("too_many_stones:slate_tile_wall", "Slate Tile Wall", "tms_slate_tile.png",
"too_many_stones:slate_tile", too_many_stones.node_sound_stone_defaults())
-- Smokey Quartz
walls.register("too_many_stones:smokey_quartz_wall", "Smokey Quartz Wall", "tms_smokey_quartz.png",
"too_many_stones:smokey_quartz", too_many_stones.node_sound_glass_defaults())