adds blindness, coldblooded, flimsy, tough

see title
This commit is contained in:
Burns-The-Potatos
2020-09-16 17:40:17 -07:00
parent 456f1f4482
commit 3db4913b12
3 changed files with 67 additions and 2 deletions
+19
View File
@@ -204,6 +204,25 @@
var/mob/living/M = quirk_holder
M.blood_ratio = 1
/datum/quirk/tough
name = "Tough"
desc = "Your body is abnormally enduring and can take 10% more damage."
value = 2
mob_trait = TRAIT_TOUGH
medical_record_text = "Patient has an abnormally high capacity for injury."
gain_text = "<span class='notice'>You feel very sturdy.</span>"
lose_text = "<span class='notice'>You feel less sturdy.</span>"
var/healthchange = 0
/datum/quirk/tough/add()
var/mob/living/carbon/human/H = quirk_holder
healthchange = H.maxHealth * 0.1
H.maxHealth = H.maxHealth * 1.1
/datum/quirk/tough/remove()
var/mob/living/carbon/human/H = quirk_holder
H.maxHealth += healthchange
/datum/quirk/draconicspeaker
name = "Draconic speaker"
desc = "Due to your time spent around lizards, you can speak Draconic!"