This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
forked from Proxima-Project/Proxi-Bay12
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from Proxima-Project/update
Update
- Loading branch information
Showing
89 changed files
with
15,076 additions
and
2,057 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/obj/item/device/radio/utility | ||
name = "silenced walkie-talkie" | ||
desc = "A silenced radio can only be heard by the person holding it, and it uses three times less power" | ||
icon = 'icons/bos/obj/radio.dmi' | ||
icon_state = "utility" | ||
item_state = "utility" | ||
power_usage = 5 | ||
canhear_range = 0 | ||
|
||
/obj/item/device/radio/utility/sec | ||
name = "silenced security walkie-talkie" | ||
icon_state = "utility_sec" | ||
item_state = "utility_sec" | ||
frequency = SEC_FREQ | ||
|
||
/obj/item/device/radio/utility/eng | ||
name = "silenced engineering walkie-talkie" | ||
icon_state = "utility_eng" | ||
item_state = "utility_eng" | ||
frequency = ENG_FREQ | ||
|
||
/obj/item/device/radio/utility/com | ||
name = "silenced command walkie-talkie" | ||
icon_state = "utility_com" | ||
item_state = "utility_com" | ||
frequency = COMM_FREQ | ||
|
||
/obj/item/device/radio/utility/sup | ||
name = "silenced supply walkie-talkie" | ||
icon_state = "utility_sup" | ||
item_state = "utility_sup" | ||
frequency = SUP_FREQ | ||
|
||
/obj/item/device/radio/utility/srv | ||
name = "silenced service walkie-talkie" | ||
icon_state = "utility_srv" | ||
item_state = "utility_srv" | ||
frequency = SRV_FREQ | ||
|
||
/obj/item/device/radio/utility/med | ||
name = "silenced medical walkie-talkie" | ||
icon_state = "utility_med" | ||
item_state = "utility_med" | ||
frequency = MED_FREQ | ||
|
||
/obj/item/device/radio/robust | ||
name = "robust radio" | ||
icon = 'icons/bos/obj/radio.dmi' | ||
icon_state = "big" | ||
item_state = "big" | ||
power_usage = 1 | ||
w_class = ITEM_SIZE_HUGE | ||
|
||
/obj/item/device/radio/robust/sec | ||
name = "security robust radio" | ||
icon_state = "big_sec" | ||
item_state = "big_sec" | ||
frequency = SEC_FREQ | ||
|
||
/obj/item/device/radio/robust/eng | ||
name = "engineering robust radio" | ||
icon_state = "big_eng" | ||
item_state = "big_eng" | ||
frequency = ENG_FREQ | ||
|
||
/obj/item/device/radio/robust/com | ||
name = "command robust radio" | ||
icon_state = "big_com" | ||
item_state = "big_com" | ||
frequency = COMM_FREQ | ||
|
||
/obj/item/device/radio/robust/sup | ||
name = "supply robust radio" | ||
icon_state = "big_sup" | ||
item_state = "big_sup" | ||
frequency = SUP_FREQ | ||
|
||
/obj/item/device/radio/robust/med | ||
name = "medical robust radio" | ||
icon_state = "big_med" | ||
item_state = "big_med" | ||
frequency = MED_FREQ |
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,29 @@ | ||
/obj/item/storage/box/radio | ||
name = "box of common radios" | ||
desc = "A box of spare walkie talkies." | ||
startswith = list(/obj/item/device/radio/utility = 7) | ||
|
||
/obj/item/storage/box/radio/supply | ||
name = "box of supply radios" | ||
desc = "A box of spare walkie talkies. This one labeled 'SUP'." | ||
startswith = list(/obj/item/device/radio/utility/sup = 7) | ||
|
||
/obj/item/storage/box/radio/command | ||
name = "box of command radios" | ||
desc = "A box of spare walkie talkies. This one labeled 'COM'." | ||
startswith = list(/obj/item/device/radio/utility/com = 7) | ||
|
||
/obj/item/storage/box/radio/engineering | ||
name = "box of engineering radios" | ||
desc = "A box of spare walkie talkies. This one labeled 'ENG'." | ||
startswith = list(/obj/item/device/radio/utility/eng = 7) | ||
|
||
/obj/item/storage/box/radio/security | ||
name = "box of security radios" | ||
desc = "A box of spare walkie talkies. This one labeled 'SEC'." | ||
startswith = list(/obj/item/device/radio/utility/sec = 7) | ||
|
||
/obj/item/storage/box/radio/medical | ||
name = "box of medical radios" | ||
desc = "A box of spare walkie talkies. This one labeled 'MED'." | ||
startswith = list(/obj/item/device/radio/utility/med = 7) |
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/clothing/mask/gas/swat/booker | ||
name = "Boris Booker mask" | ||
desc = "A mask in the likeness of Boris Booker's face. It is surprisingly strong and works like a gas mask." | ||
icon = 'icons/bos/obj/clothing/obj_face.dmi' | ||
item_icons = list(slot_wear_mask_str = 'icons/bos/mob/onmob/onmob_face.dmi') | ||
icon_state = "booker" | ||
item_state = "booker" | ||
flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|BLOCKHAIR | ||
body_parts_covered = HEAD|FACE|EYES |
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
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
Oops, something went wrong.