2018-12-12 14:04:53 +01:00
|
|
|
-- An Elepower Mod
|
2018-06-18 09:09:43 +02:00
|
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
2018-06-18 10:39:17 +02:00
|
|
|
eletool = rawget(_G, "eletool") or {}
|
|
|
|
eletool.modpath = modpath
|
2018-06-18 09:09:43 +02:00
|
|
|
|
2018-12-12 14:04:53 +01:00
|
|
|
-- Simple tools
|
2018-08-03 12:15:31 +02:00
|
|
|
dofile(modpath .. "/tools.lua")
|
2018-12-12 14:04:53 +01:00
|
|
|
|
|
|
|
-- Complex tools
|
|
|
|
dofile(modpath .. "/soldering.lua")
|
|
|
|
|
|
|
|
-- Crafting
|
2018-08-03 12:15:31 +02:00
|
|
|
dofile(modpath .. "/craftitems.lua")
|
|
|
|
dofile(modpath .. "/crafting.lua")
|
2018-12-17 13:25:41 +01:00
|
|
|
|
2019-02-08 18:21:25 +01:00
|
|
|
-- Repair
|
|
|
|
dofile(modpath .. "/ed_reconstructor.lua")
|
|
|
|
|
2018-12-17 13:25:41 +01:00
|
|
|
-- Armor
|
|
|
|
if minetest.get_modpath("3d_armor") then
|
|
|
|
dofile(modpath .. "/armor.lua")
|
|
|
|
end
|