summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2013-12-16 23:15:39 -0600
committercheapie <no-email-for-you@example.com>2013-12-16 23:15:39 -0600
commite25ba53998577d9322c1cc001835abcbf7af211e (patch)
treefd004a6114132a171667fd74857086ccde449e6d
parent7f209750b720c7e580e4d3737bdc10ec56fe5458 (diff)
downloadplasticbox-e25ba53998577d9322c1cc001835abcbf7af211e.tar
plasticbox-e25ba53998577d9322c1cc001835abcbf7af211e.tar.gz
plasticbox-e25ba53998577d9322c1cc001835abcbf7af211e.tar.bz2
plasticbox-e25ba53998577d9322c1cc001835abcbf7af211e.tar.xz
plasticbox-e25ba53998577d9322c1cc001835abcbf7af211e.zip
Added content.
-rw-r--r--COPYING14
-rw-r--r--README.md19
-rw-r--r--depends.txt1
-rw-r--r--init.lua191
-rw-r--r--textures/plasticbox.pngbin0 -> 499 bytes
-rw-r--r--textures/plasticbox_black.pngbin0 -> 453 bytes
-rw-r--r--textures/plasticbox_blue.pngbin0 -> 535 bytes
-rw-r--r--textures/plasticbox_brown.pngbin0 -> 463 bytes
-rw-r--r--textures/plasticbox_cyan.pngbin0 -> 513 bytes
-rw-r--r--textures/plasticbox_darkgreen.pngbin0 -> 431 bytes
-rw-r--r--textures/plasticbox_darkgrey.pngbin0 -> 430 bytes
-rw-r--r--textures/plasticbox_green.pngbin0 -> 486 bytes
-rw-r--r--textures/plasticbox_grey.pngbin0 -> 522 bytes
-rw-r--r--textures/plasticbox_magenta.pngbin0 -> 522 bytes
-rw-r--r--textures/plasticbox_orange.pngbin0 -> 512 bytes
-rw-r--r--textures/plasticbox_pink.pngbin0 -> 571 bytes
-rw-r--r--textures/plasticbox_red.pngbin0 -> 522 bytes
-rw-r--r--textures/plasticbox_violet.pngbin0 -> 539 bytes
-rw-r--r--textures/plasticbox_white.pngbin0 -> 441 bytes
-rw-r--r--textures/plasticbox_yellow.pngbin0 -> 517 bytes
20 files changed, 224 insertions, 1 deletions
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..ee7d6a5
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,14 @@
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+
diff --git a/README.md b/README.md
index 478efe3..2564c2c 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,21 @@
plasticbox
==========
-
Plastic Box Mod for Minetest
+
+Written by cheapie
+Textures by VanessaE
+Licensed under WTFPL
+
+Crafting:
+
+-Plain Plastic Box-
+
+XXX
+X-X
+XXX
+
+X is Plastic Sheets (from homedecor/pipeworks), - is nothing
+
+-Colored Plastic Boxes-
+
+Plain plastic box and a dye. (shapeless)
diff --git a/depends.txt b/depends.txt
new file mode 100644
index 0000000..2bf0202
--- /dev/null
+++ b/depends.txt
@@ -0,0 +1 @@
+homedecor
diff --git a/init.lua b/init.lua
new file mode 100644
index 0000000..dba95a5
--- /dev/null
+++ b/init.lua
@@ -0,0 +1,191 @@
+--Register Nodes, assign textures, blah, blah...
+minetest.register_node("plasticbox:plasticbox", {
+ description = "Plain Plastic Box",
+ tiles = {"plasticbox.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_black", {
+ description = "Black Plastic Box",
+ tiles = {"plasticbox_black.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_blue", {
+ description = "Blue Plastic Box",
+ tiles = {"plasticbox_blue.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_brown", {
+ description = "Brown Plastic Box",
+ tiles = {"plasticbox_brown.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_cyan", {
+ description = "Cyan Plastic Box",
+ tiles = {"plasticbox_cyan.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_darkgreen", {
+ description = "Dark Green Plastic Box",
+ tiles = {"plasticbox_darkgreen.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_darkgrey", {
+ description = "Dark Gray Plastic Box",
+ tiles = {"plasticbox_darkgrey.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_green", {
+ description = "Green Plastic Box",
+ tiles = {"plasticbox_green.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_grey", {
+ description = "Gray Plastic Box",
+ tiles = {"plasticbox_grey.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_magenta", {
+ description = "Magenta Plastic Box",
+ tiles = {"plasticbox_magenta.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_orange", {
+ description = "Orange Plastic Box",
+ tiles = {"plasticbox_orange.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_pink", {
+ description = "Pink Plastic Box",
+ tiles = {"plasticbox_pink.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_red", {
+ description = "Red Plastic Box",
+ tiles = {"plasticbox_red.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_violet", {
+ description = "Violet Plastic Box",
+ tiles = {"plasticbox_violet.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_white", {
+ description = "White Plastic Box",
+ tiles = {"plasticbox_white.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+minetest.register_node("plasticbox:plasticbox_yellow", {
+ description = "Yellow Plastic Box",
+ tiles = {"plasticbox_yellow.png"},
+ is_ground_content = true,
+ groups = {choppy=1, snappy=1, oddly_breakable_by_hand=1, level=1},
+ sounds = default.node_sound_stone_defaults(),
+})
+
+
+--Register craft for plain box
+minetest.register_craft( {
+ output = "plasticbox:plasticbox 4",
+ recipe = {
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" },
+ { "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" },
+ { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }
+ },
+})
+
+--Register crafts for colored boxes
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_black',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_black'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_blue',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_blue'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_brown',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_brown'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_cyan',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_cyan'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_green',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_green'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_grey',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_grey'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_magenta',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_magenta'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_orange',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_orange'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_pink',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_pink'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_red',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_red'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_violet',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_violet'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_white',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_white'},
+})
+minetest.register_craft({
+ type = "shapeless",
+ output = 'plasticbox:plasticbox_yellow',
+ recipe = {'plasticbox:plasticbox', 'group:basecolor_yellow'},
+})
diff --git a/textures/plasticbox.png b/textures/plasticbox.png
new file mode 100644
index 0000000..4f9bbc9
--- /dev/null
+++ b/textures/plasticbox.png
Binary files differ
diff --git a/textures/plasticbox_black.png b/textures/plasticbox_black.png
new file mode 100644
index 0000000..d0409b3
--- /dev/null
+++ b/textures/plasticbox_black.png
Binary files differ
diff --git a/textures/plasticbox_blue.png b/textures/plasticbox_blue.png
new file mode 100644
index 0000000..fa29a0f
--- /dev/null
+++ b/textures/plasticbox_blue.png
Binary files differ
diff --git a/textures/plasticbox_brown.png b/textures/plasticbox_brown.png
new file mode 100644
index 0000000..6164f9f
--- /dev/null
+++ b/textures/plasticbox_brown.png
Binary files differ
diff --git a/textures/plasticbox_cyan.png b/textures/plasticbox_cyan.png
new file mode 100644
index 0000000..4eefe78
--- /dev/null
+++ b/textures/plasticbox_cyan.png
Binary files differ
diff --git a/textures/plasticbox_darkgreen.png b/textures/plasticbox_darkgreen.png
new file mode 100644
index 0000000..cb021e5
--- /dev/null
+++ b/textures/plasticbox_darkgreen.png
Binary files differ
diff --git a/textures/plasticbox_darkgrey.png b/textures/plasticbox_darkgrey.png
new file mode 100644
index 0000000..d20c724
--- /dev/null
+++ b/textures/plasticbox_darkgrey.png
Binary files differ
diff --git a/textures/plasticbox_green.png b/textures/plasticbox_green.png
new file mode 100644
index 0000000..1811f19
--- /dev/null
+++ b/textures/plasticbox_green.png
Binary files differ
diff --git a/textures/plasticbox_grey.png b/textures/plasticbox_grey.png
new file mode 100644
index 0000000..cbed434
--- /dev/null
+++ b/textures/plasticbox_grey.png
Binary files differ
diff --git a/textures/plasticbox_magenta.png b/textures/plasticbox_magenta.png
new file mode 100644
index 0000000..f390bc6
--- /dev/null
+++ b/textures/plasticbox_magenta.png
Binary files differ
diff --git a/textures/plasticbox_orange.png b/textures/plasticbox_orange.png
new file mode 100644
index 0000000..df004a9
--- /dev/null
+++ b/textures/plasticbox_orange.png
Binary files differ
diff --git a/textures/plasticbox_pink.png b/textures/plasticbox_pink.png
new file mode 100644
index 0000000..c315b65
--- /dev/null
+++ b/textures/plasticbox_pink.png
Binary files differ
diff --git a/textures/plasticbox_red.png b/textures/plasticbox_red.png
new file mode 100644
index 0000000..e7c5aac
--- /dev/null
+++ b/textures/plasticbox_red.png
Binary files differ
diff --git a/textures/plasticbox_violet.png b/textures/plasticbox_violet.png
new file mode 100644
index 0000000..428738b
--- /dev/null
+++ b/textures/plasticbox_violet.png
Binary files differ
diff --git a/textures/plasticbox_white.png b/textures/plasticbox_white.png
new file mode 100644
index 0000000..ec4a403
--- /dev/null
+++ b/textures/plasticbox_white.png
Binary files differ
diff --git a/textures/plasticbox_yellow.png b/textures/plasticbox_yellow.png
new file mode 100644
index 0000000..c0e2679
--- /dev/null
+++ b/textures/plasticbox_yellow.png
Binary files differ