mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-03 05:52:43 +00:00
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
/datum/uplink_category
|
|
var/name = ""
|
|
var/list/datum/uplink_item/items
|
|
|
|
/datum/uplink_category/New()
|
|
..()
|
|
items = list()
|
|
|
|
/datum/uplink_category/proc/can_view(obj/item/device/uplink/U)
|
|
for(var/datum/uplink_item/item in items)
|
|
if(item.can_view(U))
|
|
return 1
|
|
return 0
|
|
|
|
datum/uplink_category/ammunition
|
|
name = "Ammunition"
|
|
|
|
/datum/uplink_category/services
|
|
name = "Services"
|
|
|
|
/datum/uplink_category/armor
|
|
name = "Armor"
|
|
|
|
/datum/uplink_category/badassery
|
|
name = "Badassery"
|
|
|
|
/datum/uplink_category/grenades
|
|
name = "Grenades and Thrown Objects"
|
|
|
|
/datum/uplink_category/hardsuit_modules
|
|
name = "Hardsuit Modules"
|
|
|
|
/datum/uplink_category/implants
|
|
name = "Implants"
|
|
|
|
/datum/uplink_category/medical
|
|
name = "Medical"
|
|
|
|
/datum/uplink_category/stealth_items
|
|
name = "Stealth and Camouflage Items"
|
|
|
|
/datum/uplink_category/stealthy_weapons
|
|
name = "Stealthy and Inconspicuous Weapons"
|
|
|
|
/datum/uplink_category/tools
|
|
name = "Devices and Tools"
|
|
|
|
/datum/uplink_category/visible_weapons
|
|
name = "Highly Visible and Dangerous Weapons"
|
|
|
|
/datum/uplink_category/telecrystals
|
|
name = "Telecrystals"
|
|
|
|
/datum/uplink_category/backup
|
|
name = "Backup"
|