mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
* Splits uplink categories into separate files and moves other files around * Corrects an incorrect description * Puts uplink categories in uplink_categories into the same order as they are individual files * Mercenaries now spawn with their own private uplink. * Adds a random discount to uplink items that is applied every 15 minutes no message no message * Adds changelog * Fakes announcements are now once again purchasable from the uplink and actually work * Removes a debug line * Adds several existing items to the antag uplink including stun rounds for shotguns, metal foam grenades and more * Refactors boxes.dm to use absolute pathing and for loops for contents Adds changelog
85 lines
2.6 KiB
Plaintext
85 lines
2.6 KiB
Plaintext
/********************
|
|
* Devices and Tools *
|
|
********************/
|
|
/datum/uplink_item/item/tools
|
|
category = /datum/uplink_category/tools
|
|
|
|
/datum/uplink_item/item/tools/toolbox
|
|
name = "Fully Loaded Toolbox"
|
|
item_cost = 1
|
|
path = /obj/item/weapon/storage/toolbox/syndicate
|
|
|
|
/datum/uplink_item/item/tools/plastique
|
|
name = "C-4 (Destroys walls)"
|
|
item_cost = 2
|
|
path = /obj/item/weapon/plastique
|
|
|
|
/datum/uplink_item/item/tools/encryptionkey_radio
|
|
name = "Encrypted Radio Channel Key"
|
|
item_cost = 2
|
|
path = /obj/item/device/encryptionkey/syndicate
|
|
|
|
/datum/uplink_item/item/tools/encryptionkey_binary
|
|
name = "Binary Translator Key"
|
|
item_cost = 3
|
|
path = /obj/item/device/encryptionkey/binary
|
|
|
|
/datum/uplink_item/item/tools/emag
|
|
name = "Cryptographic Sequencer"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/card/emag
|
|
|
|
/datum/uplink_item/item/tools/clerical
|
|
name = "Morphic Clerical Kit"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/storage/box/syndie_kit/clerical
|
|
|
|
/datum/uplink_item/item/tools/space_suit
|
|
name = "Space Suit"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/storage/box/syndie_kit/space
|
|
|
|
/datum/uplink_item/item/tools/thermal
|
|
name = "Thermal Imaging Glasses"
|
|
item_cost = 3
|
|
path = /obj/item/clothing/glasses/thermal/syndi
|
|
|
|
/datum/uplink_item/item/tools/powersink
|
|
name = "Powersink (DANGER!)"
|
|
item_cost = 5
|
|
path = /obj/item/device/powersink
|
|
|
|
/datum/uplink_item/item/tools/ai_module
|
|
name = "Hacked AI Upload Module"
|
|
item_cost = 7
|
|
path = /obj/item/weapon/aiModule/syndicate
|
|
|
|
/datum/uplink_item/item/tools/supply_beacon
|
|
name = "Hacked Supply Beacon (DANGER!)"
|
|
item_cost = 7
|
|
path = /obj/item/supply_beacon
|
|
|
|
/datum/uplink_item/item/tools/teleporter
|
|
name = "Teleporter Circuit Board"
|
|
item_cost = 20
|
|
path = /obj/item/weapon/circuitboard/teleporter
|
|
|
|
/datum/uplink_item/item/tools/money
|
|
name = "Operations Funding"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/storage/secure/briefcase/money
|
|
desc = "A briefcase with 10,000 untraceable thalers for funding your sneaky activities."
|
|
|
|
/datum/uplink_item/item/tools/crystal
|
|
name = "Tradable Crystal"
|
|
item_cost = 1
|
|
path = /obj/item/device/telecrystal
|
|
desc = "A telecrystal that can be transferred from one user to another. Be sure not to give it to just anyone."
|
|
|
|
/datum/uplink_item/item/tools/hacking_tool
|
|
name = "Door Hacking Tool"
|
|
item_cost = 2
|
|
path = /obj/item/device/multitool/hacktool
|
|
desc = "Appears and functions as a standard multitool until the mode is toggled by applying a screwdriver appropriately. \
|
|
When in hacking mode this device will grant full access to any standard airlock within 20 to 40 seconds. \
|
|
This device will also be able to immediately access the last 6 to 8 hacked airlocks." |