mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-14 12:13:06 +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
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
/*******************************
|
|
* Stealth and Camouflage Items *
|
|
*******************************/
|
|
/datum/uplink_item/item/stealth_items
|
|
category = /datum/uplink_category/stealth_items
|
|
|
|
/datum/uplink_item/item/stealth_items/id
|
|
name = "Agent ID card"
|
|
item_cost = 2
|
|
path = /obj/item/weapon/card/id/syndicate
|
|
|
|
/datum/uplink_item/item/stealth_items/syndigaloshes
|
|
name = "No-Slip Shoes"
|
|
item_cost = 2
|
|
path = /obj/item/clothing/shoes/syndigaloshes
|
|
|
|
/datum/uplink_item/item/stealth_items/spy
|
|
name = "Bug Kit"
|
|
item_cost = 2
|
|
path = /obj/item/weapon/storage/box/syndie_kit/spy
|
|
|
|
/datum/uplink_item/item/stealth_items/chameleon_kit
|
|
name = "Chameleon Kit"
|
|
item_cost = 3
|
|
path = /obj/item/weapon/storage/box/syndie_kit/chameleon
|
|
|
|
/datum/uplink_item/item/stealth_items/chameleon_projector
|
|
name = "Chameleon-Projector"
|
|
item_cost = 4
|
|
path = /obj/item/device/chameleon
|
|
|
|
/datum/uplink_item/item/stealth_items/chameleon_projector
|
|
name = "Chameleon-Projector"
|
|
item_cost = 4
|
|
path = /obj/item/device/chameleon
|
|
|
|
/datum/uplink_item/item/stealth_items/voice
|
|
name = "Voice Changer"
|
|
item_cost = 4
|
|
path = /obj/item/clothing/mask/gas/voice
|
|
|
|
/datum/uplink_item/item/stealth_items/camera_floppy
|
|
name = "Camera Network Access - Floppy"
|
|
item_cost = 6
|
|
path = /obj/item/weapon/disk/file/cameras/syndicate
|