From 358a6085a1dcba99aaef4d1f2842ab290b47229f Mon Sep 17 00:00:00 2001 From: Jalleo Date: Tue, 30 Jan 2018 15:17:53 +0000 Subject: [PATCH 1/2] Potato battery nerf (#35081) * Very temp I want to see what people believe is a more suitable size because this is ridiculous * Damn comments being my bane when I have to redo a local branch and mess up grr * Does the request from the maintainer --- code/modules/hydroponics/plant_genes.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/hydroponics/plant_genes.dm b/code/modules/hydroponics/plant_genes.dm index 0dab5048ad..e5c5f89ab5 100644 --- a/code/modules/hydroponics/plant_genes.dm +++ b/code/modules/hydroponics/plant_genes.dm @@ -212,7 +212,7 @@ // Cell recharging trait. Charges all mob's power cells to (potency*rate)% mark when eaten. // Generates sparks on squash. // Small (potency*rate*5) chance to shock squish or slip target for (potency*rate*5) damage. - // Multiplies max charge by (rate*1000) when used in potato power cells. + // Also affects plant batteries see capatative cell production datum name = "Electrical Activity" rate = 0.2 @@ -355,8 +355,8 @@ // The secret of potato supercells! var/datum/plant_gene/trait/cell_charge/CG = G.seed.get_gene(/datum/plant_gene/trait/cell_charge) - if(CG) // 10x charge for deafult cell charge gene - 20 000 with 100 potency. - pocell.maxcharge *= CG.rate*1000 + if(CG) // Cell charge max is now 40MJ or otherwise known as 400KJ (Same as bluespace powercells) + pocell.maxcharge *= CG.rate*100 pocell.charge = pocell.maxcharge pocell.name = "[G.name] battery" pocell.desc = "A rechargeable plant-based power cell. This one has a rating of [DisplayEnergy(pocell.maxcharge)], and you should not swallow it."