mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
cl Qustinnus / Floyd / Ethereal sprites by Space, is that it? / Alerts and food sprites by MrDroppodBringer
add: Adds Ethereal; a race which lives off of electricity and shines bright. If they are healthy they shine a bright green light, and the more damaged they are, the less they shine and the greyer they become. Their punches do burn damage and they are weak to blunt attacks!
They dont need to eat normal food and dont have nutrition, Instead they gain charge by going into borg rechargers, eating ethereal food or doign specific interactions.
refactor: all nutrition changes now go through a proc so we can override behavior
/cl
Adds Ethereal. A race which is essentialy inspired by Zoltan but then with different mechanics to make it fit with SS13 more. I'm trying to stay away from making them actually provide power but the change from nutrition to electricity seemed kind of fun.
They have the following specifications:
They are walking lights; and shine bright and green if healthy, and get greyer and darker the more damaged they are. When dead they are just a grey unlit corpse.
They do burn punch damage instead of blunt.
They are weaker to blunt; especially when low on charge
They have charge instead of nutrition. Charge is gained by some interactions or by going into a borg charger. or eating new ethereal food.
They are slightly stronger to shock damage, and gain charge from it a bit; however, it is still deadly to them and thus they aren't free insulated gloves.
456 lines
16 KiB
Plaintext
456 lines
16 KiB
Plaintext
/obj/item/reagent_containers/food/snacks/meat
|
|
var/subjectname = ""
|
|
var/subjectjob = null
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab
|
|
name = "meat"
|
|
desc = "A slab of meat."
|
|
icon_state = "meat"
|
|
dried_type = /obj/item/reagent_containers/food/snacks/sosjerky/healthy
|
|
bitesize = 3
|
|
list_reagents = list("nutriment" = 3, "cooking_oil" = 2) //Meat has fats that a food processor can process into cooking oil
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/plain
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain
|
|
slices_num = 3
|
|
filling_color = "#FF0000"
|
|
tastes = list("meat" = 1)
|
|
foodtype = MEAT | RAW
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/initialize_slice(obj/item/reagent_containers/food/snacks/meat/rawcutlet/slice, reagents_per_slice)
|
|
..()
|
|
var/mutable_appearance/filling = mutable_appearance(icon, "rawcutlet_coloration")
|
|
filling.color = filling_color
|
|
slice.add_overlay(filling)
|
|
slice.filling_color = filling_color
|
|
slice.name = "raw [name] cutlet"
|
|
slice.meat_type = name
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/initialize_cooked_food(obj/item/reagent_containers/food/snacks/S, cooking_efficiency)
|
|
..()
|
|
S.name = "[name] steak"
|
|
|
|
///////////////////////////////////// HUMAN MEATS //////////////////////////////////////////////////////
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human
|
|
name = "meat"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/plain/human
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human
|
|
tastes = list("tender meat" = 1)
|
|
foodtype = MEAT | RAW | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/initialize_slice(obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human/slice, reagents_per_slice)
|
|
..()
|
|
slice.subjectname = subjectname
|
|
slice.subjectjob = subjectjob
|
|
if(subjectname)
|
|
slice.name = "raw [subjectname] cutlet"
|
|
else if(subjectjob)
|
|
slice.name = "raw [subjectjob] cutlet"
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/initialize_cooked_food(obj/item/reagent_containers/food/snacks/meat/S, cooking_efficiency)
|
|
..()
|
|
S.subjectname = subjectname
|
|
S.subjectjob = subjectjob
|
|
if(subjectname)
|
|
S.name = "[subjectname] meatsteak"
|
|
else if(subjectjob)
|
|
S.name = "[subjectjob] meatsteak"
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime
|
|
icon_state = "slimemeat"
|
|
desc = "Because jello wasn't offensive enough to vegans."
|
|
list_reagents = list("nutriment" = 3, "slimejelly" = 3)
|
|
filling_color = "#00FFFF"
|
|
tastes = list("slime" = 1, "jelly" = 1)
|
|
foodtype = MEAT | RAW | TOXIC
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem
|
|
icon_state = "golemmeat"
|
|
desc = "Edible rocks, welcome to the future."
|
|
list_reagents = list("nutriment" = 3, "iron" = 3)
|
|
filling_color = "#A9A9A9"
|
|
tastes = list("rock" = 1)
|
|
foodtype = MEAT | RAW | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine
|
|
icon_state = "agolemmeat"
|
|
desc = "From the slime pen to the rune to the kitchen, science."
|
|
filling_color = "#66CDAA"
|
|
foodtype = MEAT | RAW | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/lizard
|
|
icon_state = "lizardmeat"
|
|
desc = "Delicious dino damage."
|
|
filling_color = "#6B8E23"
|
|
tastes = list("meat" = 4, "scales" = 1)
|
|
foodtype = MEAT | RAW
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/plant
|
|
icon_state = "plantmeat"
|
|
desc = "All the joys of healthy eating with all the fun of cannibalism."
|
|
filling_color = "#E9967A"
|
|
tastes = list("salad" = 1, "wood" = 1)
|
|
foodtype = VEGETABLES
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/shadow
|
|
icon_state = "shadowmeat"
|
|
desc = "Ow, the edge."
|
|
filling_color = "#202020"
|
|
tastes = list("darkness" = 1, "meat" = 1)
|
|
foodtype = MEAT | RAW
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/fly
|
|
icon_state = "flymeat"
|
|
desc = "Nothing says tasty like maggot filled radioactive mutant flesh."
|
|
list_reagents = list("nutriment" = 3, "uranium" = 3)
|
|
tastes = list("maggots" = 1, "the inside of a reactor" = 1)
|
|
foodtype = MEAT | RAW | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/moth
|
|
icon_state = "mothmeat"
|
|
desc = "Unpleasantly powdery and dry. Kind of pretty, though."
|
|
filling_color = "#BF896B"
|
|
tastes = list("dust" = 1, "powder" = 1, "meat" = 2)
|
|
foodtype = MEAT | RAW
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton
|
|
name = "bone"
|
|
icon_state = "skeletonmeat"
|
|
desc = "There's a point where this needs to stop, and clearly we have passed it."
|
|
filling_color = "#F0F0F0"
|
|
tastes = list("bone" = 1)
|
|
slice_path = null //can't slice a bone into cutlets
|
|
foodtype = GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/zombie
|
|
name = " meat (rotten)"
|
|
icon_state = "rottenmeat"
|
|
desc = "Halfway to becoming fertilizer for your garden."
|
|
filling_color = "#6B8E23"
|
|
tastes = list("brains" = 1, "meat" = 1)
|
|
foodtype = RAW | MEAT | TOXIC
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/ethereal
|
|
icon_state = "etherealmeat"
|
|
desc = "So shiny you feel like ingesting it might make you shine too"
|
|
filling_color = "#97ee63"
|
|
list_reagents = list("liquidelectricity" = 3)
|
|
tastes = list("pure electrictiy" = 2, "meat" = 1)
|
|
foodtype = RAW | MEAT | TOXIC
|
|
|
|
////////////////////////////////////// OTHER MEATS ////////////////////////////////////////////////////////
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/synthmeat
|
|
name = "synthmeat"
|
|
desc = "A synthetic slab of meat."
|
|
foodtype = RAW | MEAT //hurr durr chemicals we're harmed in the production of this meat thus its non-vegan.
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/meatproduct
|
|
name = "meat product"
|
|
desc = "A slab of station reclaimed and chemically processed meat product."
|
|
foodtype = RAW | MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/monkey
|
|
name = "monkey meat"
|
|
foodtype = RAW | MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/mouse
|
|
name = "mouse meat"
|
|
desc = "A slab of mouse meat. Best not eat it raw."
|
|
foodtype = RAW | MEAT | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/corgi
|
|
name = "corgi meat"
|
|
desc = "Tastes like... well you know..."
|
|
tastes = list("meat" = 4, "a fondness for wearing hats" = 1)
|
|
foodtype = RAW | MEAT | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/pug
|
|
name = "pug meat"
|
|
desc = "Tastes like... well you know..."
|
|
foodtype = RAW | MEAT | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/killertomato
|
|
name = "killer tomato meat"
|
|
desc = "A slice from a huge tomato."
|
|
icon_state = "tomatomeat"
|
|
list_reagents = list("nutriment" = 2)
|
|
filling_color = "#FF0000"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/killertomato
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/killertomato
|
|
tastes = list("tomato" = 1)
|
|
foodtype = FRUIT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/bear
|
|
name = "bear meat"
|
|
desc = "A very manly slab of meat."
|
|
icon_state = "bearmeat"
|
|
list_reagents = list("nutriment" = 12, "morphine" = 5, "vitamin" = 2, "cooking_oil" = 6)
|
|
filling_color = "#FFB6C1"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/bear
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/bear
|
|
tastes = list("meat" = 1, "salmon" = 1)
|
|
foodtype = RAW | MEAT
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/xeno
|
|
name = "xeno meat"
|
|
desc = "A slab of meat."
|
|
icon_state = "xenomeat"
|
|
list_reagents = list("nutriment" = 3, "vitamin" = 1)
|
|
bitesize = 4
|
|
filling_color = "#32CD32"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/xeno
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/xeno
|
|
tastes = list("meat" = 1, "acid" = 1)
|
|
foodtype = RAW | MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/spider
|
|
name = "spider meat"
|
|
desc = "A slab of spider meat."
|
|
icon_state = "spidermeat"
|
|
list_reagents = list("nutriment" = 3, "toxin" = 3, "vitamin" = 1)
|
|
filling_color = "#7CFC00"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/spider
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/spider
|
|
tastes = list("cobwebs" = 1)
|
|
foodtype = RAW | MEAT | TOXIC
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/goliath
|
|
name = "goliath meat"
|
|
desc = "A slab of goliath meat. It's not very edible now, but it cooks great in lava."
|
|
list_reagents = list("nutriment" = 3, "toxin" = 5, "cooking_oil" = 3)
|
|
icon_state = "goliathmeat"
|
|
tastes = list("meat" = 1)
|
|
foodtype = RAW | MEAT | TOXIC
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/goliath/burn()
|
|
visible_message("[src] finishes cooking!")
|
|
new /obj/item/reagent_containers/food/snacks/meat/steak/goliath(loc)
|
|
qdel(src)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/meatwheat
|
|
name = "meatwheat clump"
|
|
desc = "This doesn't look like meat, but your standards aren't <i>that</i> high to begin with."
|
|
list_reagents = list("nutriment" = 3, "vitamin" = 2, "blood" = 5, "cooking_oil" = 1)
|
|
filling_color = rgb(150, 0, 0)
|
|
icon_state = "meatwheat_clump"
|
|
bitesize = 4
|
|
tastes = list("meat" = 1, "wheat" = 1)
|
|
foodtype = GRAIN
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/gorilla
|
|
name = "gorilla meat"
|
|
desc = "Much meatier than monkey meat."
|
|
list_reagents = list("nutriment" = 5, "vitamin" = 1, "cooking_oil" = 5) //Plenty of fat!
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawbacon
|
|
name = "raw piece of bacon"
|
|
desc = "A raw piece of bacon."
|
|
icon_state = "bacon"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/bacon
|
|
bitesize = 2
|
|
list_reagents = list("nutriment" = 1, "cooking_oil" = 3)
|
|
filling_color = "#B22222"
|
|
tastes = list("bacon" = 1)
|
|
foodtype = RAW | MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/bacon
|
|
name = "piece of bacon"
|
|
desc = "A delicious piece of bacon."
|
|
icon_state = "baconcooked"
|
|
list_reagents = list("nutriment" = 2)
|
|
bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "cooking_oil" = 2)
|
|
filling_color = "#854817"
|
|
tastes = list("bacon" = 1)
|
|
foodtype = MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/gondola
|
|
name = "gondola meat"
|
|
desc = "According to legends of old, consuming raw gondola flesh grants one inner peace."
|
|
list_reagents = list("nutriment" = 3, "tranquility" = 5, "cooking_oil" = 3)
|
|
tastes = list("meat" = 4, "tranquility" = 1)
|
|
filling_color = "#9A6750"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/gondola
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/gondola
|
|
foodtype = RAW | MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/slab/penguin
|
|
name = "penguin meat"
|
|
desc = "A slab of penguin meat."
|
|
list_reagents = list("nutriment" = 2, "cooking_oil" = 3)
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/steak/penguin
|
|
slice_path = /obj/item/reagent_containers/food/snacks/meat/rawcutlet/penguin
|
|
filling_color = "#B22222"
|
|
tastes = list("beef" = 1, "cod fish" = 1)
|
|
|
|
////////////////////////////////////// MEAT STEAKS ///////////////////////////////////////////////////////////
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak
|
|
name = "steak"
|
|
desc = "A piece of hot spicy meat."
|
|
icon_state = "meatsteak"
|
|
list_reagents = list("nutriment" = 5)
|
|
bonus_reagents = list("nutriment" = 2, "vitamin" = 1)
|
|
trash = /obj/item/trash/plate
|
|
filling_color = "#B22222"
|
|
foodtype = MEAT
|
|
tastes = list("meat" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/plain
|
|
foodtype = MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/plain/human
|
|
tastes = list("tender meat" = 1)
|
|
foodtype = MEAT | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/killertomato
|
|
name = "killer tomato steak"
|
|
tastes = list("tomato" = 1)
|
|
foodtype = FRUIT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/bear
|
|
name = "bear steak"
|
|
tastes = list("meat" = 1, "salmon" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/xeno
|
|
name = "xeno steak"
|
|
tastes = list("meat" = 1, "acid" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/spider
|
|
name = "spider steak"
|
|
tastes = list("cobwebs" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/goliath
|
|
name = "goliath steak"
|
|
desc = "A delicious, lava cooked steak."
|
|
resistance_flags = LAVA_PROOF | FIRE_PROOF
|
|
icon_state = "goliathsteak"
|
|
trash = null
|
|
tastes = list("meat" = 1, "rock" = 1)
|
|
foodtype = MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/gondola
|
|
name = "gondola steak"
|
|
tastes = list("meat" = 1, "tranquility" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/steak/penguin
|
|
name = "penguin steak"
|
|
tastes = list("beef" = 1, "cod fish" = 1)
|
|
|
|
//////////////////////////////// MEAT CUTLETS ///////////////////////////////////////////////////////
|
|
|
|
//Raw cutlets
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet
|
|
name = "raw cutlet"
|
|
desc = "A raw meat cutlet."
|
|
icon_state = "rawcutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/plain
|
|
bitesize = 2
|
|
list_reagents = list("nutriment" = 1)
|
|
filling_color = "#B22222"
|
|
tastes = list("meat" = 1)
|
|
var/meat_type = "meat"
|
|
foodtype = MEAT | RAW
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/initialize_cooked_food(obj/item/reagent_containers/food/snacks/S, cooking_efficiency)
|
|
..()
|
|
S.name = "[meat_type] cutlet"
|
|
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain
|
|
foodtype = MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/plain/human
|
|
tastes = list("tender meat" = 1)
|
|
foodtype = MEAT | RAW | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/plain/human/initialize_cooked_food(obj/item/reagent_containers/food/snacks/S, cooking_efficiency)
|
|
..()
|
|
if(subjectname)
|
|
S.name = "[subjectname] [initial(S.name)]"
|
|
else if(subjectjob)
|
|
S.name = "[subjectjob] [initial(S.name)]"
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/killertomato
|
|
name = "raw killer tomato cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/killertomato
|
|
tastes = list("tomato" = 1)
|
|
foodtype = FRUIT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/bear
|
|
name = "raw bear cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/bear
|
|
tastes = list("meat" = 1, "salmon" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/xeno
|
|
name = "raw xeno cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/xeno
|
|
tastes = list("meat" = 1, "acid" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/spider
|
|
name = "raw spider cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/spider
|
|
tastes = list("cobwebs" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/gondola
|
|
name = "raw gondola cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/gondola
|
|
tastes = list("meat" = 1, "tranquility" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/rawcutlet/penguin
|
|
name = "raw penguin cutlet"
|
|
cooked_type = /obj/item/reagent_containers/food/snacks/meat/cutlet/penguin
|
|
tastes = list("beef" = 1, "cod fish" = 1)
|
|
|
|
//Cooked cutlets
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet
|
|
name = "cutlet"
|
|
desc = "A cooked meat cutlet."
|
|
icon_state = "cutlet"
|
|
bitesize = 2
|
|
list_reagents = list("nutriment" = 2)
|
|
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
|
|
filling_color = "#B22222"
|
|
tastes = list("meat" = 1)
|
|
foodtype = MEAT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/plain
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/plain/human
|
|
tastes = list("tender meat" = 1)
|
|
foodtype = MEAT | GROSS
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/killertomato
|
|
name = "killer tomato cutlet"
|
|
tastes = list("tomato" = 1)
|
|
foodtype = FRUIT
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/bear
|
|
name = "bear cutlet"
|
|
tastes = list("meat" = 1, "salmon" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/xeno
|
|
name = "xeno cutlet"
|
|
tastes = list("meat" = 1, "acid" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/spider
|
|
name = "spider cutlet"
|
|
tastes = list("cobwebs" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/gondola
|
|
name = "gondola cutlet"
|
|
tastes = list("meat" = 1, "tranquility" = 1)
|
|
|
|
/obj/item/reagent_containers/food/snacks/meat/cutlet/penguin
|
|
name = "penguin cutlet"
|
|
tastes = list("beef" = 1, "cod fish" = 1)
|