fixed license.

master
NathanSalapat 2019-03-30 15:02:20 -05:00
parent 2fcfe695db
commit 6c73958fa1
8 changed files with 93 additions and 105 deletions

View File

@ -1,13 +0,0 @@
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.

View File

@ -9,7 +9,8 @@ This is a Minetest mod that adds retaining walls and column nodes.
- https://forum.minetest.net/viewtopic.php?f=11&t=12094 - https://forum.minetest.net/viewtopic.php?f=11&t=12094
## Licensing ## Licensing
- DWYWPL - Code: MIT
- Graphics/Models: CC-by-SA 4.0 Nathan Salapat
## Dependencies ## Dependencies
- default - default

View File

@ -225,21 +225,21 @@ for i in ipairs (stone_types) do
local cbox = stone_types[i][5] local cbox = stone_types[i][5]
local scbox = stone_types[i][6] local scbox = stone_types[i][6]
local color_tab = { local color_tab = {
{'black', 'Black', '^[colorize:black:150'}, {'black', 'Black', '^[multiply:#2c2c2c'},
{'blue', 'Blue', '^[colorize:#0404B4:100'}, {'blue', 'Blue', '^[multiply:#0041f4'},
{'brown', 'Brown', '^[colorize:#190B07:100'}, {'brown', 'Brown', '^[multiply:#6c3800'},
{'cyan', 'Cyan', '^[colorize:cyan:100'}, {'cyan', 'Cyan', '^[multiply:cyan'},
{'dark_green', 'Dark Green', '^[colorize:#071907:150'}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{'dark_grey', 'Dark Grey', '^[colorize:black:150'}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{'green', 'Green', '^[colorize:green:100'}, {'green', 'Green', '^[multiply:#67eb1c'},
{'grey', 'Grey', '^[colorize:black:100'}, {'grey', 'Grey', '^[multiply:#818181'},
{'magenta', 'Magenta', '^[colorize:magenta:100'}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{'orange', 'Orange', '^[colorize:orange:100'}, {'orange', 'Orange', '^[multiply:#e0601a'},
{'pink', 'Pink', '^[colorize:#FE2E9A:100'}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{'red', 'Red', '^[colorize:#B40404:100'}, {'red', 'Red', '^[multiply:#c91818'},
{'violet', 'Violet', '^[colorize:#2F0B3A:100'}, {'violet', 'Violet', '^[multiply:#480680'},
{'white', 'White', '^[colorize:white:100'}, {'white', 'White', '^[multiply:white'},
{'yellow', 'Yellow', '^[colorize:yellow:100'}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{'cement', 'Concrete', ''}, {'cement', 'Concrete', ''},
} }

View File

@ -10,21 +10,21 @@ for i in ipairs (block_type1) do
local obj = block_type1[i][2] local obj = block_type1[i][2]
local tex = block_type1[i][3] local tex = block_type1[i][3]
local color_tab = { local color_tab = {
{'black', 'Black', '^[colorize:black:150'}, {'black', 'Black', '^[multiply:#2c2c2c'},
{'blue', 'Blue', '^[colorize:#0404B4:100'}, {'blue', 'Blue', '^[multiply:#0041f4'},
{'brown', 'Brown', '^[colorize:#190B07:100'}, {'brown', 'Brown', '^[multiply:#6c3800'},
{'cyan', 'Cyan', '^[colorize:cyan:100'}, {'cyan', 'Cyan', '^[multiply:cyan'},
{'dark_green', 'Dark Green', '^[colorize:#071907:150'}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{'dark_grey', 'Dark Grey', '^[colorize:black:150'}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{'green', 'Green', '^[colorize:green:100'}, {'green', 'Green', '^[multiply:#67eb1c'},
{'grey', 'Grey', '^[colorize:black:100'}, {'grey', 'Grey', '^[multiply:#818181'},
{'magenta', 'Magenta', '^[colorize:magenta:100'}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{'orange', 'Orange', '^[colorize:orange:100'}, {'orange', 'Orange', '^[multiply:#e0601a'},
{'pink', 'Pink', '^[colorize:#FE2E9A:100'}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{'red', 'Red', '^[colorize:#B40404:100'}, {'red', 'Red', '^[multiply:#c91818'},
{'violet', 'Violet', '^[colorize:#2F0B3A:100'}, {'violet', 'Violet', '^[multiply:#480680'},
{'white', 'White', '^[colorize:white:100'}, {'white', 'White', '^[multiply:white'},
{'yellow', 'Yellow', '^[colorize:yellow:100'}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{'cement', 'Concrete', ''}, {'cement', 'Concrete', ''},
} }

