mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-26 17:11:52 +00:00
27
modular_zubbers/code/game/objects/items/food/misc.dm
Normal file
27
modular_zubbers/code/game/objects/items/food/misc.dm
Normal file
@@ -0,0 +1,27 @@
|
||||
/obj/item/food/nekoroll
|
||||
name = "neko roll"
|
||||
desc = "A cute sushi roll in the shape of a cat face. Almost too adorable to eat."
|
||||
icon = 'modular_zubbers/icons/obj/food/food.dmi'
|
||||
icon_state = "nekoroll"
|
||||
food_reagents = list(
|
||||
/datum/reagent/consumable/nutriment = 2,
|
||||
/datum/reagent/consumable/nutriment/vitamin = 2,
|
||||
/datum/reagent/consumable/sugar = 1,
|
||||
)
|
||||
tastes = list("rice" = 1, "fish" = 1, "cuteness" = 1)
|
||||
foodtypes = GRAIN | MEAT
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
|
||||
/obj/item/food/bignekoroll
|
||||
name = "nekobara roll"
|
||||
desc = "A fistful of rice with a crude cat face on it. It's got a fishy scent, too."
|
||||
icon = 'modular_zubbers/icons/obj/food/food.dmi'
|
||||
icon_state = "bignekoroll"
|
||||
food_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)
|
||||
foodtypes = GRAIN | MEAT
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
@@ -0,0 +1,19 @@
|
||||
/datum/crafting_recipe/food/nekoroll
|
||||
name = "Neko roll"
|
||||
reqs = list(
|
||||
/obj/item/food/fishmeat = 1,
|
||||
/obj/item/food/boiledrice = 1,
|
||||
/datum/reagent/consumable/sugar = 1
|
||||
)
|
||||
result = /obj/item/food/nekoroll
|
||||
category = CAT_SEAFOOD
|
||||
|
||||
/datum/crafting_recipe/food/bignekoroll
|
||||
name = "Nekobara roll"
|
||||
reqs = list(
|
||||
/obj/item/food/fishmeat = 2,
|
||||
/obj/item/food/boiledrice = 4,
|
||||
/datum/reagent/consumable/sugar = 2
|
||||
)
|
||||
result = /obj/item/food/bignekoroll
|
||||
category = CAT_SEAFOOD
|
||||
BIN
modular_zubbers/icons/obj/food/food.dmi
Normal file
BIN
modular_zubbers/icons/obj/food/food.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 954 B |
@@ -6694,10 +6694,12 @@
|
||||
#include "modular_zubbers\code\datums\id_trim\jobs.dm"
|
||||
#include "modular_zubbers\code\game\area\areas\station.dm"
|
||||
#include "modular_zubbers\code\game\objects\effects\landmarks.dm"
|
||||
#include "modular_zubbers\code\game\objects\items\food\misc.dm"
|
||||
#include "modular_zubbers\code\modules\clothing\head\helmet.dm"
|
||||
#include "modular_zubbers\code\modules\clothing\outfits\plasmaman.dm"
|
||||
#include "modular_zubbers\code\modules\clothing\suits\armor.dm"
|
||||
#include "modular_zubbers\code\modules\dynamic\midround_rulesets.dm"
|
||||
#include "modular_zubbers\code\modules\food_and_drinks\recipes\tablecraft\recipes_seafood.dm"
|
||||
#include "modular_zubbers\code\modules\jobs\job_types\blacksmith.dm"
|
||||
#include "modular_zubbers\code\modules\mapping\access_helpers.dm"
|
||||
#include "modular_zubbers\code\modules\customization\sprite_accessories\genitals.dm"
|
||||
|
||||
Reference in New Issue
Block a user