Add Swamp Stone Brick Wall
This commit is contained in:
parent
3dc3889171
commit
596f302167
4 changed files with 9 additions and 3 deletions
|
@ -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/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/)
|
[![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)
|
[![Forums](https://shields.sp-codes.de/badge/Forums-Brick_Walls-lightgrey)](https://forum.minetest.net/viewtopic.php?t=29221)
|
||||||
[![License](https://img.shields.io/badge/license-MIT-brightgreen)](#license)
|
[![License](https://shields.sp-codes.de/badge/license-MIT-brightgreen)](#license)
|
||||||
![Screenshot](screenshot.png)
|
![Screenshot](screenshot.png)
|
||||||
|
|
||||||
This simple mod adds brick walls for the walls mod. There are walls for many types of bricks from different mods.
|
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`:
|
- From `xdecor`:
|
||||||
- Cactus Brick
|
- Cactus Brick
|
||||||
- Moon Brick
|
- Moon Brick
|
||||||
|
- From `sumpf`:
|
||||||
|
- Swamp Stone Brick
|
||||||
|
|
||||||
The number of blocks that walls connect to will also be expanded.
|
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).
|
For the walls to be added, it's required to enable the mods containing the corresponding materials (bricks).
|
||||||
|
|
4
init.lua
4
init.lua
|
@ -23,6 +23,8 @@ brickwalls = {
|
||||||
-- xdecor
|
-- xdecor
|
||||||
{"brickwalls:cactusbrick", "Cactus Brick Wall", "xdecor:cactusbrick"},
|
{"brickwalls:cactusbrick", "Cactus Brick Wall", "xdecor:cactusbrick"},
|
||||||
{"brickwalls:moonbrick", "Moon Brick Wall", "xdecor:moonbrick"},
|
{"brickwalls:moonbrick", "Moon Brick Wall", "xdecor:moonbrick"},
|
||||||
|
-- sumpf
|
||||||
|
{"brickwalls:junglestonebrick", "Swamp Stone Brick Wall", "sumpf:junglestonebrick"},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, i in pairs(brickwalls) do
|
for _, i in pairs(brickwalls) do
|
||||||
|
@ -64,6 +66,8 @@ for n, def in pairs(minetest.registered_nodes) do
|
||||||
"ethereal:icebrick", "ethereal:snowbrick",
|
"ethereal:icebrick", "ethereal:snowbrick",
|
||||||
-- xdecor
|
-- xdecor
|
||||||
"xdecor:cactusbrick", "xdecor:moonbrick",
|
"xdecor:cactusbrick", "xdecor:moonbrick",
|
||||||
|
-- sumpf
|
||||||
|
"sumpf:junglestone", "sumpf:cobble", "sumpf:junglestonebrick",
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
2
mod.conf
2
mod.conf
|
@ -1,6 +1,6 @@
|
||||||
name = brickwalls
|
name = brickwalls
|
||||||
author = philipmi
|
author = philipmi
|
||||||
depends = walls
|
depends = walls
|
||||||
optional_depends = default, nether, ethereal, xdecor
|
optional_depends = default, nether, ethereal, xdecor, sumpf
|
||||||
description = Adds brick walls from different types of bricks.
|
description = Adds brick walls from different types of bricks.
|
||||||
title = Brick Walls
|
title = Brick Walls
|
||||||
|
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 164 KiB After Width: | Height: | Size: 158 KiB |
Loading…
Reference in a new issue