mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 14:42:56 +00:00
25 lines
701 B
Plaintext
25 lines
701 B
Plaintext
/*****************************Money bag********************************/
|
|
|
|
/obj/item/storage/bag/money
|
|
name = "money bag"
|
|
icon_state = "moneybag"
|
|
force = 10
|
|
throwforce = 0
|
|
burn_state = FLAMMABLE
|
|
burntime = 20
|
|
max_integrity = 100
|
|
w_class = WEIGHT_CLASS_BULKY
|
|
max_w_class = WEIGHT_CLASS_NORMAL
|
|
storage_slots = 40
|
|
max_combined_w_class = 40
|
|
can_hold = list(/obj/item/coin, /obj/item/stack/spacecash)
|
|
|
|
/obj/item/storage/bag/money/vault/New()
|
|
..()
|
|
new /obj/item/coin/silver(src)
|
|
new /obj/item/coin/silver(src)
|
|
new /obj/item/coin/silver(src)
|
|
new /obj/item/coin/silver(src)
|
|
new /obj/item/coin/gold(src)
|
|
new /obj/item/coin/gold(src)
|
|
new /obj/item/coin/adamantine(src) |