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:
BurgerLUA
2018-05-01 11:11:56 -07:00
committed by Werner
parent e39798b4a7
commit 652baabb5a
11 changed files with 264 additions and 10 deletions
@@ -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()
+2 -1
View File
@@ -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