diff --git a/modular_nova/modules/cellguns/code/mediguns.dm b/modular_nova/modules/cellguns/code/mediguns.dm index 1dce3b37995..b410f5f6fe4 100644 --- a/modular_nova/modules/cellguns/code/mediguns.dm +++ b/modular_nova/modules/cellguns/code/mediguns.dm @@ -49,18 +49,18 @@ // Medigun power cells /obj/item/stock_parts/cell/medigun // This is the cell that mediguns from cargo will come with name = "basic medigun cell" - maxcharge = 1200 - chargerate = 40 + maxcharge = 1.2 * STANDARD_CELL_CHARGE + chargerate = 0.04 * STANDARD_CELL_CHARGE /obj/item/stock_parts/cell/medigun/upgraded name = "upgraded medigun cell" - maxcharge = 1500 - chargerate = 80 + maxcharge = 1.5 * STANDARD_CELL_CHARGE + chargerate = 0.08 * STANDARD_CELL_CHARGE /obj/item/stock_parts/cell/medigun/experimental // This cell type is meant to be used in self charging mediguns like CMO and ERT one. - name = "experiemental medigun cell" - maxcharge = 1800 - chargerate = 100 + name = "experimental medigun cell" + maxcharge = 1.8 * STANDARD_CELL_CHARGE + chargerate = 0.1 * STANDARD_CELL_CHARGE // End of power cells // Upgrade Kit