mirror of
https://github.com/cheapie/plasticbox.git
synced 2024-12-04 21:23:50 +01:00
367 lines
14 KiB
Lua
367 lines
14 KiB
Lua
plasticbox = {}
|
|
plasticbox.colorlist = {
|
|
{"black", "Black Plastic"},
|
|
{"blue", "Blue Plastic"},
|
|
{"brown", "Brown Plastic"},
|
|
{"cyan", "Cyan Plastic"},
|
|
{"green", "Green Plastic"},
|
|
{"grey", "Grey Plastic"},
|
|
{"magenta", "Magenta Plastic"},
|
|
{"orange", "Orange Plastic"},
|
|
{"pink", "Pink Plastic"},
|
|
{"red", "Red Plastic"},
|
|
{"violet", "Violet Plastic"},
|
|
{"white", "White Plastic"},
|
|
{"yellow", "Yellow Plastic"},
|
|
}
|
|
|
|
|
|
|
|
--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(),
|
|
})
|
|
minetest.register_craftitem("plasticbox:plastic_powder", {
|
|
image = "plastic_powder.png",
|
|
description="Plastic Powder",
|
|
})
|
|
|
|
|
|
--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 plastic powder
|
|
|
|
if minetest.get_modpath("technic") then
|
|
local grinder_recipes = {
|
|
{"plasticbox:plasticbox", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_black", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_blue", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_brown", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_cyan", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_darkgreen", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_darkgrey", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_green", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_grey", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_magenta", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_orange", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_pink", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_red", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_violet", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_white", "plasticbox:plastic_powder 2"},
|
|
{"plasticbox:plasticbox_yellow", "plasticbox:plastic_powder 2"},
|
|
{"homedecor:plastic_sheeting", "plasticbox:plastic_powder 1"}
|
|
}
|
|
for _, data in pairs(grinder_recipes) do
|
|
technic.register_grinder_recipe({input=data[1], output=data[2]})
|
|
end
|
|
else
|
|
minetest.register_craft( {
|
|
output = "homedecor:plastic_sheeting 7",
|
|
recipe = {
|
|
{ "plasticbox:plasticbox", "plasticbox:plasticbox" },
|
|
{ "plasticbox:plasticbox", "plasticbox:plasticbox" },
|
|
},
|
|
})
|
|
end
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "homedecor:plastic_sheeting",
|
|
recipe = "plasticbox:plastic_powder",
|
|
})
|
|
|
|
--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'},
|
|
})
|
|
|
|
--ugly below here.
|
|
|
|
if minetest.get_modpath("moreblocks") then
|
|
register_stair(
|
|
"plasticbox",
|
|
"plasticbox",
|
|
"plasticbox:plasticbox",
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox.png",
|
|
},
|
|
"Plastic",
|
|
"plasticbox",
|
|
0
|
|
)
|
|
register_slab(
|
|
"plasticbox",
|
|
"plasticbox",
|
|
"plasticbox:plasticbox",
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox.png",
|
|
},
|
|
"Plastic",
|
|
"plasticbox",
|
|
0
|
|
)
|
|
|
|
register_panel(
|
|
"plasticbox",
|
|
"plasticbox",
|
|
"plasticbox:plasticbox",
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox.png",
|
|
},
|
|
"Plastic",
|
|
"plasticbox",
|
|
0
|
|
)
|
|
|
|
register_micro(
|
|
"plasticbox",
|
|
"plasticbox",
|
|
"plasticbox:plasticbox",
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox.png",
|
|
},
|
|
"Plastic",
|
|
"plasticbox",
|
|
0
|
|
)
|
|
table.insert(circular_saw.known_stairs, "plasticbox:plasticbox")
|
|
|
|
end
|
|
|
|
|
|
|
|
for i in ipairs(plasticbox.colorlist) do
|
|
local colorname = plasticbox.colorlist[i][1]
|
|
local desc = plasticbox.colorlist[i][2]
|
|
|
|
if minetest.get_modpath("moreblocks") then
|
|
register_stair(
|
|
"plasticbox",
|
|
"plasticbox_"..colorname,
|
|
"plasticbox:plasticbox_"..colorname,
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox_"..colorname..".png",
|
|
},
|
|
desc,
|
|
"plasticbox_"..colorname,
|
|
0
|
|
)
|
|
register_slab(
|
|
"plasticbox",
|
|
"plasticbox_"..colorname,
|
|
"plasticbox:plasticbox_"..colorname,
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox_"..colorname..".png",
|
|
},
|
|
desc,
|
|
"plasticbox_"..colorname,
|
|
0
|
|
)
|
|
|
|
register_panel(
|
|
"plasticbox",
|
|
"plasticbox_"..colorname,
|
|
"plasticbox:plasticbox_"..colorname,
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox_"..colorname..".png",
|
|
},
|
|
desc,
|
|
"plasticbox_"..colorname,
|
|
0
|
|
)
|
|
|
|
register_micro(
|
|
"plasticbox",
|
|
"plasticbox_"..colorname,
|
|
"plasticbox:plasticbox_"..colorname,
|
|
{ snappy=1,choppy=2,oddly_breakable_by_hand=1,flammable=2,not_in_creative_inventory=1 },
|
|
{ "plasticbox_"..colorname..".png",
|
|
},
|
|
desc,
|
|
"plasticbox_"..colorname,
|
|
0
|
|
)
|
|
table.insert(circular_saw.known_stairs, "plasticbox:plasticbox_"..colorname)
|
|
|
|
end
|
|
end
|