-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Roundstart equipment adjustments for command (#4956)
* AAAAAA * This is why we test the code lol
- Loading branch information
Showing
18 changed files
with
123 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/obj/item/storage/medkit/surgery/cmo/PopulateContents() | ||
if(empty) | ||
return | ||
var/static/items_inside = list( | ||
/obj/item/healthanalyzer/advanced = 1, | ||
/obj/item/stack/medical/gauze/twelve = 1, | ||
/obj/item/stack/medical/suture = 2, | ||
/obj/item/stack/medical/mesh = 2, | ||
/obj/item/reagent_containers/hypospray/medipen = 1, | ||
/obj/item/surgical_drapes = 1, | ||
/obj/item/scalpel = 1, | ||
/obj/item/hemostat = 1, | ||
/obj/item/cautery = 1, | ||
) | ||
generate_items_inside(items_inside,src) |
17 changes: 17 additions & 0 deletions
17
monkestation/code/game/objects/structures/crates_lockers/closets/secure/blueshield.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/obj/structure/closet/secure_closet/blueshield | ||
name = "blueshield's locker" | ||
icon_state = "bs" | ||
icon = 'monkestation/code/modules/blueshift/icons/obj/closet.dmi' | ||
req_access = list(ACCESS_BLUESHIELD) | ||
|
||
/obj/structure/closet/secure_closet/blueshield/New() | ||
..() | ||
new /obj/item/storage/briefcase/secure(src) | ||
new /obj/item/clothing/glasses/hud/security/sunglasses(src) | ||
new /obj/item/storage/medkit/frontier/stocked(src) | ||
new /obj/item/storage/bag/garment/blueshield(src) | ||
new /obj/item/mod/control/pre_equipped/blueshield(src) | ||
new /obj/item/sensor_device/blueshield(src) | ||
new /obj/item/radio/headset/headset_bs(src) | ||
new /obj/item/radio/headset/headset_bs/alt(src) | ||
new /obj/item/storage/photo_album/blueshield(src) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
/obj/effect/landmark/start/blueshield | ||
name = "Blueshield" | ||
icon_state = "Blueshield" | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/obj/item/storage/photo_album/blueshield | ||
name = "photo album (Blueshield)" | ||
icon_state = "album_blue" | ||
persistence_id = "BS" | ||
|
||
/obj/item/storage/photo_album/nt_rep | ||
name = "photo album (Nanotrasen Representative)" | ||
icon_state = "album_blue" | ||
persistence_id = "NTREP" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters