mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-06 08:11:06 +01:00
16 lines
556 B
Lua
16 lines
556 B
Lua
|
local modpath = minetest.get_modpath("mcl_enchanting")
|
||
|
|
||
|
mcl_enchanting = {
|
||
|
lapis_itemstring = "mcl_dye:blue",
|
||
|
book_offset = vector.new(0, 0.75, 0),
|
||
|
roman_numerals = dofile(modpath .. "/roman_numerals.lua"), -- https://exercism.io/tracks/lua/exercises/roman-numerals/solutions/73c2fb7521e347209312d115f872fa49
|
||
|
}
|
||
|
|
||
|
dofile(modpath .. "/enchantments.lua")
|
||
|
dofile(modpath .. "/features.lua")
|
||
|
dofile(modpath .. "/core.lua")
|
||
|
-- dofile(modpath .. "/ui.lua")
|
||
|
-- dofile(modpath .. "/fx.lua")
|
||
|
-- dofile(modpath .. "/book.lua")
|
||
|
-- dofile(modpath .. "/table.lua")
|