From 0d7ad11cf46d9b99f0103440c30e341740c65eaf Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Tue, 16 Sep 2025 14:02:43 +0100 Subject: [PATCH] Some Additional Hanner Beast Forms (#18503) Added the following forms to beast form for hanner and lleill: Hyena, Lion, Reindeer, Armadillo and Slug. I have considered more fanciful things like unicorns and gryphons, but for now we'll just keep it simple with normal animals. --- .../human/species/lleill/lleill_abilities.dm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm b/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm index b93f1698f6..dfbaeb9e4a 100644 --- a/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm +++ b/code/modules/mob/living/carbon/human/species/lleill/lleill_abilities.dm @@ -428,7 +428,12 @@ "Chicken" = /mob/living/simple_mob/animal/passive/chicken, "Goat" = /mob/living/simple_mob/animal/goat, "Penguin" = /mob/living/simple_mob/animal/passive/penguin, - "Goose" = /mob/living/simple_mob/animal/space/goose + "Goose" = /mob/living/simple_mob/animal/space/goose, + "Hyena" = /mob/living/simple_mob/animal/hyena, + "Lion" = /mob/living/simple_mob/vore/retaliate/lion, + "Reindeer" = /mob/living/simple_mob/vore/reindeer, + "Armadillo" = /mob/living/simple_mob/animal/passive/armadillo, + "Slug" = /mob/living/simple_mob/vore/slug ) var/chosen_beast = tgui_input_list(src, "Which form would you like to take?", "Choose Beast Form", beast_options) @@ -622,7 +627,12 @@ "Chicken" = /mob/living/simple_mob/animal/passive/chicken, "Goat" = /mob/living/simple_mob/animal/goat, "Penguin" = /mob/living/simple_mob/animal/passive/penguin, - "Goose" = /mob/living/simple_mob/animal/space/goose + "Goose" = /mob/living/simple_mob/animal/space/goose, + "Hyena" = /mob/living/simple_mob/animal/hyena, + "Lion" = /mob/living/simple_mob/vore/retaliate/lion, + "Reindeer" = /mob/living/simple_mob/vore/reindeer, + "Armadillo" = /mob/living/simple_mob/animal/passive/armadillo, + "Slug" = /mob/living/simple_mob/vore/slug ) var/chosen_beast = tgui_input_list(src, "Which form would you like to take?", "Choose Beast Form", beast_options)