mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
19 lines
802 B
Plaintext
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
|