mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 19:52:40 +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
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
/*******************
|
|
* Hardsuit Modules *
|
|
*******************/
|
|
/datum/uplink_item/item/hardsuit_modules
|
|
category = /datum/uplink_category/hardsuit_modules
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/thermal
|
|
name = "Thermal Scanner"
|
|
item_cost = 2
|
|
path = /obj/item/rig_module/vision/thermal
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/energy_net
|
|
name = "Net Projector"
|
|
item_cost = 3
|
|
path = /obj/item/rig_module/fabricator/energy_net
|
|
|
|
/datum/uplink_item/item/ewar_voice
|
|
name = "Electrowarfare Suite and Voice Synthesiser"
|
|
item_cost = 4
|
|
path = /obj/item/weapon/storage/box/syndie_kit/ewar_voice
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/maneuvering_jets
|
|
name = "Maneuvering Jets"
|
|
item_cost = 4
|
|
path = /obj/item/rig_module/maneuvering_jets
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/egun
|
|
name = "Mounted Energy Gun"
|
|
item_cost = 6
|
|
path = /obj/item/rig_module/mounted/egun
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/power_sink
|
|
name = "Power Sink"
|
|
item_cost = 6
|
|
path = /obj/item/rig_module/power_sink
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/laser_canon
|
|
name = "Mounted Laser Cannon"
|
|
item_cost = 8
|
|
path = /obj/item/rig_module/mounted
|