mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-17 20:30:46 +01:00
3735a31e05
* selection target * ugh * fix deadmin * larger * fix paper icons * those are inverted * don't miss that * fix all * point transfer * add nostrip flag to items * un.... teppi * . * end life proc after qdel * this could be null in very rare cases * this has a lot of sleeps, someday should be refactored and check for qdeleted * needs to be an object * qdel check this * use the rsc properly * wtf? * . * fix narrate * . * push * inform user, null it * . * can be null * fix maint lurkers * . * spans * . * fix that too * urg * fix distillery * don't wrap them * needs usr * Update cash_register.dm * quick hook cleanup * lots of fixes * . * clean that up for reasons
40 lines
1019 B
Plaintext
40 lines
1019 B
Plaintext
/***************
|
|
* Telecrystals *
|
|
***************/
|
|
/datum/uplink_item/item/telecrystal
|
|
category = /datum/uplink_category/telecrystals
|
|
blacklisted = 1
|
|
|
|
/datum/uplink_item/item/telecrystal/get_goods(obj/item/uplink/U, location, mob/M)
|
|
return new /obj/item/stack/telecrystal(location, cost(U, M.mind.tcrystals))
|
|
|
|
/datum/uplink_item/item/telecrystal/one
|
|
name = "Telecrystal - 01"
|
|
item_cost = 1
|
|
|
|
/datum/uplink_item/item/telecrystal/five
|
|
name = "Telecrystals - 05"
|
|
item_cost = 5
|
|
|
|
/datum/uplink_item/item/telecrystal/ten
|
|
name = "Telecrystals - 10"
|
|
item_cost = 10
|
|
|
|
/datum/uplink_item/item/telecrystal/twentyfive
|
|
name = "Telecrystals - 25"
|
|
item_cost = 25
|
|
|
|
/datum/uplink_item/item/telecrystal/fifty
|
|
name = "Telecrystals - 50"
|
|
item_cost = 50
|
|
|
|
/datum/uplink_item/item/telecrystal/onehundred
|
|
name = "Telecrystals - 100"
|
|
item_cost = 100
|
|
|
|
/datum/uplink_item/item/telecrystal/all
|
|
name = "Telecrystals - Empty Uplink"
|
|
|
|
/datum/uplink_item/item/telecrystal/all/cost(obj/item/uplink/U, tcrystals)
|
|
return max(1, tcrystals)
|