From 465bce2dd40b54c79f560b33119a532ccb9d618d Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Tue, 10 Mar 2020 23:14:04 -0400 Subject: [PATCH] Rebalance gas/ion thrusters --- code/modules/overmap/ships/engines/gas_thruster.dm | 4 ++-- code/modules/overmap/ships/engines/ion_thruster.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/overmap/ships/engines/gas_thruster.dm b/code/modules/overmap/ships/engines/gas_thruster.dm index 4d6a048a3e..04101984c4 100644 --- a/code/modules/overmap/ships/engines/gas_thruster.dm +++ b/code/modules/overmap/ships/engines/gas_thruster.dm @@ -68,12 +68,12 @@ use_power = USE_POWER_OFF power_channel = EQUIP - idle_power_usage = 21600 //6 Wh per tick for default 2 capacitor. Gives them a reason to turn it off, really to nerf backup battery + idle_power_usage = 1000 var/datum/ship_engine/gas_thruster/controller var/thrust_limit = 1 //Value between 1 and 0 to limit the resulting thrust var/volume_per_burn = 15 //20 litres(with bin) - var/charge_per_burn = 36000 //10Wh for default 2 capacitor, chews through that battery power! Makes a trade off of fuel efficient vs energy efficient + var/charge_per_burn = 3600 var/boot_time = 35 var/next_on var/blockage diff --git a/code/modules/overmap/ships/engines/ion_thruster.dm b/code/modules/overmap/ships/engines/ion_thruster.dm index 34e464eef8..3252159391 100644 --- a/code/modules/overmap/ships/engines/ion_thruster.dm +++ b/code/modules/overmap/ships/engines/ion_thruster.dm @@ -46,7 +46,7 @@ var/datum/ship_engine/ion/controller var/thrust_limit = 1 var/on = 1 - var/burn_cost = 750 + var/burn_cost = 7500 var/generated_thrust = 2.5 /obj/machinery/ion_engine/Initialize()