Skip to content

Commit

Permalink
Adds cell chargers to more ships and to cargo. (#2755)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

As the name says, most ships had cell chargers but i've corrected those
i've seen.

## Why It's Good For The Game
I don't think cell chargers have any real reason to be rare. The cargo
pack is pretty expensive so it's not cheap to get a ton of chargers.
## Changelog

:cl:
add: Added cell chargers to more ships.
add: Added a cell charger cargo pack.

/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Martinpachu authored Feb 29, 2024
1 parent 5fb4a9d commit ae8e87b
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions _maps/shuttles/independent/independent_box.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -1279,6 +1279,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{
dir = 8
},
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/ship/engineering)
"iU" = (
Expand Down
2 changes: 2 additions & 0 deletions _maps/shuttles/independent/independent_shepherd.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -966,6 +966,8 @@
/obj/structure/cable{
icon_state = "4-8"
},
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/ship/engineering/electrical)
"ii" = (
Expand Down
1 change: 1 addition & 0 deletions _maps/shuttles/inteq/inteq_colossus.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,7 @@
/obj/structure/sign/warning/nosmoking{
pixel_x = -32
},
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/ship/engineering)
"tX" = (
Expand Down
1 change: 1 addition & 0 deletions _maps/shuttles/inteq/inteq_valor.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -4310,6 +4310,7 @@
pixel_x = -32
},
/obj/effect/turf_decal/corner_techfloor_gray/full,
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/ship/maintenance/port)
"NZ" = (
Expand Down
1 change: 1 addition & 0 deletions _maps/shuttles/inteq/inteq_vaquero.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@
/obj/machinery/light/small/directional/west,
/obj/machinery/airalarm/directional/north,
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/grimy,
/area/ship/crew)
"jK" = (
Expand Down
1 change: 1 addition & 0 deletions _maps/shuttles/nanotrasen/nanotrasen_ranger.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
/obj/effect/turf_decal/techfloor{
dir = 4
},
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/mono/dark,
/area/ship/engineering)
"aI" = (
Expand Down
2 changes: 2 additions & 0 deletions _maps/shuttles/roumain/srm_elder.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,8 @@
pixel_y = 21
},
/obj/structure/catwalk/over/plated_catwalk/dark,
/obj/structure/table/wood,
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/ship/engineering/atmospherics)
"eU" = (
Expand Down
7 changes: 7 additions & 0 deletions code/modules/cargo/packs/tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
/obj/item/clothing/glasses/meson/engine)
crate_name = "engineering gear crate"

/datum/supply_pack/tools/cellcharger
name = "Cell Charger Crate"
desc = "Contains a cell charger, able to charge all sorts of power cells."
cost = 4000
contains = list(/obj/machinery/cell_charger)


/datum/supply_pack/tools/rped
name = "RPED crate"
desc = "Tired of deconstructing all of your machines just to replace the power cells? This device has you covered. Actual parts not included."
Expand Down

0 comments on commit ae8e87b

Please sign in to comment.