mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 23:54:14 +01:00
Dwarves can crawl on tables like monkeys
A better alternative to the previous vent crawling idea.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user