mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-15 10:04:30 +01:00
Part 3: Storage Improvements (#90476)
Co-authored-by: _0Steven <42909981+00-Steven@users.noreply.github.com> Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
This commit is contained in:
@@ -50,7 +50,7 @@
|
||||
/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind = 50,
|
||||
/obj/item/reagent_containers/cup/soda_cans/monkey_energy = 30,
|
||||
/obj/item/reagent_containers/cup/soda_cans/volt_energy = 15,
|
||||
/obj/item/reagent_containers/cup/soda_cans/thirteenloko = 5,
|
||||
/obj/item/reagent_containers/cup/soda_cans/thirteenloko = 5,
|
||||
)
|
||||
|
||||
/obj/item/storage/cans/sixenergydrink/PopulateContents()
|
||||
@@ -73,20 +73,12 @@
|
||||
/obj/item/storage/bag/quiver/endless
|
||||
name = "endless quiver"
|
||||
desc = "Holds arrows for your bow. A deep digital void is contained within."
|
||||
max_slots = 1
|
||||
|
||||
/obj/item/storage/bag/quiver/endless/Initialize(mapload)
|
||||
. = ..()
|
||||
RegisterSignal(src, COMSIG_ATOM_EXITED, PROC_REF(handle_removed))
|
||||
storage_type = /datum/storage/bag/quiver/endless
|
||||
|
||||
/obj/item/storage/bag/quiver/endless/PopulateContents()
|
||||
. = ..()
|
||||
new arrow_path(src)
|
||||
|
||||
/obj/item/storage/bag/quiver/endless/proc/handle_removed(datum/source, obj/item/gone)
|
||||
new arrow_path(src)
|
||||
|
||||
|
||||
/datum/bitrunning_gimmick/fisher
|
||||
name = "Fisher"
|
||||
|
||||
@@ -125,7 +117,7 @@
|
||||
/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind = 15,
|
||||
/obj/item/reagent_containers/cup/soda_cans/monkey_energy = 15,
|
||||
/obj/item/reagent_containers/cup/soda_cans/volt_energy = 10,
|
||||
/obj/item/reagent_containers/cup/soda_cans/thirteenloko = 5,
|
||||
/obj/item/reagent_containers/cup/soda_cans/thirteenloko = 5,
|
||||
)
|
||||
|
||||
/obj/item/storage/cans/sixgamerdrink/PopulateContents()
|
||||
|
||||
@@ -23,6 +23,8 @@
|
||||
/obj/item/storage/lockbox/bitrunning/decrypted
|
||||
name = "decrypted curiosity"
|
||||
desc = "Compiled from the virtual domain. An extra reward of a successful bitrunner."
|
||||
storage_type = /datum/storage/lockbox/bitrunning_decrypted
|
||||
|
||||
/// What virtual domain did we come from.
|
||||
var/datum/lazy_template/virtual_domain/source_domain
|
||||
|
||||
@@ -42,10 +44,7 @@
|
||||
source_domain = completed_domain
|
||||
|
||||
. = ..()
|
||||
atom_storage.max_specific_storage = WEIGHT_CLASS_NORMAL
|
||||
atom_storage.max_slots = 1
|
||||
atom_storage.max_total_storage = 3
|
||||
atom_storage.locked = STORAGE_NOT_LOCKED
|
||||
|
||||
icon_state = icon_closed
|
||||
playsound(src, 'sound/effects/magic/blink.ogg', 50, TRUE)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user