[MIRROR] Adds moffins, a whimsical breakfast pastry (#4660)

* Adds moffins, a whimsical breakfast pastry (#58110)

* Adds moffins

* slightly different check as requested

* Update code/game/objects/items/food/pastries.dm

I have been got got.

Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>

* Update code/game/objects/items/food/pastries.dm

Co-authored-by: ATH1909 <42606352+ATH1909@ users.noreply.github.com>

Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>
Co-authored-by: Iamgoofball <iamgoofball@ gmail.com>
Co-authored-by: ATH1909 <42606352+ATH1909@ users.noreply.github.com>

* Adds moffins, a whimsical breakfast pastry

Co-authored-by: ArcaneDefence <51932756+ArcaneDefence@users.noreply.github.com>
Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>
Co-authored-by: Iamgoofball <iamgoofball@ gmail.com>
Co-authored-by: ATH1909 <42606352+ATH1909@ users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-04-05 03:10:28 +01:00
committed by GitHub
co-authored by Mothblocks ATH1909 Iamgoofball ArcaneDefence
parent de6335b594
commit 2d4c87f900
9 changed files with 35 additions and 3 deletions
+19
View File
@@ -357,7 +357,26 @@
tastes = list("muffin" = 3, "spookiness" = 1)
foodtypes = GRAIN | FRUIT | SUGAR | BREAKFAST
/obj/item/food/muffin/moffin
name = "moffin"
icon_state = "moffin"
desc = "A delicious and spongy little cake."
tastes = list("muffin" = 3, "dust" = 1, "lint" = 1)
foodtypes = CLOTH | GRAIN | SUGAR | BREAKFAST
/obj/item/food/muffin/moffin/Initialize(mapload)
. = ..()
icon_state = "[icon_state]_[rand(1,3)]"
/obj/item/food/muffin/moffin/examine(mob/user)
. = ..()
if(!ishuman(user))
return
var/mob/living/carbon/human/moffin_observer = user
if(moffin_observer.dna.species.liked_food & CLOTH)
. += "<span class='nicegreen'>Ooh! It's even got bits of clothes on it! Yummy!</span>"
else
. += "<span class='warning'>You're not too sure what's on top though...</span>"
////////////////////////////////////////////WAFFLES////////////////////////////////////////////
@@ -433,6 +433,16 @@
subcategory = CAT_PASTRY
/datum/crafting_recipe/food/moffin
name = "Moffin"
reqs = list(
/datum/reagent/consumable/milk = 5,
/obj/item/food/pastrybase = 1,
/obj/item/stack/sheet/cloth = 1,
)
result = /obj/item/food/muffin/moffin
subcategory = CAT_PASTRY
////////////////////////////////////////////OTHER////////////////////////////////////////////
/datum/crafting_recipe/food/hotdog
@@ -11,6 +11,7 @@
//mutant_organs = list(/obj/item/organ/tail/cat) //SKYRAT EDIT REMOVAL - CUSTOMIZATION
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN | SLIME_EXTRACT
species_language_holder = /datum/language_holder/felinid
disliked_food = CLOTH
var/original_felinid = TRUE //set to false for felinids created by mass-purrbation
payday_modifier = 0.75
ass_image = 'icons/ass/asscat.png'
@@ -8,6 +8,7 @@
disliked_food = null
liked_food = GROSS
mutanteyes = /obj/item/organ/eyes/fly
disliked_food = CLOTH
toxic_food = NONE
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN | SLIME_EXTRACT
species_language_holder = /datum/language_holder/fly
@@ -6,7 +6,7 @@
mutant_bodyparts = list("wings" = "None")
use_skintones = 1
skinned_type = /obj/item/stack/sheet/animalhide/human
disliked_food = GROSS | RAW
disliked_food = GROSS | RAW | CLOTH
liked_food = JUNKFOOD | FRIED
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_MAGIC | MIRROR_PRIDE | ERT_SPAWN | RACE_SWAP | SLIME_EXTRACT
payday_modifier = 1
@@ -21,7 +21,7 @@
meat = /obj/item/food/meat/slab/human/mutant/lizard
skinned_type = /obj/item/stack/sheet/animalhide/lizard
exotic_bloodtype = "L"
disliked_food = GRAIN | DAIRY
disliked_food = GRAIN | DAIRY | CLOTH
liked_food = GROSS | MEAT
inert_mutation = FIREBREATH
deathsound = 'sound/voice/lizard/deathsound.ogg'
@@ -16,6 +16,7 @@
no_equip = list(ITEM_SLOT_EARS, ITEM_SLOT_EYES, ITEM_SLOT_OCLOTHING, ITEM_SLOT_GLOVES, ITEM_SLOT_FEET, ITEM_SLOT_ICLOTHING, ITEM_SLOT_SUITSTORE)
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | ERT_SPAWN | SLIME_EXTRACT
liked_food = MEAT | FRUIT
disliked_food = CLOTH
limbs_id = "monkey"
damage_overlay_type = "monkey"
sexes = FALSE
@@ -20,7 +20,7 @@
breathid = "tox"
damage_overlay_type = ""//let's not show bloody wounds or burns over bones.
var/internal_fire = FALSE //If the bones themselves are burning clothes won't help you much
disliked_food = FRUIT
disliked_food = FRUIT | CLOTH
liked_food = VEGETABLES
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC
outfit_important_for_life = /datum/outfit/plasmaman
Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 81 KiB