mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
make "computer" mod depend on basic_materials
This commit is contained in:
parent
d17ec1d978
commit
f90834ff06
@ -1,2 +1,3 @@
|
|||||||
default
|
default
|
||||||
homedecor_common
|
homedecor_common
|
||||||
|
basic_materials
|
||||||
|
@ -94,6 +94,5 @@ end
|
|||||||
|
|
||||||
local MODPATH = minetest.get_modpath("computer")
|
local MODPATH = minetest.get_modpath("computer")
|
||||||
dofile(MODPATH.."/computers.lua")
|
dofile(MODPATH.."/computers.lua")
|
||||||
dofile(MODPATH.."/miscitems.lua")
|
|
||||||
dofile(MODPATH.."/recipes.lua")
|
dofile(MODPATH.."/recipes.lua")
|
||||||
dofile(MODPATH.."/tetris.lua")
|
dofile(MODPATH.."/tetris.lua")
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
-- Copyright (C) 2012-2013 Diego Martínez <kaeza@users.sf.net>
|
|
||||||
|
|
||||||
-- This file defines some items in order to not have to depend on other mods.
|
|
||||||
|
|
||||||
local S = homedecor.gettext
|
|
||||||
|
|
||||||
if (not minetest.get_modpath("homedecor")) then
|
|
||||||
|
|
||||||
minetest.register_craftitem(":basic_materials:plastic_sheet", {
|
|
||||||
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 = "basic_materials:plastic_sheet",
|
|
||||||
recipe = "homedecor:plastic_base",
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = 'fuel',
|
|
||||||
recipe = 'homedecor:plastic_base',
|
|
||||||
burntime = 30,
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = 'fuel',
|
|
||||||
recipe = 'basic_materials:plastic_sheet',
|
|
||||||
burntime = 30,
|
|
||||||
})
|
|
||||||
|
|
||||||
end -- not homedecor
|
|
Loading…
Reference in New Issue
Block a user