mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-24 04:37:08 +01:00
Borgos, borgos.
This commit is contained in:
@@ -105,3 +105,36 @@
|
||||
|
||||
/obj/item/trash/attack(mob/M as mob, mob/living/user as mob)
|
||||
return
|
||||
|
||||
// Custom garbage or whatever
|
||||
|
||||
/obj/item/trash/rkibble
|
||||
name = "bowl of Borg-O's"
|
||||
desc = "Contains every type of scrap material your robot puppy needs to grow big and strong."
|
||||
icon = 'icons/mob/dogborg_vr.dmi'
|
||||
icon_state = "kibble"
|
||||
|
||||
/obj/item/trash/attack(mob/living/M as mob, mob/living/user as mob)
|
||||
if(ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(H.species.trashcan == 1)
|
||||
playsound(H.loc,'sound/items/eatfood.ogg', rand(10,50), 1)
|
||||
user.drop_item()
|
||||
forceMove(H.vore_selected)
|
||||
to_chat(H, "<span class='notice'>You can taste the flavor of garbage. Wait what?</span>")
|
||||
return
|
||||
|
||||
if(isrobot(M))
|
||||
var/mob/living/silicon/robot/R = M
|
||||
if(R.module.type == /obj/item/robot_module/robot/scrubpup) // You can now feed the trash borg yay.
|
||||
playsound(R.loc,'sound/items/eatfood.ogg', rand(10,50), 1)
|
||||
user.drop_item()
|
||||
forceMove(R.vore_selected)
|
||||
R.visible_message("<span class='warning'>[user] feeds [R] with [src]!</span>")
|
||||
return
|
||||
..()
|
||||
|
||||
/obj/item/trash/fancyplate
|
||||
name = "dirty fancy plate"
|
||||
icon = 'icons/obj/trash_vr.dmi'
|
||||
icon_state = "fancyplate"
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
// Custom garbage or whatever
|
||||
|
||||
/obj/item/trash/rkibble
|
||||
name = "bowl of Borg-O's"
|
||||
desc = "Contains every type of scrap material your robot puppy needs to grow big and strong."
|
||||
icon = 'icons/mob/dogborg_vr.dmi'
|
||||
icon_state = "kibble"
|
||||
|
||||
/obj/item/trash/attack(mob/living/M as mob, mob/living/user as mob)
|
||||
if(ishuman(M))
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(H.species.trashcan == 1)
|
||||
playsound(H.loc,'sound/items/eatfood.ogg', rand(10,50), 1)
|
||||
user.drop_item()
|
||||
forceMove(H.vore_selected)
|
||||
to_chat(H, "<span class='notice'>You can taste the flavor of garbage. Wait what?</span>")
|
||||
return
|
||||
|
||||
if(isrobot(M))
|
||||
var/mob/living/silicon/robot/R = M
|
||||
if(R.module.type == /obj/item/robot_module/robot/scrubpup) // You can now feed the trash borg yay.
|
||||
playsound(R.loc,'sound/items/eatfood.ogg', rand(10,50), 1)
|
||||
user.drop_item()
|
||||
forceMove(R.vore_selected)
|
||||
R.visible_message("<span class='warning'>[user] feeds [R] with [src]!</span>")
|
||||
return
|
||||
..()
|
||||
|
||||
/obj/item/trash/fancyplate
|
||||
name = "dirty fancy plate"
|
||||
icon = 'icons/obj/trash_vr.dmi'
|
||||
icon_state = "fancyplate"
|
||||
@@ -5507,3 +5507,613 @@ END CITADEL CHANGE */
|
||||
. = ..()
|
||||
reagents.add_reagent("protein", 12)
|
||||
bitesize = 3
|
||||
|
||||
//I guess we're not always eating PEOPLE.
|
||||
/*
|
||||
/obj/item/reagent_containers/food/snacks/my_new_food
|
||||
name = "cheesemeaties"
|
||||
desc = "The cheese adds a good flavor. Not great. Just good"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cheesemeaties"
|
||||
trash = /obj/item/trash/plate //What I leave behind when eaten (waffles instead of plate = bigsquareplate)
|
||||
center_of_mass = list("x"=16, "y"=16) //If your thing is too huge and you don't want it in the center.
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("gargonzola" = 2, "burning" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/my_new_food/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
bitesize = 3 //How many reagents to transfer per bite?
|
||||
*/
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/sushi // Buff 25 >> 35
|
||||
name = "sushi roll"
|
||||
desc = "A whole sushi roll! Slice it up and enjoy with some soy sauce and wasabi."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "sushi"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/sushi/filled
|
||||
slices_num = 5
|
||||
nutriment_desc = list("rice" = 5, "fish" = 5)
|
||||
nutriment_amt = 20
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/sushi/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 15)
|
||||
bitesize = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/sushi/filled
|
||||
name = "piece of sushi"
|
||||
desc = "A slice of a larger sushi roll, ready to devour."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "sushi_s"
|
||||
bitesize = 5
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/sushi
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled
|
||||
filled = TRUE
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lasagna
|
||||
name = "lasagna"
|
||||
desc = "Meaty, tomato-y, and ready to eat-y. Favorite of cats."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lasagna"
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("tomato" = 4, "meat" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lasagna/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/goulash
|
||||
name = "goulash"
|
||||
desc = "Paprika put to good use, finally, in a soup of meat and vegetables."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "goulash"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("meat" = 2, "vegetables" = 2, "seasoning" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/goulash/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 3) //For meaty things.
|
||||
reagents.add_reagent("water", 5)
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donerkebab
|
||||
name = "doner kebab"
|
||||
desc = "A delicious sandwich-like food from ancient Earth. The meat is typically cooked on a vertical rotisserie."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "doner_kebab"
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("vegetables" = 2, "seasoned meat" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donerkebab/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/roastbeef
|
||||
name = "roast beef"
|
||||
desc = "It's beef. It's roasted. It's been a staple of dining tradition for centuries."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "roastbeef"
|
||||
trash = /obj/item/trash/waffles
|
||||
nutriment_amt = 8
|
||||
nutriment_desc = list("cooked meat" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/roastbeef/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4) //For meaty things.
|
||||
bitesize = 2
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/reishicup
|
||||
name = "reishi's cup"
|
||||
desc = "A chocolate treat with an odd flavor."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "reishiscup"
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("chocolate" = 4, "colors" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/reishicup/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("psilocybin", 3)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/storage/box/wings //This is kinda like the donut box.
|
||||
name = "wing basket"
|
||||
desc = "A basket of chicken wings! Get some before they're all gone! Or maybe you're too late..."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "wings5"
|
||||
var/startswith = 5
|
||||
max_storage_space = ITEMSIZE_COST_SMALL * 5
|
||||
can_hold = list(/obj/item/reagent_containers/food/snacks/chickenwing)
|
||||
foldable = null
|
||||
|
||||
/obj/item/storage/box/wings/Initialize()
|
||||
..()
|
||||
for(var/i=1 to startswith)
|
||||
new /obj/item/reagent_containers/food/snacks/chickenwing(src)
|
||||
update_icon()
|
||||
return
|
||||
|
||||
/obj/item/storage/box/wings/update_icon()
|
||||
var/i = 0
|
||||
for(var/obj/item/reagent_containers/food/snacks/chickenwing/W in contents)
|
||||
i++
|
||||
icon_state = "wings[i]"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/chickenwing
|
||||
name = "chicken wing"
|
||||
desc = "What flavor even is this? Buffalo? Barbeque? Or something more exotic?"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "wing"
|
||||
nutriment_amt = 2
|
||||
nutriment_desc = list("chicken" = 2, "unplacable flavor sauce" = 4)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/chickenwing/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
bitesize = 3
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/hotandsoursoup
|
||||
name = "hot & sour soup"
|
||||
desc = "A soup both spicy and sour from ancient Earth cooking traditions. This one is made with tofu."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "hotandsoursoup"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("spicyness" = 4, "sourness" = 4, "tofu" = 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/hotandsoursoup/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/kitsuneudon
|
||||
name = "kitsune udon"
|
||||
desc = "A purported favorite of kitsunes in ancient japanese myth: udon noodles, fried egg, and tofu."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "kitsuneudon"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("fried egg" = 2, "egg noodles" = 4)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/kitsuneudon/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/generalschicken
|
||||
name = "general's chicken"
|
||||
desc = "Sweet, spicy, and fried. General's Chicken has been around for more than five-hundred years now, and still tastes good."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "generaltso"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("sweet and spicy sauce" = 5, "chicken" = 3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/generalschicken/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/meat/grubmeat
|
||||
name = "grubmeat"
|
||||
desc = "A slab of grub meat, it gives a gentle shock if you touch it"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "grubmeat"
|
||||
center_of_mass = list("x"=16, "y"=10)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/meat/grubmeat/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/bugball
|
||||
name = "bugball"
|
||||
desc = "A hard chitin, dont chip a tooth!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbugball"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/pillbug
|
||||
slices_num = 1
|
||||
trash = /obj/item/reagent_containers/food/snacks/pillbug
|
||||
nutriment_amt = 1
|
||||
nutriment_desc = list("crunchy shell bits" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/bugball/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("carbon", 5)
|
||||
bitesize = 7
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug
|
||||
name = "pillbug"
|
||||
desc = "A delicacy discovered and popularized by a famous restaurant called Mudca's Meat Hut."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbug"
|
||||
trash = /obj/item/reagent_containers/food/snacks/pillbugempty
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("sparkles" = 5, "ancient inca culture" =3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 3)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbugempty
|
||||
name = "pillbug shell"
|
||||
desc = "Waste not, want not."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbugempty"
|
||||
nutriment_amt = 1
|
||||
nutriment_desc = list("crunchy shell bits" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("carbon", 5)
|
||||
bitesize = 3
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/mammi
|
||||
name = "mämmi"
|
||||
desc = "Traditional finnish desert, some like it, others don't. It's drifting in some milk, add sugar!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mammi"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("brothy sweet goodness" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/mammi/Initialize()
|
||||
..()
|
||||
bitesize = 3
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/makaroni
|
||||
name = "makaronilaatikko"
|
||||
desc = "A special kind of macaroni, it's a big dish, and this one has special meat in it."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "makaroni"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("cheese" = 5, "eggs" = 3, "pasta" = 4, "sparkles" = 3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/makaroni/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 7
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobster
|
||||
name = "raw lobster"
|
||||
desc = "a shifty lobster. You can try eating it, but its shell is extremely tough."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lobster_raw"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobster/Initialize()
|
||||
..()
|
||||
bitesize = 0.1
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobstercooked
|
||||
name = "cooked lobster"
|
||||
desc = "a luxurious plate of cooked lobster, its taste accentuated by lemon juice. Reinvigorating!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lobster_cooked"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 20
|
||||
nutriment_desc = list("lemon" = 2, "lobster" = 5, "salad" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobstercooked/Initialize()
|
||||
..()
|
||||
bitesize = 5
|
||||
reagents.add_reagent("protein", 20)
|
||||
reagents.add_reagent("tricordrazine", 5)
|
||||
reagents.add_reagent("iron", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefish
|
||||
name = "raw cuttlefish"
|
||||
desc = "it's an adorable squid! you can't possible be thinking about eating this right?"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cuttlefish_raw"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefish/Initialize()
|
||||
..()
|
||||
bitesize = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefishcooked
|
||||
name = "cooked cuttlefish"
|
||||
desc = "it's a roasted cuttlefish. rubbery, squishy, an acquired taste."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cuttlefish_cooked"
|
||||
nutriment_amt = 20
|
||||
nutriment_desc = list("cuttlefish" = 5, "rubber" = 5, "grease" = 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefishcooked/Initialize()
|
||||
..()
|
||||
bitesize = 5
|
||||
reagents.add_reagent("protein", 10)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfish
|
||||
name = "extra large monkfish"
|
||||
desc = "it's a huge monkfish. better clean it first, you can't possibly eat it like this."
|
||||
icon = 'icons/obj/food48x48_vr.dmi'
|
||||
icon_state = "monkfish_raw"
|
||||
nutriment_amt = 30
|
||||
w_class = ITEMSIZE_HUGE //Is that a monkfish in your pocket, or are you just happy to see me?
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/monkfishfillet
|
||||
slices_num = 6
|
||||
trash = /obj/item/reagent_containers/food/snacks/sliceable/monkfishremains
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfish/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishfillet
|
||||
name = "monkfish fillet"
|
||||
desc = "it's a fillet sliced from a monkfish."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_fillet"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishfillet/Initialize()
|
||||
..()
|
||||
bitesize = 3
|
||||
reagents.add_reagent("protein", 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishcooked
|
||||
name = "seasoned monkfish"
|
||||
desc = "a delicious slice of monkfish prepared with sweet chili and spring onion."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_cooked"
|
||||
nutriment_amt = 10
|
||||
nutriment_desc = list("fish" = 3, "oil" = 1, "sweet chili" = 3, "spring onion" = 2)
|
||||
trash = /obj/item/trash/fancyplate
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishcooked/Initialize()
|
||||
..()
|
||||
bitesize = 4
|
||||
reagents.add_reagent("protein", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfishremains
|
||||
name = "monkfish remains"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_remains"
|
||||
desc = "the work of a madman."
|
||||
w_class = ITEMSIZE_LARGE
|
||||
nutriment_amt = 10
|
||||
slice_path = /obj/item/clothing/head/fish
|
||||
slices_num = 1
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfishremains/Initialize()
|
||||
..()
|
||||
bitesize = 0.01 //impossible to eat
|
||||
reagents.add_reagent("carbon", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/margfrozen
|
||||
name = "frozen margherita pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen cheese" = 5, "frozen tomato" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/margfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo
|
||||
name = "Margherita"
|
||||
desc = "The golden standard of pizzas, it looks drowned in tomato sauce."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/margcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "tomato" = 15, "cheese" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2)
|
||||
reagents.add_reagent("tomatojuice", 10)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/margcargo
|
||||
name = "Margherita slice"
|
||||
desc = "A slice of the classic pizza, it's hard not to spill any tomato juice on yourself."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/margcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/meatfrozen
|
||||
name = "frozen meat pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen meat" = 5, "frozen cow screams" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/meatfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo
|
||||
name = "Meatpizza"
|
||||
desc = "A pizza with meat topping, some of it suspiciously pink."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/meatcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("meat" = 10, "beef" = 10, "squeaky pork" = 15, "longpig" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 20)
|
||||
reagents.add_reagent("tomatojuice", 6)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/meatcargo
|
||||
name = "Meatpizza slice"
|
||||
desc = "A slice of a meaty pizza, there are some bits of supiciously pink meat."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/meatcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/mushfrozen
|
||||
name = "frozen mushroom pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen mushrooms" = 5, "frozen cream" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/mushfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo
|
||||
name = "Mushroompizza"
|
||||
desc = "Very special pizza, it looks to be drowned in cream."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/mushcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "cheese" = 5, "creamy sauce" = 5, "mushroom" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/mushcargo
|
||||
name = "Mushroompizza slice"
|
||||
desc = "Very special pizza slice, it looks to be drowned in cream."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/mushcargp/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/vegfrozen
|
||||
name = "frozen vegtable pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen vegtable chunks" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/vegfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo
|
||||
name = "Vegetablepizza"
|
||||
desc = "At least 10 of Tomato Sapiens were harmed during making this pizza."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/vegcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "tomato" = 20, "cheese" = 5, "eggplant" = 5, "carrot" = 5, "corn" = 5)
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
reagents.add_reagent("tomatojuice", 15)
|
||||
reagents.add_reagent("imidazoline", 10)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/vegcargo
|
||||
name = "Vegtablepizza slice"
|
||||
desc = "At least 10 of Tomato Sapiens were harmed during making this pizza."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/vegcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/pizzabox/margherita/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo(src)
|
||||
|
||||
/obj/item/pizzabox/vegetable/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo(src)
|
||||
|
||||
/obj/item/pizzabox/mushroom/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo(src)
|
||||
|
||||
/obj/item/pizzabox/meat/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo(src)
|
||||
|
||||
@@ -1,609 +0,0 @@
|
||||
//I guess we're not always eating PEOPLE.
|
||||
/*
|
||||
/obj/item/reagent_containers/food/snacks/my_new_food
|
||||
name = "cheesemeaties"
|
||||
desc = "The cheese adds a good flavor. Not great. Just good"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cheesemeaties"
|
||||
trash = /obj/item/trash/plate //What I leave behind when eaten (waffles instead of plate = bigsquareplate)
|
||||
center_of_mass = list("x"=16, "y"=16) //If your thing is too huge and you don't want it in the center.
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("gargonzola" = 2, "burning" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/my_new_food/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
bitesize = 3 //How many reagents to transfer per bite?
|
||||
*/
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/sushi // Buff 25 >> 35
|
||||
name = "sushi roll"
|
||||
desc = "A whole sushi roll! Slice it up and enjoy with some soy sauce and wasabi."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "sushi"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/sushi/filled
|
||||
slices_num = 5
|
||||
nutriment_desc = list("rice" = 5, "fish" = 5)
|
||||
nutriment_amt = 20
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/sushi/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 15)
|
||||
bitesize = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/sushi/filled
|
||||
name = "piece of sushi"
|
||||
desc = "A slice of a larger sushi roll, ready to devour."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "sushi_s"
|
||||
bitesize = 5
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/sushi
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/sushi/filled/filled
|
||||
filled = TRUE
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lasagna
|
||||
name = "lasagna"
|
||||
desc = "Meaty, tomato-y, and ready to eat-y. Favorite of cats."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lasagna"
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("tomato" = 4, "meat" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lasagna/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/goulash
|
||||
name = "goulash"
|
||||
desc = "Paprika put to good use, finally, in a soup of meat and vegetables."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "goulash"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("meat" = 2, "vegetables" = 2, "seasoning" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/goulash/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 3) //For meaty things.
|
||||
reagents.add_reagent("water", 5)
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donerkebab
|
||||
name = "doner kebab"
|
||||
desc = "A delicious sandwich-like food from ancient Earth. The meat is typically cooked on a vertical rotisserie."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "doner_kebab"
|
||||
nutriment_amt = 5
|
||||
nutriment_desc = list("vegetables" = 2, "seasoned meat" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/donerkebab/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2) //For meaty things.
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/roastbeef
|
||||
name = "roast beef"
|
||||
desc = "It's beef. It's roasted. It's been a staple of dining tradition for centuries."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "roastbeef"
|
||||
trash = /obj/item/trash/waffles
|
||||
nutriment_amt = 8
|
||||
nutriment_desc = list("cooked meat" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/roastbeef/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4) //For meaty things.
|
||||
bitesize = 2
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/reishicup
|
||||
name = "reishi's cup"
|
||||
desc = "A chocolate treat with an odd flavor."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "reishiscup"
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("chocolate" = 4, "colors" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/reishicup/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("psilocybin", 3)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/storage/box/wings //This is kinda like the donut box.
|
||||
name = "wing basket"
|
||||
desc = "A basket of chicken wings! Get some before they're all gone! Or maybe you're too late..."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "wings5"
|
||||
var/startswith = 5
|
||||
max_storage_space = ITEMSIZE_COST_SMALL * 5
|
||||
can_hold = list(/obj/item/reagent_containers/food/snacks/chickenwing)
|
||||
foldable = null
|
||||
|
||||
/obj/item/storage/box/wings/Initialize()
|
||||
..()
|
||||
for(var/i=1 to startswith)
|
||||
new /obj/item/reagent_containers/food/snacks/chickenwing(src)
|
||||
update_icon()
|
||||
return
|
||||
|
||||
/obj/item/storage/box/wings/update_icon()
|
||||
var/i = 0
|
||||
for(var/obj/item/reagent_containers/food/snacks/chickenwing/W in contents)
|
||||
i++
|
||||
icon_state = "wings[i]"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/chickenwing
|
||||
name = "chicken wing"
|
||||
desc = "What flavor even is this? Buffalo? Barbeque? Or something more exotic?"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "wing"
|
||||
nutriment_amt = 2
|
||||
nutriment_desc = list("chicken" = 2, "unplacable flavor sauce" = 4)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/chickenwing/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
bitesize = 3
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/hotandsoursoup
|
||||
name = "hot & sour soup"
|
||||
desc = "A soup both spicy and sour from ancient Earth cooking traditions. This one is made with tofu."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "hotandsoursoup"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("spicyness" = 4, "sourness" = 4, "tofu" = 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/hotandsoursoup/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/kitsuneudon
|
||||
name = "kitsune udon"
|
||||
desc = "A purported favorite of kitsunes in ancient japanese myth: udon noodles, fried egg, and tofu."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "kitsuneudon"
|
||||
trash = /obj/item/trash/snack_bowl
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("fried egg" = 2, "egg noodles" = 4)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/kitsuneudon/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/generalschicken
|
||||
name = "general's chicken"
|
||||
desc = "Sweet, spicy, and fried. General's Chicken has been around for more than five-hundred years now, and still tastes good."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "generaltso"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 6
|
||||
nutriment_desc = list("sweet and spicy sauce" = 5, "chicken" = 3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/generalschicken/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/meat/grubmeat
|
||||
name = "grubmeat"
|
||||
desc = "A slab of grub meat, it gives a gentle shock if you touch it"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "grubmeat"
|
||||
center_of_mass = list("x"=16, "y"=10)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/meat/grubmeat/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/bugball
|
||||
name = "bugball"
|
||||
desc = "A hard chitin, dont chip a tooth!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbugball"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/pillbug
|
||||
slices_num = 1
|
||||
trash = /obj/item/reagent_containers/food/snacks/pillbug
|
||||
nutriment_amt = 1
|
||||
nutriment_desc = list("crunchy shell bits" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/bugball/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("carbon", 5)
|
||||
bitesize = 7
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug
|
||||
name = "pillbug"
|
||||
desc = "A delicacy discovered and popularized by a famous restaurant called Mudca's Meat Hut."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbug"
|
||||
trash = /obj/item/reagent_containers/food/snacks/pillbugempty
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("sparkles" = 5, "ancient inca culture" =3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 3)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 6
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbugempty
|
||||
name = "pillbug shell"
|
||||
desc = "Waste not, want not."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "pillbugempty"
|
||||
nutriment_amt = 1
|
||||
nutriment_desc = list("crunchy shell bits" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pillbug/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("carbon", 5)
|
||||
bitesize = 3
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/mammi
|
||||
name = "mämmi"
|
||||
desc = "Traditional finnish desert, some like it, others don't. It's drifting in some milk, add sugar!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mammi"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 3
|
||||
nutriment_desc = list("brothy sweet goodness" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/mammi/Initialize()
|
||||
..()
|
||||
bitesize = 3
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/makaroni
|
||||
name = "makaronilaatikko"
|
||||
desc = "A special kind of macaroni, it's a big dish, and this one has special meat in it."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "makaroni"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("cheese" = 5, "eggs" = 3, "pasta" = 4, "sparkles" = 3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/makaroni/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 1)
|
||||
reagents.add_reagent("shockchem", 6)
|
||||
bitesize = 7
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobster
|
||||
name = "raw lobster"
|
||||
desc = "a shifty lobster. You can try eating it, but its shell is extremely tough."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lobster_raw"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobster/Initialize()
|
||||
..()
|
||||
bitesize = 0.1
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobstercooked
|
||||
name = "cooked lobster"
|
||||
desc = "a luxurious plate of cooked lobster, its taste accentuated by lemon juice. Reinvigorating!"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "lobster_cooked"
|
||||
trash = /obj/item/trash/plate
|
||||
nutriment_amt = 20
|
||||
nutriment_desc = list("lemon" = 2, "lobster" = 5, "salad" = 2)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/lobstercooked/Initialize()
|
||||
..()
|
||||
bitesize = 5
|
||||
reagents.add_reagent("protein", 20)
|
||||
reagents.add_reagent("tricordrazine", 5)
|
||||
reagents.add_reagent("iron", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefish
|
||||
name = "raw cuttlefish"
|
||||
desc = "it's an adorable squid! you can't possible be thinking about eating this right?"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cuttlefish_raw"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefish/Initialize()
|
||||
..()
|
||||
bitesize = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefishcooked
|
||||
name = "cooked cuttlefish"
|
||||
desc = "it's a roasted cuttlefish. rubbery, squishy, an acquired taste."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "cuttlefish_cooked"
|
||||
nutriment_amt = 20
|
||||
nutriment_desc = list("cuttlefish" = 5, "rubber" = 5, "grease" = 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/cuttlefishcooked/Initialize()
|
||||
..()
|
||||
bitesize = 5
|
||||
reagents.add_reagent("protein", 10)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfish
|
||||
name = "extra large monkfish"
|
||||
desc = "it's a huge monkfish. better clean it first, you can't possibly eat it like this."
|
||||
icon = 'icons/obj/food48x48_vr.dmi'
|
||||
icon_state = "monkfish_raw"
|
||||
nutriment_amt = 30
|
||||
w_class = ITEMSIZE_HUGE //Is that a monkfish in your pocket, or are you just happy to see me?
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/monkfishfillet
|
||||
slices_num = 6
|
||||
trash = /obj/item/reagent_containers/food/snacks/sliceable/monkfishremains
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfish/Initialize()
|
||||
..()
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishfillet
|
||||
name = "monkfish fillet"
|
||||
desc = "it's a fillet sliced from a monkfish."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_fillet"
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishfillet/Initialize()
|
||||
..()
|
||||
bitesize = 3
|
||||
reagents.add_reagent("protein", 1)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishcooked
|
||||
name = "seasoned monkfish"
|
||||
desc = "a delicious slice of monkfish prepared with sweet chili and spring onion."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_cooked"
|
||||
nutriment_amt = 10
|
||||
nutriment_desc = list("fish" = 3, "oil" = 1, "sweet chili" = 3, "spring onion" = 2)
|
||||
trash = /obj/item/trash/fancyplate
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkfishcooked/Initialize()
|
||||
..()
|
||||
bitesize = 4
|
||||
reagents.add_reagent("protein", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfishremains
|
||||
name = "monkfish remains"
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "monkfish_remains"
|
||||
desc = "the work of a madman."
|
||||
w_class = ITEMSIZE_LARGE
|
||||
nutriment_amt = 10
|
||||
slice_path = /obj/item/clothing/head/fish
|
||||
slices_num = 1
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/monkfishremains/Initialize()
|
||||
..()
|
||||
bitesize = 0.01 //impossible to eat
|
||||
reagents.add_reagent("carbon", 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sobakacube
|
||||
name = "sobaka cube"
|
||||
monkey_type = "Sobaka"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sarucube
|
||||
name = "saru cube"
|
||||
monkey_type = "Saru"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/sparracube
|
||||
name = "sparra cube"
|
||||
monkey_type = "Sparra"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/wolpincube
|
||||
name = "wolpin cube"
|
||||
monkey_type = "Wolpin"
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/margfrozen
|
||||
name = "frozen margherita pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen cheese" = 5, "frozen tomato" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/margfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo
|
||||
name = "Margherita"
|
||||
desc = "The golden standard of pizzas, it looks drowned in tomato sauce."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/margcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "tomato" = 15, "cheese" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 2)
|
||||
reagents.add_reagent("tomatojuice", 10)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/margcargo
|
||||
name = "Margherita slice"
|
||||
desc = "A slice of the classic pizza, it's hard not to spill any tomato juice on yourself."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "margharita_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/margcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/meatfrozen
|
||||
name = "frozen meat pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen meat" = 5, "frozen cow screams" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/meatfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo
|
||||
name = "Meatpizza"
|
||||
desc = "A pizza with meat topping, some of it suspiciously pink."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/meatcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("meat" = 10, "beef" = 10, "squeaky pork" = 15, "longpig" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 20)
|
||||
reagents.add_reagent("tomatojuice", 6)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/meatcargo
|
||||
name = "Meatpizza slice"
|
||||
desc = "A slice of a meaty pizza, there are some bits of supiciously pink meat."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "meat_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/meatcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/mushfrozen
|
||||
name = "frozen mushroom pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen mushrooms" = 5, "frozen cream" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/mushfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo
|
||||
name = "Mushroompizza"
|
||||
desc = "Very special pizza, it looks to be drowned in cream."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/mushcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "cheese" = 5, "creamy sauce" = 5, "mushroom" = 5)
|
||||
nutriment_amt = 10
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/mushcargo
|
||||
name = "Mushroompizza slice"
|
||||
desc = "Very special pizza slice, it looks to be drowned in cream."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "mushroom_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/mushcargp/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/vegfrozen
|
||||
name = "frozen vegtable pizza"
|
||||
desc = "It's frozen rock solid, better thaw it in a microwave."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_frozen"
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_amt = 15
|
||||
nutriment_desc = list("ice" = 5, "toothache" = 1, "frozen vegtable chunks" = 5)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/pizza/vegfrozen/Initialize()
|
||||
..()
|
||||
bitesize = 20
|
||||
//reagents.add_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo
|
||||
name = "Vegetablepizza"
|
||||
desc = "At least 10 of Tomato Sapiens were harmed during making this pizza."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_cargo"
|
||||
slice_path = /obj/item/reagent_containers/food/snacks/slice/vegcargo
|
||||
slices_num = 6
|
||||
center_of_mass = list("x"=16, "y"=11)
|
||||
nutriment_desc = list("pizza crust" = 10, "tomato" = 20, "cheese" = 5, "eggplant" = 5, "carrot" = 5, "corn" = 5)
|
||||
nutriment_amt = 5
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo/Initialize()
|
||||
..()
|
||||
reagents.add_reagent("protein", 4)
|
||||
reagents.add_reagent("tomatojuice", 15)
|
||||
reagents.add_reagent("imidazoline", 10)
|
||||
bitesize = 2
|
||||
//reagents.remove_reagent("frostoil",3)
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/vegcargo
|
||||
name = "Vegtablepizza slice"
|
||||
desc = "At least 10 of Tomato Sapiens were harmed during making this pizza."
|
||||
icon = 'icons/obj/food_vr.dmi'
|
||||
icon_state = "vegetable_pizza_slice_cargo"
|
||||
filling_color = "#BAA14C"
|
||||
bitesize = 2
|
||||
center_of_mass = list("x"=16, "y"=13)
|
||||
whole_path = /obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/slice/vegcargo/filled
|
||||
filled = TRUE
|
||||
|
||||
/obj/item/pizzabox/margherita/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/margcargo(src)
|
||||
|
||||
/obj/item/pizzabox/vegetable/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/vegcargo(src)
|
||||
|
||||
/obj/item/pizzabox/mushroom/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/mushcargo(src)
|
||||
|
||||
/obj/item/pizzabox/meat/Initialize()
|
||||
pizza = new /obj/item/reagent_containers/food/snacks/sliceable/pizza/meatcargo(src)
|
||||
@@ -1305,3 +1305,11 @@ I said no!
|
||||
/obj/item/pen/crayon/rainbow
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/crayonburger_rbw
|
||||
|
||||
/datum/recipe/rkibble
|
||||
reagents = list("milk" = 5, "oil" = 10)
|
||||
items = list(
|
||||
/obj/item/robot_parts/head,
|
||||
/obj/item/stack/rods
|
||||
)
|
||||
result = /obj/item/trash/rkibble
|
||||
|
||||
@@ -991,7 +991,6 @@
|
||||
#include "code\game\objects\items\shooting_range.dm"
|
||||
#include "code\game\objects\items\toys.dm"
|
||||
#include "code\game\objects\items\trash.dm"
|
||||
#include "code\game\objects\items\trash_vr.dm"
|
||||
#include "code\game\objects\items\devices\advnifrepair.dm"
|
||||
#include "code\game\objects\items\devices\ai_detector.dm"
|
||||
#include "code\game\objects\items\devices\aicard.dm"
|
||||
@@ -1954,7 +1953,6 @@
|
||||
#include "code\modules\food\food\lunch.dm"
|
||||
#include "code\modules\food\food\sandwich.dm"
|
||||
#include "code\modules\food\food\snacks.dm"
|
||||
#include "code\modules\food\food\snacks_vr.dm"
|
||||
#include "code\modules\food\food\z_custom_food_vr.dm"
|
||||
#include "code\modules\food\food\drinks\bottle.dm"
|
||||
#include "code\modules\food\food\drinks\cup.dm"
|
||||
|
||||
Reference in New Issue
Block a user