spacecannon/init.lua

23 lines
377 B
Lua
Raw Normal View History

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
powerrequirement = 2500,
2018-04-24 11:34:07 +02:00
-- fuel item and count
power_item = "default:mese_crystal",
power_item_count = 1
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")
2018-04-23 16:04:35 +02:00
dofile(MP.."/cannon.lua")
print("[OK] Spacecannon")