[Ready]Adds 2 new quirks! Quick step and Light Sensitivity (#7933)
* Fixing updater * Adds the quirk * Lilly dosnt know how to code this stuff Watch it brake everything and cry 101 * IDK what im doing This will likely be speggie code * correct names are a thing * Adds light sensitivity * Adds the debuff * mite need to ask for helps * Not used somehow * Laughs in failer * H -> h * Update species.dm * Speed * Update species.dm * Apply suggestions from code review - Ghommie He got me Co-Authored-By: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> * Update code/modules/mob/living/carbon/human/species.dm Co-Authored-By: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> * Apply suggestions from code review Rag the grate Co-Authored-By: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> * Update negative.dm
This commit is contained in:
committed by
kevinz000
parent
7bfcfb20cb
commit
f9d5c6eec9
@@ -154,6 +154,21 @@
|
||||
else
|
||||
SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "nyctophobia")
|
||||
|
||||
/datum/quirk/lightless
|
||||
name = "Light Sensitivity"
|
||||
desc = "Bright lights irritate you. Your eyes start to water, your skin feels itchy against the photon radiation, and your hair gets dry and frizzy. Maybe it's a medical condition. If only Nanotrasen was more considerate of your needs..."
|
||||
value = -1
|
||||
gain_text = "<span class='danger'>The safty of light feels off...</span>"
|
||||
lose_text = "<span class='notice'>Enlighing.</span>"
|
||||
|
||||
/datum/quirk/lightless/on_process()
|
||||
var/turf/T = get_turf(quirk_holder)
|
||||
var/lums = T.get_lumcount()
|
||||
if(lums >= 0.8)
|
||||
SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "brightlight", /datum/mood_event/brightlight)
|
||||
else
|
||||
SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "brightlight")
|
||||
|
||||
/datum/quirk/nonviolent
|
||||
name = "Pacifist"
|
||||
desc = "The thought of violence makes you sick. So much so, in fact, that you can't hurt anyone."
|
||||
|
||||
Reference in New Issue
Block a user