mirror of
https://github.com/cheapie/plasticbox.git
synced 2024-12-12 09:03:16 +01:00
Added the ability to craft buckets from plastic
This commit is contained in:
parent
a0f738033d
commit
358edc2b6e
@ -21,6 +21,8 @@ X is Plastic Sheets (from homedecor/pipeworks), - is nothing
|
||||
|
||||
Plain plastic box and a dye. (shapeless)
|
||||
|
||||
Buckets can also be crafted from plastic sheets in place of steel ingots.
|
||||
|
||||
Recycling:
|
||||
|
||||
There are two ways to recycle plastic boxes. If you have Technic installed, plastic boxes of any color can be ground to 2 "plastic powder" and sheets to one powder. Without Technic, craft 4 plastic boxes (plain only) in a square to get 7 powder. In either case, the powder can be cooked in a furnace to make plastic sheets, from which more boxes (or other plastic items) can be made.
|
||||
|
@ -1,2 +1,3 @@
|
||||
homedecor
|
||||
technic?
|
||||
bucket?
|
||||
|
11
init.lua
11
init.lua
@ -364,3 +364,14 @@ for i in ipairs(plasticbox.colorlist) do
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
--Other mods' stuff that can be crafted with plastic
|
||||
if minetest.get_modpath("bucket") then
|
||||
minetest.register_craft( {
|
||||
output = "bucket:bucket_empty",
|
||||
recipe = {
|
||||
{ "homedecor:plastic_sheeting", "", "homedecor:plastic_sheeting" },
|
||||
{ "", "homedecor:plastic_sheeting", "" },
|
||||
},
|
||||
})
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user