mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-27 10:02:12 +00:00
* New Station Trait: Cybernetic Revolution + Body Purist Quirk * Mirror! * A hidden lint! * Properly fixes this, and ensures that it has no impact on the game should it ever be bussed in for whatever reason Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> Co-authored-by: Funce <funce.973@gmail.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com>
21 lines
598 B
Plaintext
21 lines
598 B
Plaintext
/datum/uplink_category/special
|
|
name = "Special"
|
|
weight = -3
|
|
|
|
/datum/uplink_item/special
|
|
category = /datum/uplink_category/special
|
|
cant_discount = TRUE
|
|
surplus = 0
|
|
purchasable_from = NONE
|
|
|
|
/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."
|
|
item = /obj/item/autosurgeon/syndicate
|
|
cost = 5
|
|
|
|
/datum/uplink_item/special/autosurgeon/New()
|
|
..()
|
|
if(HAS_TRAIT(SSstation, STATION_TRAIT_CYBERNETIC_REVOLUTION))
|
|
purchasable_from |= UPLINK_TRAITORS
|