mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 00:22:12 +00:00
These crystals can be inserted into active uplinks, making it possible to trade them. Variant of https://github.com/ParadiseSS13/Paradise/pull/3174/files. The uplink now always shows the description to avoid annoying button shifting.
30 lines
904 B
Plaintext
30 lines
904 B
Plaintext
/***********
|
|
* Implants *
|
|
***********/
|
|
/datum/uplink_item/item/implants
|
|
category = /datum/uplink_category/implants
|
|
|
|
/datum/uplink_item/item/implants/imp_freedom
|
|
name = "Freedom Implant"
|
|
item_cost = 6
|
|
path = /obj/item/weapon/storage/box/syndie_kit/imp_freedom
|
|
|
|
/datum/uplink_item/item/implants/imp_compress
|
|
name = "Compressed Matter Implant"
|
|
item_cost = 8
|
|
path = /obj/item/weapon/storage/box/syndie_kit/imp_compress
|
|
|
|
/datum/uplink_item/item/implants/imp_explosive
|
|
name = "Explosive Implant (DANGER!)"
|
|
item_cost = 10
|
|
path = /obj/item/weapon/storage/box/syndie_kit/imp_explosive
|
|
|
|
/datum/uplink_item/item/implants/imp_uplink
|
|
name = "Uplink Implant"
|
|
path = /obj/item/weapon/storage/box/syndie_kit/imp_uplink
|
|
|
|
/datum/uplink_item/item/implants/imp_uplink/New()
|
|
..()
|
|
item_cost = round(DEFAULT_TELECRYSTAL_AMOUNT / 2)
|
|
desc = "Contains [round((DEFAULT_TELECRYSTAL_AMOUNT / 2) * 0.8)] Telecrystal\s"
|