spacecannon/init.lua

25 lines
460 B
Lua
Raw Normal View History

2018-04-23 16:04:35 +02:00
spacecannon = {
config = {
-- technic EU storage value
th_powerstorage = 10000,
ki_powerstorage = 300,
2018-04-23 16:04:35 +02:00
-- charge value in EU
th_powerrequirement = 2500,
ki_powerrequirement = 300
2019-07-29 13:37:56 +02:00
},
node_resilience = {}
2018-04-23 16:04:35 +02:00
}
local MP = minetest.get_modpath("spacecannon")
2018-04-24 09:37:53 +02:00
dofile(MP.."/util.lua")
dofile(MP.."/digiline.lua")
2018-04-23 16:04:35 +02:00
dofile(MP.."/cannon.lua")
dofile(MP.."/ammo.lua")
2019-07-29 13:37:56 +02:00
dofile(MP.."/node_resilience.lua")
2018-04-23 16:04:35 +02:00
print("[OK] Spacecannon")