Dwarves can crawl on tables like monkeys

A better alternative to the previous vent crawling idea.
This commit is contained in:
The_Dreamweaver
2015-10-17 00:23:19 -07:00
parent 01c3e99876
commit a707bab27f
+3 -5
View File
@@ -280,22 +280,20 @@
/datum/mutation/human/dwarfism
name = "Dwarfism"
quality = POSITIVE
get_chance = 15
lowest_value = 256 * 12
quality = MINOR_NEGATIVE
text_gain_indication = "<span class='notice'>Everything around you seems to grow..</span>"
text_lose_indication = "<span class='notice'>Everything around you seems to shrink..</span>"
/datum/mutation/human/dwarfism/on_acquiring(mob/living/carbon/human/owner)
if(..()) return
owner.resize = 0.8
owner.ventcrawler = 1
owner.pass_flags = PASSTABLE
owner.visible_message("<span class='danger'>[owner] suddenly shrinks!</span>")
/datum/mutation/human/dwarfism/on_losing(mob/living/carbon/human/owner)
if(..()) return
owner.resize = 1.25
owner.ventcrawler = 0
owner.pass_flags = 0
owner.visible_message("<span class='danger'>[owner] suddenly grows!</span>")
/datum/mutation/human/clumsy