Skip to content

Commit

Permalink
Fixes medigun's cells capacity (#2651)
Browse files Browse the repository at this point in the history
* Update mediguns.dm

* Update modular_nova/modules/cellguns/code/mediguns.dm

---------

Co-authored-by: Iajret <[email protected]>
Co-authored-by: Bloop <[email protected]>
  • Loading branch information
3 people authored Mar 29, 2024
1 parent bb03c1c commit be0fac2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions modular_nova/modules/cellguns/code/mediguns.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit be0fac2

Please sign in to comment.