dwarfdwarfdwarf

This commit is contained in:
MMMiracles
2015-09-23 18:13:16 -04:00
parent e9bed91a1e
commit 3d43b8e389
3 changed files with 32 additions and 0 deletions
+1
View File
@@ -8,6 +8,7 @@
#define EPILEPSY "Epilepsy"
#define MUTATE "Unstable DNA"
#define COUGH "Cough"
#define DWARFISM "Dwarfism"
#define CLOWNMUT "Clumsiness"
#define TOURETTES "Tourettes Syndrome"
#define DEAFMUT "Deafness"
+17
View File
@@ -277,6 +277,23 @@
owner.drop_item()
owner.emote("cough")
/datum/mutation/human/dwarfism
name = "Dwarfism"
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.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.2
owner.visible_message("<span class='danger'>[owner] suddenly grows!</span>")
/datum/mutation/human/clumsy
name = "Clumsiness"
@@ -139,6 +139,20 @@
..()
add_mutations.Add(mutations_list[COUGH])
/obj/item/weapon/dnainjector/antidwarf
name = "\improper DNA injector (Anti-Dwarfism)"
desc = "Helps you grow big and strong."
New()
..()
remove_mutations.Add(mutations_list[DWARFISM])
/obj/item/weapon/dnainjector/dwarf
name = "\improper DNA injector (Dwarfism)"
desc = "Its a small world after all."
New()
..()
add_mutations.Add(mutations_list[DWARFISM])
/obj/item/weapon/dnainjector/clumsymut
name = "\improper DNA injector (Clumsy)"
desc = "Makes clown minions."