├── .github └── workflows │ └── luacheck.yml ├── .gitignore ├── .luacheckrc ├── LICENSE.txt ├── README.md ├── init.lua ├── locale ├── drawers.be.tr ├── drawers.cs.tr ├── drawers.de.tr ├── drawers.el.tr ├── drawers.eo.tr ├── drawers.es.tr ├── drawers.et.tr ├── drawers.fr.tr ├── drawers.id.tr ├── drawers.it.tr ├── drawers.ms.tr ├── drawers.nb.tr ├── drawers.nl.tr ├── drawers.pl.tr ├── drawers.pt.tr ├── drawers.pt_BR.tr ├── drawers.ru.tr ├── drawers.sv.tr ├── drawers.tr.tr ├── drawers.uk.tr ├── drawers.zh_CN.tr └── template.txt ├── lua ├── api.lua ├── controller.lua ├── helpers.lua └── visual.lua ├── mod.conf ├── screenshot.png ├── settingtypes.txt ├── sounds ├── drawers_interact.1.ogg └── drawers_interact.2.ogg └── textures ├── drawers_acacia_wood.png ├── drawers_acacia_wood_front_1.png ├── drawers_acacia_wood_front_2.png ├── drawers_acacia_wood_front_4.png ├── drawers_acacia_wood_mcl.png ├── drawers_acacia_wood_mcl_front_1.png ├── drawers_acacia_wood_mcl_front_2.png ├── drawers_acacia_wood_mcl_front_4.png ├── drawers_aspen_wood.png ├── drawers_aspen_wood_front_1.png ├── drawers_aspen_wood_front_2.png ├── drawers_aspen_wood_front_4.png ├── drawers_birch_wood.png ├── drawers_birch_wood_front_1.png ├── drawers_birch_wood_front_2.png ├── drawers_birch_wood_front_4.png ├── drawers_controller_front.png ├── drawers_controller_side.png ├── drawers_controller_top.png ├── drawers_dark_oak_wood.png ├── drawers_dark_oak_wood_front_1.png ├── drawers_dark_oak_wood_front_2.png ├── drawers_dark_oak_wood_front_4.png ├── drawers_junglewood.png ├── drawers_junglewood_front_1.png ├── drawers_junglewood_front_2.png ├── drawers_junglewood_front_4.png ├── drawers_junglewood_mcl.png ├── drawers_junglewood_mcl_front_1.png ├── drawers_junglewood_mcl_front_2.png ├── drawers_junglewood_mcl_front_4.png ├── drawers_oak_wood.png ├── drawers_oak_wood_front_1.png ├── drawers_oak_wood_front_2.png ├── drawers_oak_wood_front_4.png ├── drawers_pine_wood.png ├── drawers_pine_wood_front_1.png ├── drawers_pine_wood_front_2.png ├── drawers_pine_wood_front_4.png ├── drawers_spruce_wood.png ├── drawers_spruce_wood_front_1.png ├── drawers_spruce_wood_front_2.png ├── drawers_spruce_wood_front_4.png ├── drawers_trim.png ├── drawers_upgrade_diamond.png ├── drawers_upgrade_emerald.png ├── drawers_upgrade_gold.png ├── drawers_upgrade_iron.png ├── drawers_upgrade_mithril.png ├── drawers_upgrade_obsidian.png ├── drawers_upgrade_slot_bg.png ├── drawers_upgrade_steel.png ├── drawers_upgrade_template.png ├── drawers_wood.png ├── drawers_wood_front_1.png ├── drawers_wood_front_2.png └── drawers_wood_front_4.png /.github/workflows/luacheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/.github/workflows/luacheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/.luacheckrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/README.md -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/init.lua -------------------------------------------------------------------------------- /locale/drawers.be.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.be.tr -------------------------------------------------------------------------------- /locale/drawers.cs.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.cs.tr -------------------------------------------------------------------------------- /locale/drawers.de.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.de.tr -------------------------------------------------------------------------------- /locale/drawers.el.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.el.tr -------------------------------------------------------------------------------- /locale/drawers.eo.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.eo.tr -------------------------------------------------------------------------------- /locale/drawers.es.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.es.tr -------------------------------------------------------------------------------- /locale/drawers.et.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.et.tr -------------------------------------------------------------------------------- /locale/drawers.fr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.fr.tr -------------------------------------------------------------------------------- /locale/drawers.id.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.id.tr -------------------------------------------------------------------------------- /locale/drawers.it.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.it.tr -------------------------------------------------------------------------------- /locale/drawers.ms.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.ms.tr -------------------------------------------------------------------------------- /locale/drawers.nb.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.nb.tr -------------------------------------------------------------------------------- /locale/drawers.nl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.nl.tr -------------------------------------------------------------------------------- /locale/drawers.pl.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.pl.tr -------------------------------------------------------------------------------- /locale/drawers.pt.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.pt.tr -------------------------------------------------------------------------------- /locale/drawers.pt_BR.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.pt_BR.tr -------------------------------------------------------------------------------- /locale/drawers.ru.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.ru.tr -------------------------------------------------------------------------------- /locale/drawers.sv.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.sv.tr -------------------------------------------------------------------------------- /locale/drawers.tr.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.tr.tr -------------------------------------------------------------------------------- /locale/drawers.uk.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.uk.tr -------------------------------------------------------------------------------- /locale/drawers.zh_CN.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/drawers.zh_CN.tr -------------------------------------------------------------------------------- /locale/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/locale/template.txt -------------------------------------------------------------------------------- /lua/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/lua/api.lua -------------------------------------------------------------------------------- /lua/controller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/lua/controller.lua -------------------------------------------------------------------------------- /lua/helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/lua/helpers.lua -------------------------------------------------------------------------------- /lua/visual.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/lua/visual.lua -------------------------------------------------------------------------------- /mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/mod.conf -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/screenshot.png -------------------------------------------------------------------------------- /settingtypes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sounds/drawers_interact.1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/sounds/drawers_interact.1.ogg -------------------------------------------------------------------------------- /sounds/drawers_interact.2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/sounds/drawers_interact.2.ogg -------------------------------------------------------------------------------- /textures/drawers_acacia_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_mcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_mcl.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_mcl_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_mcl_front_1.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_mcl_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_mcl_front_2.png -------------------------------------------------------------------------------- /textures/drawers_acacia_wood_mcl_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_acacia_wood_mcl_front_4.png -------------------------------------------------------------------------------- /textures/drawers_aspen_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_aspen_wood.png -------------------------------------------------------------------------------- /textures/drawers_aspen_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_aspen_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_aspen_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_aspen_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_aspen_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_aspen_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_birch_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_birch_wood.png -------------------------------------------------------------------------------- /textures/drawers_birch_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_birch_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_birch_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_birch_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_birch_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_birch_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_controller_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_controller_front.png -------------------------------------------------------------------------------- /textures/drawers_controller_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_controller_side.png -------------------------------------------------------------------------------- /textures/drawers_controller_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_controller_top.png -------------------------------------------------------------------------------- /textures/drawers_dark_oak_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_dark_oak_wood.png -------------------------------------------------------------------------------- /textures/drawers_dark_oak_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_dark_oak_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_dark_oak_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_dark_oak_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_dark_oak_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_dark_oak_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_junglewood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_mcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_mcl.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_mcl_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_mcl_front_1.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_mcl_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_mcl_front_2.png -------------------------------------------------------------------------------- /textures/drawers_junglewood_mcl_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_junglewood_mcl_front_4.png -------------------------------------------------------------------------------- /textures/drawers_oak_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_oak_wood.png -------------------------------------------------------------------------------- /textures/drawers_oak_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_oak_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_oak_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_oak_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_oak_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_oak_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_pine_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_pine_wood.png -------------------------------------------------------------------------------- /textures/drawers_pine_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_pine_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_pine_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_pine_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_pine_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_pine_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_spruce_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_spruce_wood.png -------------------------------------------------------------------------------- /textures/drawers_spruce_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_spruce_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_spruce_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_spruce_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_spruce_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_spruce_wood_front_4.png -------------------------------------------------------------------------------- /textures/drawers_trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_trim.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_diamond.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_emerald.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_gold.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_iron.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_mithril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_mithril.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_obsidian.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_slot_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_slot_bg.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_steel.png -------------------------------------------------------------------------------- /textures/drawers_upgrade_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_upgrade_template.png -------------------------------------------------------------------------------- /textures/drawers_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_wood.png -------------------------------------------------------------------------------- /textures/drawers_wood_front_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_wood_front_1.png -------------------------------------------------------------------------------- /textures/drawers_wood_front_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_wood_front_2.png -------------------------------------------------------------------------------- /textures/drawers_wood_front_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/drawers/HEAD/textures/drawers_wood_front_4.png --------------------------------------------------------------------------------