diff --git a/mods/mywalls/.gitrepo b/mods/mywalls/.gitrepo new file mode 100644 index 0000000..a995072 --- /dev/null +++ b/mods/mywalls/.gitrepo @@ -0,0 +1,11 @@ +; DO NOT EDIT (unless you know what you are doing) +; +; This subdirectory is a git "subrepo", and this file is maintained by the +; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme +; +[subrepo] + remote = https://github.com/minetest-mods/mywalls.git + branch = master + commit = 35b43b78416ced5dad7c2090afb6f3983f165ffb + parent = 9f6b61e260ff21ff0a9138076c797427ed233e60 + cmdver = 0.3.1 diff --git a/mods/mywalls/depends.txt b/mods/mywalls/depends.txt new file mode 100644 index 0000000..1cec988 --- /dev/null +++ b/mods/mywalls/depends.txt @@ -0,0 +1,2 @@ +default +walls diff --git a/mods/mywalls/description.txt b/mods/mywalls/description.txt new file mode 100644 index 0000000..d4c1504 --- /dev/null +++ b/mods/mywalls/description.txt @@ -0,0 +1,14 @@ +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 + diff --git a/mods/mywalls/init.lua b/mods/mywalls/init.lua new file mode 100644 index 0000000..4c195c6 --- /dev/null +++ b/mods/mywalls/init.lua @@ -0,0 +1,20 @@ +walls.register(":walls:brick", "Brick Wall", "default_brick.png", + "default:brick", default.node_sound_stone_defaults()) + +walls.register(":walls:sandstone", "Sandstone Wall", "default_sandstone.png", + "default:sandstone", default.node_sound_stone_defaults()) + +walls.register(":walls:sandstone_brick", "Sandstone Brick Wall", "default_sandstone_brick.png", + "default:sandstonebrick", default.node_sound_stone_defaults()) + +walls.register(":walls:stone", "Stone Wall", "default_stone.png", + "default:stone", default.node_sound_stone_defaults()) + +walls.register(":walls:stone_brick", "Stone Brick Wall", "default_stone_brick.png", + "default:stonebrick", default.node_sound_stone_defaults()) + +walls.register(":walls:desert_stone", "Desert Stone Wall", "default_desert_stone.png", + "default:desert_stone", default.node_sound_stone_defaults()) + +walls.register(":walls:desert_stonebrick", "Desert Stone Brick Wall", "default_desert_stone_brick.png", + "default:desert_stonebrick", default.node_sound_stone_defaults()) diff --git a/mods/mywalls/licence.txt b/mods/mywalls/licence.txt new file mode 100644 index 0000000..f50419b --- /dev/null +++ b/mods/mywalls/licence.txt @@ -0,0 +1,13 @@ +DO WHAT YOU WANT TO PUBLIC LICENSE +or abbreviated DWYWPL + +December 2nd 2015 +License Copyright (C) 2015 Michael Tomaino (PlatinumArts@gmail.com) +www.sandboxgamemaker.com/DWYWPL/ + +DO WHAT YOU WANT TO PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +1. You are allowed to do whatever you want to with what content is using this license. +2. This content is provided 'as-is', without any express or implied warranty. In no event +will the authors be held liable for any damages arising from the use of this content. diff --git a/mods/mywalls/mod.conf b/mods/mywalls/mod.conf new file mode 100644 index 0000000..4ae737f --- /dev/null +++ b/mods/mywalls/mod.conf @@ -0,0 +1,2 @@ +name = mywalls +tags = walls, connect, more diff --git a/mods/mywalls/readme.md b/mods/mywalls/readme.md new file mode 100644 index 0000000..6e6fb00 --- /dev/null +++ b/mods/mywalls/readme.md @@ -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 - DWYWPL diff --git a/mods/mywalls/screenshot.png b/mods/mywalls/screenshot.png new file mode 100644 index 0000000..6de89a8 Binary files /dev/null and b/mods/mywalls/screenshot.png differ