CPU Generation adjustment

- Doubles CPU generation from APCs. Testing revealed that current values are simply too small.
- Decreases DualCPU hardware boost to +50% CPU generated (instead of +100%)
- Minor code clean-up at hardware selection screen.
This commit is contained in:
Atlantiscze
2015-05-17 02:54:58 +02:00
parent 090112c874
commit bcfbfdedba
4 changed files with 9 additions and 15 deletions

View File

@@ -18,7 +18,7 @@
/datum/malf_hardware/dual_cpu
name = "Secondary Processor Unit"
desc = "Secondary coprocessor that doubles amount of CPU time generated."
desc = "Secondary coprocessor that increases amount of generated CPU power by 50%"
/datum/malf_hardware/dual_ram
name = "Secondary Memory Bank"

View File

@@ -24,18 +24,12 @@
if(choice == "CANCEL")
return
var/note = null
switch(choice)
if("APU Generator")
note = "APU Generator - When enabled it will keep your core powered. Power output is not large enough so your abilities won't be available while running on APU power. It is also very fragile and prone to failure when your physical core is damaged."
if("Turrets Focus Enhancer")
note = "Overcharges turrets to shoot faster. Turrets will also gain higher health and passive regeneration. This however massively increases power usage of turrets, espicially when regenerating."
if("Secondary Processor Unit")
note = "Doubles your CPU time generation."
if("Secondary Memory Bank")
note = "Doubles your CPU time storage."
if("Self-Destruct Explosives")
note = "High yield explosives are attached to your physical mainframe. This hardware comes with activation driver. Explosives will destroy your core and everything around it."
if(choice)
note = choice.desc
if(!note)
error("Hardware without description: [choice]")
return
var/confirmation = input("[note] - Is this what you want?") in list("Yes", "No")