mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-27 16:23:32 +01:00
56d8ce28c8
* Implements stacking and stack overlays * Simplified tiers of cash (1,10,100,500,1000, may remove 500) * Simplified API (dispense_cash, count_cash) Conflicts: code/modules/admin/admin_verbs.dm code/modules/admin/verbs/debug.dm code/modules/economy/ATM.dm
67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
/obj/item/weapon/spacecash
|
|
name = "0 credit chip"
|
|
desc = "It's worth 0 credits."
|
|
gender = PLURAL
|
|
icon = 'icons/obj/items.dmi'
|
|
icon_state = "spacecash"
|
|
opacity = 0
|
|
density = 0
|
|
anchored = 0.0
|
|
force = 1.0
|
|
throwforce = 1.0
|
|
throw_speed = 1
|
|
throw_range = 2
|
|
w_class = 1.0
|
|
var/access = list()
|
|
access = access_crate_cash
|
|
var/worth = 0
|
|
|
|
/obj/item/weapon/spacecash/c1
|
|
name = "1 credip chip"
|
|
icon_state = "spacecash"
|
|
desc = "It's worth 1 credit."
|
|
worth = 1
|
|
|
|
/obj/item/weapon/spacecash/c10
|
|
name = "10 credit chip"
|
|
icon_state = "spacecash10"
|
|
desc = "It's worth 10 credits."
|
|
worth = 10
|
|
|
|
/obj/item/weapon/spacecash/c20
|
|
name = "20 credit chip"
|
|
icon_state = "spacecash20"
|
|
desc = "It's worth 20 credits."
|
|
worth = 20
|
|
|
|
/obj/item/weapon/spacecash/c50
|
|
name = "50 credit chip"
|
|
icon_state = "spacecash50"
|
|
desc = "It's worth 50 credits."
|
|
worth = 50
|
|
|
|
/obj/item/weapon/spacecash/c100
|
|
name = "100 credit chip"
|
|
icon_state = "spacecash100"
|
|
desc = "It's worth 100 credits."
|
|
worth = 100
|
|
|
|
/obj/item/weapon/spacecash/c200
|
|
name = "200 credit chip"
|
|
icon_state = "spacecash200"
|
|
desc = "It's worth 200 credits."
|
|
worth = 200
|
|
|
|
/obj/item/weapon/spacecash/c500
|
|
name = "500 credit chip"
|
|
icon_state = "spacecash500"
|
|
desc = "It's worth 500 credits."
|
|
worth = 500
|
|
|
|
/obj/item/weapon/spacecash/c1000
|
|
name = "1000 credit chip"
|
|
icon_state = "spacecash1000"
|
|
desc = "It's worth 1000 credits."
|
|
worth = 1000
|
|
|