Rebalance gas/ion thrusters

This commit is contained in:
Aronai Sieyes
2020-03-10 23:14:04 -04:00
committed by Leshana
parent 0e2346ce8c
commit 465bce2dd4
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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()