summaryrefslogtreecommitdiff
path: root/homedecor_modpack/computer/miscitems.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:00:20 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:10:04 -0400
commit888b0ebfec8c2eff9015163549a7e47443cb8665 (patch)
tree915080159bfaa6ba6e226087c7ce0e8d5464b518 /homedecor_modpack/computer/miscitems.lua
parentda66780a569712c23ae4f2996cfb4608a9f9d69d (diff)
downloaddreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.gz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.bz2
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.xz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.zip
"explode" all modpacks into their individual components
(you can't have a modpack buried inside a modpack)
Diffstat (limited to 'homedecor_modpack/computer/miscitems.lua')
-rw-r--r--homedecor_modpack/computer/miscitems.lua71
1 files changed, 0 insertions, 71 deletions
diff --git a/homedecor_modpack/computer/miscitems.lua b/homedecor_modpack/computer/miscitems.lua
deleted file mode 100644
index c5017a7..0000000
--- a/homedecor_modpack/computer/miscitems.lua
+++ /dev/null
@@ -1,71 +0,0 @@
-
--- Copyright (C) 2012-2013 Diego Martínez <kaeza@users.sf.net>
--- License is WTFPL (see README.txt).
-
--- This file defines some items in order to not have to depend on other mods.
-
--- Boilerplate to support localized strings if intllib mod is installed.
-local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
-
-if (not minetest.get_modpath("homedecor")) then
-
- minetest.register_craftitem(":homedecor:plastic_sheeting", {
- description = S("Plastic sheet"),
- inventory_image = "homedecor_plastic_sheeting.png",
- })
-
- minetest.register_craftitem(":homedecor:plastic_base", {
- description = S("Unprocessed Plastic base"),
- wield_image = "homedecor_plastic_base.png",
- inventory_image = "homedecor_plastic_base_inv.png",
- })
-
- minetest.register_craft({
- type = "shapeless",
- output = 'homedecor:plastic_base 6',
- recipe = { "default:junglegrass",
- "default:junglegrass",
- "default:junglegrass"
- }
- })
-
- minetest.register_craft({
- type = "shapeless",
- output = 'homedecor:plastic_base 3',
- recipe = { "default:dry_shrub",
- "default:dry_shrub",
- "default:dry_shrub"
- },
- })
-
- minetest.register_craft({
- type = "shapeless",
- output = 'homedecor:plastic_base 4',
- recipe = { "default:leaves",
- "default:leaves",
- "default:leaves",
- "default:leaves",
- "default:leaves",
- "default:leaves"
- }
- })
-
- minetest.register_craft({
- type = "cooking",
- output = "homedecor:plastic_sheeting",
- recipe = "homedecor:plastic_base",
- })
-
- minetest.register_craft({
- type = 'fuel',
- recipe = 'homedecor:plastic_base',
- burntime = 30,
- })
-
- minetest.register_craft({
- type = 'fuel',
- recipe = 'homedecor:plastic_sheeting',
- burntime = 30,
- })
-
-end -- not homedecor