Files
Paradise/code/datums/uplink_items/uplink_special.dm
2024-05-04 03:07:59 +00:00

19 lines
802 B
Plaintext

/// This uplink catagory is for uplink items avalible by special circumstances. Think station traits, or if some event rolling in a round gave traitors special items, or an objective.
/datum/uplink_item/special
category = "Special Offers"
can_discount = FALSE
surplus = 0
excludefrom = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST, UPLINK_TYPE_TRAITOR, UPLINK_TYPE_SIT)
/datum/uplink_item/special/autosurgeon
name = "Syndicate Autosurgeon"
desc = "A multi-use autosurgeon for implanting whatever you want into yourself. Rip that station apart and make it part of you."
reference = "SACR"
item = /obj/item/autosurgeon/organ/syndicate
cost = 25
/datum/uplink_item/special/autosurgeon/New()
..()
if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION))
excludefrom -= UPLINK_TYPE_TRAITOR