├── .gitignore ├── .luacheckrc ├── LICENSE ├── README.md ├── depends.txt ├── description.txt ├── init.lua ├── mod.conf ├── screenshot.png ├── sounds └── xdecor_enchanting.ogg └── textures ├── bg_btn.png ├── book_open.png ├── ench_ui.png ├── enchtable_bottom.png ├── enchtable_side.png ├── enchtable_top.png ├── mese_layout.png ├── xdecor_glyph1.png ├── xdecor_glyph10.png ├── xdecor_glyph11.png ├── xdecor_glyph12.png ├── xdecor_glyph13.png ├── xdecor_glyph14.png ├── xdecor_glyph15.png ├── xdecor_glyph16.png ├── xdecor_glyph17.png ├── xdecor_glyph18.png ├── xdecor_glyph2.png ├── xdecor_glyph3.png ├── xdecor_glyph4.png ├── xdecor_glyph5.png ├── xdecor_glyph6.png ├── xdecor_glyph7.png ├── xdecor_glyph8.png └── xdecor_glyph9.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/.luacheckrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/README.md -------------------------------------------------------------------------------- /depends.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/depends.txt -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/description.txt -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/init.lua -------------------------------------------------------------------------------- /mod.conf: -------------------------------------------------------------------------------- 1 | name = enchanting 2 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/screenshot.png -------------------------------------------------------------------------------- /sounds/xdecor_enchanting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/sounds/xdecor_enchanting.ogg -------------------------------------------------------------------------------- /textures/bg_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/bg_btn.png -------------------------------------------------------------------------------- /textures/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/book_open.png -------------------------------------------------------------------------------- /textures/ench_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/ench_ui.png -------------------------------------------------------------------------------- /textures/enchtable_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/enchtable_bottom.png -------------------------------------------------------------------------------- /textures/enchtable_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/enchtable_side.png -------------------------------------------------------------------------------- /textures/enchtable_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/enchtable_top.png -------------------------------------------------------------------------------- /textures/mese_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/mese_layout.png -------------------------------------------------------------------------------- /textures/xdecor_glyph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph1.png -------------------------------------------------------------------------------- /textures/xdecor_glyph10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph10.png -------------------------------------------------------------------------------- /textures/xdecor_glyph11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph11.png -------------------------------------------------------------------------------- /textures/xdecor_glyph12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph12.png -------------------------------------------------------------------------------- /textures/xdecor_glyph13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph13.png -------------------------------------------------------------------------------- /textures/xdecor_glyph14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph14.png -------------------------------------------------------------------------------- /textures/xdecor_glyph15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph15.png -------------------------------------------------------------------------------- /textures/xdecor_glyph16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph16.png -------------------------------------------------------------------------------- /textures/xdecor_glyph17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph17.png -------------------------------------------------------------------------------- /textures/xdecor_glyph18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph18.png -------------------------------------------------------------------------------- /textures/xdecor_glyph2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph2.png -------------------------------------------------------------------------------- /textures/xdecor_glyph3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph3.png -------------------------------------------------------------------------------- /textures/xdecor_glyph4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph4.png -------------------------------------------------------------------------------- /textures/xdecor_glyph5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph5.png -------------------------------------------------------------------------------- /textures/xdecor_glyph6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph6.png -------------------------------------------------------------------------------- /textures/xdecor_glyph7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph7.png -------------------------------------------------------------------------------- /textures/xdecor_glyph8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph8.png -------------------------------------------------------------------------------- /textures/xdecor_glyph9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minetest-mods/enchanting/HEAD/textures/xdecor_glyph9.png --------------------------------------------------------------------------------