2018-04-23 16:04:35 +02:00
|
|
|
|
|
|
|
spacecannon = {
|
|
|
|
config = {
|
|
|
|
-- technic EU storage value
|
2018-04-24 11:34:07 +02:00
|
|
|
powerstorage = 10000,
|
2018-04-23 16:04:35 +02:00
|
|
|
|
|
|
|
-- charge value in EU
|
2018-11-15 14:40:14 +01:00
|
|
|
powerrequirement = 2500
|
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")
|
2021-01-10 07:53:26 +01:00
|
|
|
dofile(MP.."/digiline.lua")
|
2018-04-23 16:04:35 +02:00
|
|
|
dofile(MP.."/cannon.lua")
|
2019-07-29 13:37:56 +02:00
|
|
|
dofile(MP.."/node_resilience.lua")
|
2018-04-23 16:04:35 +02:00
|
|
|
|
2021-01-10 07:53:26 +01:00
|
|
|
print("[OK] Spacecannon")
|