mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 07:38:05 +01:00
You can now buy telecrystals in stacks of 5 and 20 (#22818)
🆑 coiax add: Telecrystals can be purchased in stacks of five and twenty. add: The entire stack of telecrystals are added to the uplink when charging them. /🆑
This commit is contained in:
@@ -1038,10 +1038,23 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
|
||||
item = /obj/item/stack/telecrystal
|
||||
cost = 1
|
||||
surplus = 0
|
||||
cant_discount = TRUE
|
||||
// Don't add telecrystals to the purchase_log since
|
||||
// it's just used to buy more items (including itself!)
|
||||
purchase_log_vis = FALSE
|
||||
|
||||
/datum/uplink_item/device_tools/telecrystal/five
|
||||
name = "5 Raw Telecrystals"
|
||||
desc = "Five telecrystals in their rawest and purest form; can be utilized on active uplinks to increase their telecrystal count."
|
||||
item = /obj/item/stack/telecrystal/five
|
||||
cost = 5
|
||||
|
||||
/datum/uplink_item/device_tools/telecrystal/twenty
|
||||
name = "20 Raw Telecrystals"
|
||||
desc = "Twenty telecrystals in their rawest and purest form; can be utilized on active uplinks to increase their telecrystal count."
|
||||
item = /obj/item/stack/telecrystal/twenty
|
||||
cost = 20
|
||||
|
||||
// Implants
|
||||
/datum/uplink_item/implants
|
||||
category = "Implants"
|
||||
|
||||
Reference in New Issue
Block a user