mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
56 lines
1.6 KiB
Plaintext
56 lines
1.6 KiB
Plaintext
/*******************
|
|
* Hardsuit Modules *
|
|
*******************/
|
|
/datum/uplink_item/item/hardsuit_modules
|
|
category = /datum/uplink_category/hardsuit_modules
|
|
blacklisted = 1
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/thermal
|
|
name = "Thermal Scanner"
|
|
item_cost = 15
|
|
path = /obj/item/rig_module/vision/thermal
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/energy_net
|
|
name = "Net Projector"
|
|
item_cost = 20
|
|
path = /obj/item/rig_module/fabricator/energy_net
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/plasma_cutter
|
|
name = "Plasma Cutter"
|
|
item_cost = 20
|
|
path = /obj/item/rig_module/device/plasmacutter
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/ewar_voice
|
|
name = "Electrowarfare Suite and Voice Synthesiser"
|
|
item_cost = 30
|
|
path = /obj/item/storage/box/syndie_kit/ewar_voice
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/maneuvering_jets
|
|
name = "Maneuvering Jets"
|
|
item_cost = 30
|
|
path = /obj/item/rig_module/maneuvering_jets
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/grenade_launcher
|
|
name = "Grenade Launcher"
|
|
item_cost = 40
|
|
path = /obj/item/rig_module/grenade_launcher
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/chem_dispenser
|
|
name = "Chemical Injector"
|
|
item_cost = 40
|
|
path = /obj/item/rig_module/chem_dispenser/injector
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/power_sink
|
|
name = "Power Sink"
|
|
item_cost = 45
|
|
path = /obj/item/rig_module/power_sink
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/egun
|
|
name = "Mounted Energy Gun"
|
|
item_cost = 60
|
|
path = /obj/item/rig_module/mounted/egun
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/laser_canon
|
|
name = "Mounted Laser Cannon"
|
|
item_cost = 80
|
|
path = /obj/item/rig_module/mounted |