summaryrefslogtreecommitdiff
path: root/technic/machines/LV/geothermal.lua
diff options
context:
space:
mode:
authorh-v-smacker <hans-von-smacker+github@gmail.com>2018-03-21 19:09:54 +0300
committerh-v-smacker <hans-von-smacker+github@gmail.com>2018-03-21 19:09:54 +0300
commit74031c2e408d1b73204920fd2c3c87b98167a5ca (patch)
tree69f7307ba079ad20229ef55493642210695f8a52 /technic/machines/LV/geothermal.lua
parentd3aa6b5bd52d2ea2344933831c3974d10430b555 (diff)
leaf recycling for fuel
Diffstat (limited to 'technic/machines/LV/geothermal.lua')
-rw-r--r--technic/machines/LV/geothermal.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/technic/machines/LV/geothermal.lua b/technic/machines/LV/geothermal.lua
index 27f4abc..3282fb8 100644
--- a/technic/machines/LV/geothermal.lua
+++ b/technic/machines/LV/geothermal.lua
@@ -1,7 +1,7 @@
-- A geothermal EU generator
-- Using hot lava and water this device can create energy from steam
-- The machine is only producing LV EUs and can thus not drive more advanced equipment
--- The output is a little more than the coal burning generator (max 300EUs)
+-- The output is 4 times that of the coal burning generator (max 800EUs)
minetest.register_alias("geothermal", "technic:geothermal")
@@ -56,10 +56,10 @@ local run = function(pos, node)
if check == 2 then lava_nodes = lava_nodes + 1 end
end
- if water_nodes == 1 and lava_nodes == 1 then production_level = 25; eu_supply = 50 end
- if water_nodes == 2 and lava_nodes == 1 then production_level = 50; eu_supply = 100 end
- if water_nodes == 1 and lava_nodes == 2 then production_level = 75; eu_supply = 200 end
- if water_nodes == 2 and lava_nodes == 2 then production_level = 100; eu_supply = 300 end
+ if water_nodes == 1 and lava_nodes == 1 then production_level = 25; eu_supply = 200 end
+ if water_nodes == 2 and lava_nodes == 1 then production_level = 50; eu_supply = 400 end
+ if water_nodes == 1 and lava_nodes == 2 then production_level = 75; eu_supply = 600 end
+ if water_nodes == 2 and lava_nodes == 2 then production_level = 100; eu_supply = 800 end
if production_level > 0 then
meta:set_int("LV_EU_supply", eu_supply)