Add stone bricks
This commit is contained in:
parent
a1a477b9b4
commit
3e99d422ef
@ -9,6 +9,8 @@
|
||||
- Added Wheat Crops
|
||||
- Added Carrots and Carrot Crops
|
||||
- Added Bananas
|
||||
- Added Stone/Darkstone/Granite/Andesite Bricks
|
||||
- Glass should be connected with connected glass setting now
|
||||
|
||||
## [Oct 6th - Oct 12th 2024] Update: Texture Update
|
||||
|
||||
|
@ -74,6 +74,42 @@ PyuTest.make_building_blocks("pyutest_blocks:andesite", "Andesite", {"pyutest-an
|
||||
cracky = PyuTest.BLOCK_NORMAL,
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:stone_bricks", "Stone Bricks", {
|
||||
"pyutest-bricks2.png"
|
||||
}, "#82807c", {
|
||||
bricks = 1,
|
||||
cracky = PyuTest.BLOCK_NORMAL,
|
||||
}, {
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:darkstone_bricks", "Darkstone Bricks", {
|
||||
"pyutest-bricks2.png"
|
||||
}, "#3c3b3a", {
|
||||
bricks = 1,
|
||||
cracky = PyuTest.BLOCK_NORMAL,
|
||||
}, {
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:granite_bricks", "Granite Bricks", {
|
||||
"pyutest-bricks2.png"
|
||||
}, "#9d6658", {
|
||||
bricks = 1,
|
||||
cracky = PyuTest.BLOCK_NORMAL,
|
||||
}, {
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:andesite_bricks", "Andesite Bricks", {
|
||||
"pyutest-bricks2.png"
|
||||
}, "#525252", {
|
||||
bricks = 1,
|
||||
cracky = PyuTest.BLOCK_NORMAL,
|
||||
}, {
|
||||
is_ground_content = false
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:sandstone", "Sandstone", { "pyutest-sandstone.png" }, nil, {
|
||||
ground = 1,
|
||||
acid_vulnerable = 1,
|
||||
@ -117,7 +153,7 @@ PyuTest.make_building_blocks("pyutest_blocks:bone", "Bone", {
|
||||
cracky = PyuTest.BLOCK_FAST
|
||||
})
|
||||
|
||||
PyuTest.make_building_blocks("pyutest_blocks:brick", "Brick", { "pyutest-bricks.png" }, nil, {
|
||||
PyuTest.make_building_blocks("pyutest_blocks:brick", "Bricks", { "pyutest-bricks.png" }, nil, {
|
||||
cracky = PyuTest.BLOCK_NORMAL
|
||||
}, {
|
||||
is_ground_content = false
|
||||
|
@ -38,7 +38,7 @@ PyuTest.make_node("pyutest_blocks:torch", "Torch", {
|
||||
|
||||
PyuTest.make_node("pyutest_blocks:glass", "Glass", {
|
||||
cracky = PyuTest.BLOCK_FAST
|
||||
}, { "pyutest-glass.png" }, {
|
||||
}, { "pyutest-glass.png", "pyutest-shiny-metal-overlay.png" }, {
|
||||
drawtype = "glasslike_framed",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true
|
||||
|
@ -83,7 +83,7 @@ for k, v in pairs(PyuTest.COLORS) do
|
||||
cracky = PyuTest.BLOCK_FAST,
|
||||
glass = 1,
|
||||
colored = 1
|
||||
}, {"pyutest-glass.png"}, {
|
||||
}, {"pyutest-glass.png", "pyutest-shiny-metal-overlay.png"}, {
|
||||
drawtype = "glasslike_framed",
|
||||
color = v[2],
|
||||
paramtype = "light",
|
||||
|
BIN
textures/pyutest-bricks2.png
Normal file
BIN
textures/pyutest-bricks2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 B |
Binary file not shown.
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 99 B |
Binary file not shown.
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 95 B |
Loading…
x
Reference in New Issue
Block a user