Compare commits

...

5 Commits

Author SHA1 Message Date
Samuel Sieb c6e529ad28 Make mypaint be an optional dependency. 2016-04-04 21:18:44 -07:00
Don 3c8a5af0bb Update depends.txt 2016-04-04 20:49:11 -07:00
DonBatman e13c1232e6 Modified screenshot 2016-04-04 20:45:47 -07:00
DonBatman 5ca915e14b Added the rest of the colors 2016-03-24 12:44:30 -07:00
DonBatman 0c03c98344 Changed Licence 2016-03-23 18:05:03 -07:00
6 changed files with 30 additions and 3 deletions

View File

@ -34,5 +34,5 @@ You can only paint 3 sections and then need to punch paint can again.
Fences can be repainted as many times as you want but you can not go back to regular wood color.
License of code: WTFPL
License of code: DWYWPL

View File

@ -1,3 +1,3 @@
default
mypaint
mypaint?

View File

@ -3,13 +3,27 @@ myfences.colors = {
{"red", "Red", "842800ae"},
{"green", "Green", "0c4916b3"},
{"white", "White", "ffffffb3"},
{"black","Black","000000"},
{"blue","Blue","0B0B3B"},
{"brown","Brown","190B07"},
{"cyan","Cyan","00a4e8"},
{"darkgreen","Dark Green","071907"},
{"darkgrey","Dark Grey","1C1C1C"},
{"grey","Grey","848484"},
{"magenta","Magenta","e8008e"},
{"orange","Orange","e8b400"},
{"pink","Pink","FE2E9A"},
{"violet","Violet","08088A"},
{"yellow","Yellow","f4dd1b"},
}
dofile(minetest.get_modpath("myfences").."/picket.lua")
dofile(minetest.get_modpath("myfences").."/privacy.lua")
dofile(minetest.get_modpath("myfences").."/garden.lua")
dofile(minetest.get_modpath("myfences").."/post.lua")
dofile(minetest.get_modpath("myfences").."/paint.lua")
if mypaint ~= nil then
dofile(minetest.get_modpath("myfences").."/paint.lua")
end
minetest.register_craftitem("myfences:board", {
description = "Default Board",

13
licence.txt Normal file
View File

@ -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.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 177 KiB

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 KiB