View File

@ -55,21 +55,21 @@ for i in ipairs (block_type1) do
local drops = block_type1[i][5] local drops = block_type1[i][5]
local grup = block_type1[i][6] local grup = block_type1[i][6]
local color_tab = { local color_tab = {
{'black', 'Black', '^[colorize:black:150'}, {'black', 'Black', '^[multiply:#2c2c2c'},
{'blue', 'Blue', '^[colorize:#0404B4:100'}, {'blue', 'Blue', '^[multiply:#0041f4'},
{'brown', 'Brown', '^[colorize:#190B07:100'}, {'brown', 'Brown', '^[multiply:#6c3800'},
{'cyan', 'Cyan', '^[colorize:cyan:100'}, {'cyan', 'Cyan', '^[multiply:cyan'},
{'dark_green', 'Dark Green', '^[colorize:#071907:150'}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{'dark_grey', 'Dark Grey', '^[colorize:black:150'}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{'green', 'Green', '^[colorize:green:100'}, {'green', 'Green', '^[multiply:#67eb1c'},
{'grey', 'Grey', '^[colorize:black:100'}, {'grey', 'Grey', '^[multiply:#818181'},
{'magenta', 'Magenta', '^[colorize:magenta:100'}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{'orange', 'Orange', '^[colorize:orange:100'}, {'orange', 'Orange', '^[multiply:#e0601a'},
{'pink', 'Pink', '^[colorize:#FE2E9A:100'}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{'red', 'Red', '^[colorize:#B40404:100'}, {'red', 'Red', '^[multiply:#c91818'},
{'violet', 'Violet', '^[colorize:#2F0B3A:100'}, {'violet', 'Violet', '^[multiply:#480680'},
{'white', 'White', '^[colorize:white:100'}, {'white', 'White', '^[multiply:white'},
{'yellow', 'Yellow', '^[colorize:yellow:100'}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{'cement', 'Concrete', ''}, {'cement', 'Concrete', ''},
} }
for i in ipairs (color_tab) do for i in ipairs (color_tab) do

View File

@ -20,22 +20,22 @@ for i in ipairs (block_type1) do
local colbox = block_type1[i][3] local colbox = block_type1[i][3]
local grup = block_type1[i][4] local grup = block_type1[i][4]
local color_tab = { local color_tab = {
{"black", "Black", "^[colorize:black:150"}, {'black', 'Black', '^[multiply:#2c2c2c'},
{"blue", "Blue", "^[colorize:#0404B4:100"}, {'blue', 'Blue', '^[multiply:#0041f4'},
{"brown", "Brown", "^[colorize:#190B07:100"}, {'brown', 'Brown', '^[multiply:#6c3800'},
{"cyan", "Cyan", "^[colorize:cyan:100"}, {'cyan', 'Cyan', '^[multiply:cyan'},
{"dark_green", "Dark Green", "^[colorize:#071907:150"}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{"dark_grey", "Dark Grey", "^[colorize:black:150"}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{"green", "Green", "^[colorize:green:100"}, {'green', 'Green', '^[multiply:#67eb1c'},
{"grey", "Grey", "^[colorize:black:100"}, {'grey', 'Grey', '^[multiply:#818181'},
{"magenta", "Magenta", "^[colorize:magenta:100"}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{"orange", "Orange", "^[colorize:orange:100"}, {'orange', 'Orange', '^[multiply:#e0601a'},
{"pink", "Pink", "^[colorize:#FE2E9A:100"}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{"red", "Red", "^[colorize:#B40404:100"}, {'red', 'Red', '^[multiply:#c91818'},
{"violet", "Violet", "^[colorize:#2F0B3A:100"}, {'violet', 'Violet', '^[multiply:#480680'},
{"white", "White", "^[colorize:white:100"}, {'white', 'White', '^[multiply:white'},
{"yellow", "Yellow", "^[colorize:yellow:100"}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{"cement", "Concrete", ""}, {'cement', 'Concrete', ''},
} }
for i in ipairs (color_tab) do for i in ipairs (color_tab) do
local col = color_tab[i][1] local col = color_tab[i][1]

View File

