mirror of
https://github.com/minetest-mods/drawers.git
synced 2024-11-08 07:53:44 +01:00
d3d29fb497
They're still missing some functionality as pipeworks and drops after dug. This will be done in the next commit(s).
71 lines
2.3 KiB
Lua
Executable File
71 lines
2.3 KiB
Lua
Executable File
--[[
|
|
Minetest Mod Storage Drawers - A Mod adding storage drawers
|
|
|
|
Copyright (C) 2017 LNJ <git@lnj.li>
|
|
|
|
MIT License
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
]]
|
|
|
|
drawers = {}
|
|
drawers.drawer_visuals = {}
|
|
|
|
if default then
|
|
drawers.WOOD_SOUNDS = default.node_sound_wood_defaults()
|
|
drawers.WOOD_ITEMSTRING = "group:wood"
|
|
drawers.CHEST_ITEMSTRING = "default:chest"
|
|
elseif mcl_core then -- MineClone 2
|
|
drawers.WOOD_ITEMSTRING = "group:wood"
|
|
drawers.CHEST_ITEMSTRING = "mcl_chests:chest"
|
|
if mcl_sounds then
|
|
drawers.WOOD_SOUNDS = mcl_sounds.node_sound_wood_defaults()
|
|
end
|
|
else
|
|
drawers.WOOD_ITEMSTRING = "wood"
|
|
drawers.CHEST_ITEMSTRING = "chest"
|
|
end
|
|
|
|
|
|
--
|
|
-- Load files
|
|
--
|
|
|
|
local modpath = core.get_modpath("drawers")
|
|
dofile(modpath .. "/lua/helpers.lua")
|
|
dofile(modpath .. "/lua/visual.lua")
|
|
dofile(modpath .. "/lua/api.lua")
|
|
|
|
|
|
--
|
|
-- Register drawers
|
|
--
|
|
|
|
drawers.register_drawer("drawers:wood", {
|
|
description = "Wooden Drawer",
|
|
tiles1 = {"drawers_wood.png", "drawers_wood.png", "drawers_wood.png",
|
|
"drawers_wood.png", "drawers_wood.png", "drawers_wood_front_1.png"},
|
|
tiles4 = {"drawers_wood.png", "drawers_wood.png", "drawers_wood.png",
|
|
"drawers_wood.png", "drawers_wood.png", "drawers_wood_front_4.png"},
|
|
groups = {choppy = 3, oddly_breakable_by_hand = 2},
|
|
sounds = drawers.WOOD_SOUNDS,
|
|
drawer_stack_max_factor = 3 * 8, -- normal chest size
|
|
material = drawers.WOOD_ITEMSTRING
|
|
})
|