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:
coiax
2017-01-26 13:37:22 +01:00
committed by AnturK
parent 1b56ab5e26
commit 338e67808e
2 changed files with 24 additions and 5 deletions
+13
View File
@@ -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"