@ -48,21 +48,21 @@ for i in ipairs (block_type1) do
local drops = block_type1[i][5] local drops = block_type1[i][5]
local grup = block_type1[i][6] local grup = block_type1[i][6]
local color_tab = { local color_tab = {
{'black', 'Black', '^[colorize:black:150'}, {'black', 'Black', '^[multiply:#2c2c2c'},
{'blue', 'Blue', '^[colorize:#0404B4:100'}, {'blue', 'Blue', '^[multiply:#0041f4'},
{'brown', 'Brown', '^[colorize:#190B07:100'}, {'brown', 'Brown', '^[multiply:#6c3800'},
{'cyan', 'Cyan', '^[colorize:cyan:100'}, {'cyan', 'Cyan', '^[multiply:cyan'},
{'dark_green', 'Dark Green', '^[colorize:#071907:150'}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{'dark_grey', 'Dark Grey', '^[colorize:black:150'}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{'green', 'Green', '^[colorize:green:100'}, {'green', 'Green', '^[multiply:#67eb1c'},
{'grey', 'Grey', '^[colorize:black:100'}, {'grey', 'Grey', '^[multiply:#818181'},
{'magenta', 'Magenta', '^[colorize:magenta:100'}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{'orange', 'Orange', '^[colorize:orange:100'}, {'orange', 'Orange', '^[multiply:#e0601a'},
{'pink', 'Pink', '^[colorize:#FE2E9A:100'}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{'red', 'Red', '^[colorize:#B40404:100'}, {'red', 'Red', '^[multiply:#c91818'},
{'violet', 'Violet', '^[colorize:#2F0B3A:100'}, {'violet', 'Violet', '^[multiply:#480680'},
{'white', 'White', '^[colorize:white:100'}, {'white', 'White', '^[multiply:white'},
{'yellow', 'Yellow', '^[colorize:yellow:100'}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{'cement', 'Concrete', ''}, {'cement', 'Concrete', ''},
} }
for i in ipairs (color_tab) do for i in ipairs (color_tab) do

View File

@ -42,21 +42,21 @@ for i in ipairs (block_type1) do
local drops = block_type1[i][5] local drops = block_type1[i][5]
local grup = block_type1[i][6] local grup = block_type1[i][6]
local color_tab = { local color_tab = {
{'black', 'Black', '^[colorize:black:150'}, {'black', 'Black', '^[multiply:#2c2c2c'},
{'blue', 'Blue', '^[colorize:#0404B4:100'}, {'blue', 'Blue', '^[multiply:#0041f4'},
{'brown', 'Brown', '^[colorize:#190B07:100'}, {'brown', 'Brown', '^[multiply:#6c3800'},
{'cyan', 'Cyan', '^[colorize:cyan:100'}, {'cyan', 'Cyan', '^[multiply:cyan'},
{'dark_green', 'Dark Green', '^[colorize:#071907:150'}, {'dark_green', 'Dark Green', '^[multiply:#2b7b00'},
{'dark_grey', 'Dark Grey', '^[colorize:black:150'}, {'dark_grey', 'Dark Grey', '^[multiply:#464646'},
{'green', 'Green', '^[colorize:green:100'}, {'green', 'Green', '^[multiply:#67eb1c'},
{'grey', 'Grey', '^[colorize:black:100'}, {'grey', 'Grey', '^[multiply:#818181'},
{'magenta', 'Magenta', '^[colorize:magenta:100'}, {'magenta', 'Magenta', '^[multiply:#d80481'},
{'orange', 'Orange', '^[colorize:orange:100'}, {'orange', 'Orange', '^[multiply:#e0601a'},
{'pink', 'Pink', '^[colorize:#FE2E9A:100'}, {'pink', 'Pink', '^[multiply:#ffa5a5'},
{'red', 'Red', '^[colorize:#B40404:100'}, {'red', 'Red', '^[multiply:#c91818'},
{'violet', 'Violet', '^[colorize:#2F0B3A:100'}, {'violet', 'Violet', '^[multiply:#480680'},
{'white', 'White', '^[colorize:white:100'}, {'white', 'White', '^[multiply:white'},
{'yellow', 'Yellow', '^[colorize:yellow:100'}, {'yellow', 'Yellow', '^[multiply:#fcf611'},
{'cement', 'Concrete', ''}, {'cement', 'Concrete', ''},
} }
for i in ipairs (color_tab) do for i in ipairs (color_tab) do