mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-19 20:15:47 +01:00
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 🆑 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 /🆑 --------- Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user