From 7d39295064dcf80b41879a8f4e93cb22159e1b1f Mon Sep 17 00:00:00 2001 From: StaringGasMask <62149527+Exester509@users.noreply.github.com> Date: Sat, 20 Dec 2025 02:24:20 +0100 Subject: [PATCH] Slightly buffs the dragon's blood potion (#94459) ## About The Pull Request Adds a couple benefits to the lizard transformation of the dragon's blood potion you may get from slaying an ashdrake. Specifically, you get a pair of functional wings, like the dragon wings from the flight potion, and the fire breath mutation. ## Why It's Good For The Game The lizard transformation by itself is not desirable, nor interesting. It's also a net negative from beating a megafauna if you get unlucky, at least now you can commit to the "humanoid dragon" bit more faithfully. ## Changelog :cl: add:The bottle of dragon blood's lizard transformation now gives you wings and the ability to breath fire, so you can pretend to be a humanoid dragon much more faithfully /:cl: --------- Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> --- .../mining/lavaland/mining_loot/megafauna/ash_drake.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/mining/lavaland/mining_loot/megafauna/ash_drake.dm b/code/modules/mining/lavaland/mining_loot/megafauna/ash_drake.dm index 7f80822d652..86aa364acae 100644 --- a/code/modules/mining/lavaland/mining_loot/megafauna/ash_drake.dm +++ b/code/modules/mining/lavaland/mining_loot/megafauna/ash_drake.dm @@ -171,7 +171,7 @@ switch(random) if(1) - to_chat(user, span_danger("Your appearance morphs to that of a very small humanoid ash dragon! You get to look like a freak without the cool abilities.")) + to_chat(user, span_danger("Your appearance morphs to that of a very small humanoid ash dragon! You get to look like a freak with just a fragment of their abilities.")) consumer.dna.features = list( FEATURE_MUTANT_COLOR = "#A02720", FEATURE_TAIL_LIZARD = "Dark Tiger", @@ -187,6 +187,10 @@ ) consumer.set_eye_color("#FEE5A3") consumer.set_species(/datum/species/lizard) + consumer.dna.add_mutation(/datum/mutation/firebreath, MUTATION_SOURCE_MUTATOR) + var/obj/item/organ/wings/functional/dragon/wings = new() + wings.Insert(consumer) + if(2) to_chat(user, span_danger("Your flesh begins to melt! Miraculously, you seem fine otherwise.")) consumer.set_species(/datum/species/skeleton)