2020-10-27 16:37:25 +01:00
|
|
|
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")
|
2020-10-27 18:19:49 +01:00
|
|
|
dofile(modpath .. "/command.lua")
|
2020-10-27 19:53:49 +01:00
|
|
|
dofile(modpath .. "/tt.lua")
|
2020-10-27 16:37:25 +01:00
|
|
|
-- dofile(modpath .. "/ui.lua")
|
|
|
|
-- dofile(modpath .. "/fx.lua")
|
|
|
|
-- dofile(modpath .. "/book.lua")
|
|
|
|
-- dofile(modpath .. "/table.lua")
|