Finalize for release 0.5

This commit is contained in:
2022-11-27 14:08:38 -05:00
parent ac9ea6c4e0
commit 971dc82648
34 changed files with 379 additions and 49 deletions

View File

@@ -40,7 +40,7 @@ minetest.register_node(":soviet:concrete", {
stairs.register_stair_and_slab(
"concrete",
"soviet:concrete",
{cracky = 2},
{cracky = 3},
{"soviet_concrete.png"},
"Concrete Stair",
"Concrete Slab",
@@ -52,7 +52,7 @@ minetest.register_node(":soviet:concrete_window", {
description = "Chunk of Concrete with a Window in it",
tiles = {"soviet_concrete_window.png"},
is_ground_content = false,
groups = {cracky = 2},
groups = {cracky = 3},
sounds = default.node_sound_stone_defaults(),
})
@@ -60,14 +60,14 @@ minetest.register_node(":soviet:staircase_flooring", {
description = "Apt Building Staircase/Lobby Flooring",
tiles = {"soviet_staircase_flooring.png"},
is_ground_content = false,
groups = {cracky = 2},
groups = {cracky = 3},
sounds = default.node_sound_stone_defaults(),
})
stairs.register_stair_and_slab(
"staircase_flooring",
"soviet:staircase_flooring",
{cracky = 2},
{cracky = 3},
{"soviet_staircase_flooring.png"},
"Apt Staircase/Lobby Flooring Stair",
"Apt Staircase/Lobby Flooring Slab",
@@ -86,7 +86,7 @@ minetest.register_node(":soviet:glass",
sunlight_propagates = true,
sounds = default.node_sound_glass_defaults(),
is_ground_content = false,
groups = {cracky = 1},
groups = {cracky = 3},
})
-- Plantlike nodes
@@ -122,7 +122,7 @@ minetest.register_node(":soviet:tea", {
type = "fixed",
fixed = {-0.25, -0.5, -0.25, 0.25, 0.3, 0.25}
},
groups = {dig_immediate = 3, attached_node = 1},
groups = {cracky = 4, dig_immediate = 3, attached_node = 1},
sounds = default.node_sound_glass_defaults()
})
@@ -137,7 +137,7 @@ minetest.register_node(":soviet:ceilling_light", {
light_source = 15,
is_ground_content = false,
walkable = false,
groups = {cracky = 1},
groups = {cracky = 3},
sounds = default.node_sound_glass_defaults(),
})
@@ -178,7 +178,7 @@ minetest.register_node(":soviet:transradio", {
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
groups = {cracky = 2},
groups = {cracky = 4},
node_box = {
type = "fixed",
fixed = {
@@ -195,7 +195,7 @@ minetest.register_node(":soviet:concrete_thin", {
description = "Thin Concrete Wall",
tiles = {"soviet_concrete.png"},
is_ground_content = false,
groups = {cracky = 2},
groups = {cracky = 3},
sounds = default.node_sound_stone_defaults(),
paramtype2 = "wallmounted",
drawtype = "nodebox",
@@ -212,7 +212,7 @@ minetest.register_node(":soviet:concrete_thin_lower", {
description = "Thin Concrete Wall",
tiles = {"soviet_concrete.png"},
is_ground_content = false,
groups = {cracky = 2},
groups = {cracky = 3},
sounds = default.node_sound_stone_defaults(),
paramtype2 = "facedir",
drawtype = "nodebox",
@@ -224,20 +224,3 @@ minetest.register_node(":soviet:concrete_thin_lower", {
}
}
})
minetest.register_node(":soviet:concrete_thin", {
description = "Thin Concrete Wall",
tiles = {"soviet_concrete.png"},
is_ground_content = false,
groups = {cracky = 2},
sounds = default.node_sound_stone_defaults(),
paramtype2 = "wallmounted",
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "wallmounted",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5},
}
}
})