mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
* Adds icon and hitsound where needed. * Moves alt_attack to /obj/item and deletes weapons.dm * Replaced /obj/item/weapon with /obj/item * Fixes merge issues. * Fix merge issues.
46 lines
1.3 KiB
Plaintext
46 lines
1.3 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 = 4
|
|
path = /obj/item/rig_module/vision/thermal
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/energy_net
|
|
name = "Net Projector"
|
|
item_cost = 5
|
|
path = /obj/item/rig_module/fabricator/energy_net
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/ewar_voice
|
|
name = "Electrowarfare Suite and Voice Synthesiser"
|
|
item_cost = 6
|
|
path = /obj/item/storage/box/syndie_kit/ewar_voice
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/maneuvering_jets
|
|
name = "Maneuvering Jets"
|
|
item_cost = 8
|
|
path = /obj/item/rig_module/maneuvering_jets
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/egun
|
|
name = "Mounted Energy Gun"
|
|
item_cost = 12
|
|
path = /obj/item/rig_module/mounted/egun
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/power_sink
|
|
name = "Power Sink"
|
|
item_cost = 12
|
|
path = /obj/item/rig_module/power_sink
|
|
|
|
/datum/uplink_item/item/hardsuit_modules/laser_canon
|
|
name = "Mounted Laser Cannon"
|
|
item_cost = 16
|
|
path = /obj/item/rig_module/mounted
|
|
|
|
/datum/uplink_item/item/tools/rig_cooling_unit
|
|
name = "mounted suit cooling unit"
|
|
item_cost = 8
|
|
path = /obj/item/rig_module/cooling_unit
|
|
desc = "A mounted suit cooling unit for use with hardsuits." |