mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
Nugget Box Resprite + Nuggets/Wings/Fries Containers (#95537)
This commit is contained in:
@@ -80,7 +80,7 @@
|
||||
|
||||
/// Nugget Boxes
|
||||
/datum/storage/nugget_box
|
||||
max_slots = 6
|
||||
max_slots = 7
|
||||
|
||||
/datum/storage/nugget_box/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound)
|
||||
. = ..()
|
||||
@@ -89,6 +89,28 @@
|
||||
/obj/item/fish/fryish,
|
||||
))
|
||||
|
||||
/// Wing Boxes
|
||||
/datum/storage/wing_box
|
||||
max_slots = 5
|
||||
|
||||
/datum/storage/wing_box/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound)
|
||||
. = ..()
|
||||
set_holdable(list(
|
||||
/obj/item/food/fried_chicken,
|
||||
))
|
||||
|
||||
/// Fry Boxes
|
||||
/datum/storage/fry_box
|
||||
max_slots = 2
|
||||
|
||||
/datum/storage/fry_box/New(atom/parent, max_slots, max_specific_storage, max_total_storage, rustle_sound, remove_rustle_sound)
|
||||
. = ..()
|
||||
set_holdable(list(
|
||||
/obj/item/food/fries,
|
||||
/obj/item/food/cheesyfries,
|
||||
/obj/item/food/carrotfries,
|
||||
))
|
||||
|
||||
/// Jars of Pickles
|
||||
/datum/storage/pickles_jar
|
||||
max_slots = 10
|
||||
|
||||
Reference in New Issue
Block a user