mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
fym there's no cucumbers
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
/obj/item/reagent_containers/food/snacks/vegetariansushiroll
|
||||
name = "vegetarian sushi roll"
|
||||
desc = "A roll of simple vegetarian sushi with rice, carrots, and potatoes. Sliceable into pieces!"
|
||||
icon = 'modular_splurt/icons/obj/food/sushi.dmi'
|
||||
icon_state = "vegetariansushiroll"
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 12,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 4,
|
||||
)
|
||||
tastes = list("boiled rice" = 4, "carrots" = 2, "potato" = 2)
|
||||
foodtype = VEGETABLES
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/spicyfiletsushiroll
|
||||
name = "spicy filet sushi roll"
|
||||
desc = "A roll of tasty, spicy sushi made with fish and vegetables. Sliceable into pieces!"
|
||||
icon = 'modular_splurt/icons/obj/food/sushi.dmi'
|
||||
icon_state = "spicyfiletroll"
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 12,
|
||||
/datum/reagent/consumable/capsaicin = 4,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 4,
|
||||
)
|
||||
tastes = list("boiled rice" = 4, "fish" = 2, "spicyness" = 2)
|
||||
foodtype = VEGETABLES
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/meat_poke
|
||||
name = "meat poke"
|
||||
desc = "Simple poke, rice on the bottom, vegetables and meat on top. Should be mixed before eating."
|
||||
icon = 'modular_splurt/icons/obj/food/soupsalad.dmi'
|
||||
icon_state = "pokemeat"
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 11,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 5,
|
||||
)
|
||||
foodtype = MEAT | VEGETABLES
|
||||
tastes = list("rice and meat" = 4, "lettuce" = 2, "soy sauce" = 2)
|
||||
trash = /obj/item/reagent_containers/glass/bowl
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/fish_poke
|
||||
name = "fish poke"
|
||||
desc = "Simple poke, rice on the bottom, vegetables and fish on top. Should be mixed before eating."
|
||||
icon = 'modular_splurt/icons/obj/food/soupsalad.dmi'
|
||||
icon_state = "pokefish"
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 5,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 4,
|
||||
)
|
||||
foodtype = MEAT | VEGETABLES
|
||||
tastes = list("rice and fish" = 4, "lettuce" = 2, "soy sauce" = 2)
|
||||
trash = /obj/item/reagent_containers/glass/bowl
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sushi_feline
|
||||
name = "neko roll"
|
||||
desc = "A cute sushi roll in the shape of a cat face. Almost too adorable to eat."
|
||||
icon = 'modular_splurt/icons/obj/food/sushi.dmi'
|
||||
icon_state = "nekoroll"
|
||||
bonus_reagents = list(/datum/reagent/consumable/nutriment/vitamin = 2)
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 2,
|
||||
/datum/reagent/consumable/sugar = 1
|
||||
)
|
||||
tastes = list("rice" = 1, "fish" = 1, "cuteness" = 1)
|
||||
foodtype = MEAT | VEGETABLES
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/sushi_feline/nekobara
|
||||
name = "nekobara roll"
|
||||
desc = "A fistful of rice with a crude cat face on it. It's got a fishy scent, too."
|
||||
icon_state = "bignekoroll"
|
||||
list_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 5,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 5,
|
||||
/datum/reagent/consumable/sugar = 2
|
||||
)
|
||||
tastes = list("rice" = 1, "fish" = 1, "wastefulness" = 1)
|
||||
@@ -0,0 +1,72 @@
|
||||
/datum/crafting_recipe/food/vegetariansushiroll
|
||||
name ="Vegetarian sushi roll"
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/soysauce = 3,
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sea_weed = 3,
|
||||
/obj/item/reagent_containers/food/snacks/grown/carrot = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/potato = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/vegetariansushiroll
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/spicyfiletroll
|
||||
name ="Spicy filet sushi roll"
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/soysauce = 3,
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sea_weed = 3,
|
||||
/obj/item/reagent_containers/food/snacks/carpmeat = 2,
|
||||
/obj/item/reagent_containers/food/snacks/grown/chili = 1,
|
||||
/obj/item/reagent_containers/food/snacks/grown/onion = 1
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/spicyfiletsushiroll
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/meat_poke
|
||||
name ="Meat poke"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/glass/bowl = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sea_weed = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 1,
|
||||
/obj/item/reagent_containers/food/snacks/meat/cutlet = 3,
|
||||
/obj/item/reagent_containers/food/snacks/grown/cabbage = 1,
|
||||
/obj/item/reagent_containers/food/snacks/tofu = 1,
|
||||
/datum/reagent/consumable/soysauce = 1,
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/meat_poke
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/fish_poke
|
||||
name ="Fish poke"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/glass/bowl = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sea_weed = 1,
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 1,
|
||||
/obj/item/reagent_containers/food/snacks/carpmeat = 1,
|
||||
/obj/item/reagent_containers/food/snacks/tofu = 1,
|
||||
/datum/reagent/consumable/soysauce = 1,
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/fish_poke
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/sushi_feline
|
||||
name = "Neko roll"
|
||||
reqs = list(
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 1,
|
||||
/obj/item/reagent_containers/food/snacks/carpmeat = 1,
|
||||
/datum/reagent/consumable/soysauce = 2,
|
||||
/datum/reagent/consumable/sugar = 1,
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sushi_feline
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/sushi_feline/nekobara
|
||||
name = "Nekobara roll"
|
||||
reqs = list(
|
||||
/datum/reagent/consumable/soysauce = 5,
|
||||
/datum/reagent/consumable/sugar = 2,
|
||||
/obj/item/reagent_containers/food/snacks/sushi_rice = 4,
|
||||
/obj/item/reagent_containers/food/snacks/carpmeat = 2,
|
||||
)
|
||||
result = /obj/item/reagent_containers/food/snacks/sushi_feline/nekobara
|
||||
BIN
modular_splurt/icons/obj/food/soupsalad.dmi
Normal file
BIN
modular_splurt/icons/obj/food/soupsalad.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 570 B |
BIN
modular_splurt/icons/obj/food/sushi.dmi
Normal file
BIN
modular_splurt/icons/obj/food/sushi.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 896 B |
@@ -4655,10 +4655,12 @@
|
||||
#include "modular_splurt\code\modules\food_and_drinks\food\snacks_burgers.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\food\snacks_other.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\food\snacks_pastry.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\food\snacks_sushi.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\food\snacks_vend.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\recipes\drink_recipes.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\recipes\tablecraft\recipes_burger.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\recipes\tablecraft\recipes_donut.dm"
|
||||
#include "modular_splurt\code\modules\food_and_drinks\recipes\tablecraft\recipes_seafood.dm"
|
||||
#include "modular_splurt\code\modules\holiday\holidays.dm"
|
||||
#include "modular_splurt\code\modules\holodeck\holo_effect.dm"
|
||||
#include "modular_splurt\code\modules\hydroponics\grown\towercap.dm"
|
||||
|
||||
Reference in New Issue
Block a user