mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 11:58:39 +01:00
More Food (#4644)
Adds more food for the chef to cook. Items include: Bacon Flatbread (Not pizza) Breakfast Wrap Meat Pocket Fish Taco Pineapple Rings Pineapple Pizza Chocolate Truffles Bacon Burger NtMuffin BLT
This commit is contained in:
@@ -295,3 +295,18 @@
|
||||
/obj/item/weapon/storage/lockbox/vials/attackby(obj/item/weapon/W as obj, mob/user as mob)
|
||||
..()
|
||||
update_icon()
|
||||
|
||||
/obj/item/weapon/storage/fancy/chocolate_box
|
||||
icon = 'icons/obj/chocolate.dmi'
|
||||
icon_state = "chocolatebox"
|
||||
icon_type = "chocolatebox"
|
||||
name = "chocolate box"
|
||||
storage_slots = 8
|
||||
can_hold = list(
|
||||
/obj/item/weapon/reagent_containers/food/snacks
|
||||
)
|
||||
|
||||
/obj/item/weapon/storage/fancy/chocolate_box/fill()
|
||||
for(var/i=1; i <= storage_slots; i++)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/random(src)
|
||||
|
||||
|
||||
@@ -49,3 +49,15 @@
|
||||
|
||||
/obj/item/weapon/storage/box/donut/empty
|
||||
startswith = 0
|
||||
|
||||
/obj/item/weapon/storage/box/pineapple
|
||||
icon = 'icons/obj/storage.dmi'
|
||||
icon_state = "pineapple_rings"
|
||||
name = "can of pineapple rings"
|
||||
var/startswith = 6
|
||||
can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/pineapple_ring)
|
||||
|
||||
/obj/item/weapon/storage/box/pineapple/fill()
|
||||
for(var/i=1; i <= startswith; i++)
|
||||
new /obj/item/weapon/reagent_containers/food/snacks/pineapple_ring(src)
|
||||
update_icon()
|
||||
|
||||
@@ -815,7 +815,8 @@
|
||||
/obj/random/junk = 0.9,
|
||||
/obj/item/weapon/spacecash/ewallet/lotto = 0.3,
|
||||
/obj/random/spacecash = 0.3,
|
||||
/obj/item/device/firing_pin = 0.3
|
||||
/obj/item/device/firing_pin = 0.3,
|
||||
/obj/item/weapon/storage/box/pineapple = 0.1
|
||||
)
|
||||
|
||||
/obj/random/hoodie
|
||||
|
||||
Reference in New Issue
Block a user