mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-10 01:22:41 +00:00
* Backend * Simplify * Almost ready * Done., i think * You can now craft a money bag * Autodoc * Fingerprints * Earlier return if no money bag * Update code/modules/mining/mint.dm * Update code/modules/mining/mint.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update tgui.bundle.js * Rebuild * Fuckin hell * Rebuild * Update tgui.bundle.js * Update code/modules/mining/mint.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/modules/mining/mint.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
22 lines
603 B
Plaintext
22 lines
603 B
Plaintext
/obj/item/storage/bag/money
|
|
name = "money bag"
|
|
icon_state = "moneybag"
|
|
force = 10
|
|
throwforce = 0
|
|
resistance_flags = FLAMMABLE
|
|
max_integrity = 100
|
|
w_class = WEIGHT_CLASS_BULKY
|
|
max_w_class = WEIGHT_CLASS_NORMAL
|
|
storage_slots = 50
|
|
max_combined_w_class = 50
|
|
can_hold = list(/obj/item/coin, /obj/item/stack/spacecash)
|
|
|
|
/obj/item/storage/bag/money/vault/populate_contents()
|
|
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)
|