Added more files
made walls group together
This commit is contained in:
parent
78f0917b5c
commit
a2539906a9
15
description.txt
Normal file
15
description.txt
Normal file
@ -0,0 +1,15 @@
|
||||
Adds more wall types for walls mod.
|
||||
|
||||
Walls mod comes with Minetest Game. It includes 3 types of walls. This mod extends it toinclue 7 more types.
|
||||
|
||||
Included in this mod are
|
||||
|
||||
stone
|
||||
stone brick
|
||||
desert stone
|
||||
desert stone brick
|
||||
sandstone
|
||||
sandstone brick
|
||||
brick
|
||||
|
||||
Licence - WTFPL
|
16
init.lua
16
init.lua
@ -1,22 +1,20 @@
|
||||
walls.register("mywalls:brick", "Brick Wall", "default_brick.png",
|
||||
walls.register(":walls:brick", "Brick Wall", "default_brick.png",
|
||||
"default:brick", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:sandstone", "Sandstone Wall", "default_sandstone.png",
|
||||
walls.register(":walls:sandstone", "Sandstone Wall", "default_sandstone.png",
|
||||
"default:sandstone", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:sandstone_brick", "Sandstone Brick Wall", "default_sandstone_brick.png",
|
||||
walls.register(":walls:sandstone_brick", "Sandstone Brick Wall", "default_sandstone_brick.png",
|
||||
"default:sandstonebrick", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:stone", "Stone Wall", "default_stone.png",
|
||||
walls.register(":walls:stone", "Stone Wall", "default_stone.png",
|
||||
"default:stone", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:stone_brick", "Stone Brick Wall", "default_stone_brick.png",
|
||||
walls.register(":walls:stone_brick", "Stone Brick Wall", "default_stone_brick.png",
|
||||
"default:stonebrick", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:desert_stone", "Desert Stone Wall", "default_desert_stone.png",
|
||||
walls.register(":walls:desert_stone", "Desert Stone Wall", "default_desert_stone.png",
|
||||
"default:desert_stone", default.node_sound_stone_defaults())
|
||||
|
||||
walls.register("mywalls:desrt_stone_brick", "Desert Stone Brick Wall", "default_desert_stone_brick.png",
|
||||
walls.register(":walls:desrt_stone_brick", "Desert Stone Brick Wall", "default_desert_stone_brick.png",
|
||||
"default:desert_stonebrick", default.node_sound_stone_defaults())
|
||||
|
||||
|
||||
|
17
readme.md
Normal file
17
readme.md
Normal file
@ -0,0 +1,17 @@
|
||||
mywalls
|
||||
|
||||
Adds more wall types for walls mod.
|
||||
|
||||
Walls mod comes with Minetest Game. It includes 3 types of walls. This mod extends it toinclue 7 more types.
|
||||
|
||||
Included in this mod are
|
||||
|
||||
stone
|
||||
stone brick
|
||||
desert stone
|
||||
desert stone brick
|
||||
sandstone
|
||||
sandstone brick
|
||||
brick
|
||||
|
||||
Licence - WTFPL
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 117 KiB |
Loading…
x
Reference in New Issue
Block a user