Add Swamp Stone Brick Wall

This commit is contained in:
philipmi 2023-03-09 21:12:01 +01:00
parent 3dc3889171
commit 596f302167
4 changed files with 9 additions and 3 deletions

View File

@ -2,8 +2,8 @@ Brick Walls
===
[![ContentDB](https://content.minetest.net/packages/philipmi/brickwalls/shields/title/)](https://content.minetest.net/packages/philipmi/brickwalls/)
[![ContentDB](https://content.minetest.net/packages/philipmi/brickwalls/shields/downloads/)](https://content.minetest.net/packages/philipmi/brickwalls/stats/)
[![Forums](https://img.shields.io/badge/Forums-Brick_Walls-lightgrey)](https://forum.minetest.net/viewtopic.php?t=29221)
[![License](https://img.shields.io/badge/license-MIT-brightgreen)](#license)
[![Forums](https://shields.sp-codes.de/badge/Forums-Brick_Walls-lightgrey)](https://forum.minetest.net/viewtopic.php?t=29221)
[![License](https://shields.sp-codes.de/badge/license-MIT-brightgreen)](#license)
![Screenshot](screenshot.png)
This simple mod adds brick walls for the walls mod. There are walls for many types of bricks from different mods.
@ -28,6 +28,8 @@ Walls are added for the following brick types:
- From `xdecor`:
- Cactus Brick
- Moon Brick
- From `sumpf`:
- Swamp Stone Brick
The number of blocks that walls connect to will also be expanded.
For the walls to be added, it's required to enable the mods containing the corresponding materials (bricks).

View File

@ -23,6 +23,8 @@ brickwalls = {
-- xdecor
{"brickwalls:cactusbrick", "Cactus Brick Wall", "xdecor:cactusbrick"},
{"brickwalls:moonbrick", "Moon Brick Wall", "xdecor:moonbrick"},
-- sumpf
{"brickwalls:junglestonebrick", "Swamp Stone Brick Wall", "sumpf:junglestonebrick"},
}
for _, i in pairs(brickwalls) do
@ -64,6 +66,8 @@ for n, def in pairs(minetest.registered_nodes) do
"ethereal:icebrick", "ethereal:snowbrick",
-- xdecor
"xdecor:cactusbrick", "xdecor:moonbrick",
-- sumpf
"sumpf:junglestone", "sumpf:cobble", "sumpf:junglestonebrick",
}
})
end

View File

@ -1,6 +1,6 @@
name = brickwalls
author = philipmi
depends = walls
optional_depends = default, nether, ethereal, xdecor
optional_depends = default, nether, ethereal, xdecor, sumpf
description = Adds brick walls from different types of bricks.
title = Brick Walls

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

After

Width:  |  Height:  |  Size: 158 KiB