From b74585f2155c08e40d19d3d93b52da028a8fe5fe Mon Sep 17 00:00:00 2001 From: Bloop <13398309+vinylspiders@users.noreply.github.com> Date: Sat, 29 Jul 2023 21:07:51 -0400 Subject: [PATCH] [MISSED MIRROR] Adds wings from potion of flight for fly persons in game. (#72991) (#22776) Adds wings from potion of flight for fly persons in game. (#72991) ## About The Pull Request So, i was kinda surprised that there are no fly wings in game, when their sprite was already made. So it adds wings from strange elixir (potion of flight) for fly persons. Not much to discuss, i guess. ## Why It's Good For The Game Wings for flies. ## Changelog :cl: add: Wings for fly persons from flight potion /:cl: Co-authored-by: Helg2 <93882977+Helg2@users.noreply.github.com> --- .../mob/living/carbon/human/species_types/flypeople.dm | 1 + .../surgery/organs/external/wings/functional_wings.dm | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/flypeople.dm b/code/modules/mob/living/carbon/human/species_types/flypeople.dm index 5c1b06300fa..166cefbde6a 100644 --- a/code/modules/mob/living/carbon/human/species_types/flypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/flypeople.dm @@ -12,6 +12,7 @@ mutanteyes = /obj/item/organ/internal/eyes/fly changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC | RACE_SWAP | ERT_SPAWN | SLIME_EXTRACT species_language_holder = /datum/language_holder/fly + wing_types = list(/obj/item/organ/external/wings/functional/fly) payday_modifier = 0.75 mutanttongue = /obj/item/organ/internal/tongue/fly diff --git a/code/modules/surgery/organs/external/wings/functional_wings.dm b/code/modules/surgery/organs/external/wings/functional_wings.dm index 10af23158f4..d2b4716df50 100644 --- a/code/modules/surgery/organs/external/wings/functional_wings.dm +++ b/code/modules/surgery/organs/external/wings/functional_wings.dm @@ -206,3 +206,9 @@ name = "megamoth wings" desc = "Don't get murderous." sprite_accessory_override = /datum/sprite_accessory/wings/megamoth + +///fly wings, which relate to flies. +/obj/item/organ/external/wings/functional/fly + name = "fly wings" + desc = "Fly as a fly." + sprite_accessory_override = /datum/sprite_accessory/wings/fly