Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes #1 cause of suicide in Lizards #17847

Merged
merged 4 commits into from
Feb 10, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
species_language_holder = /datum/language_holder/lizard
var/heat_stunmod = 0
var/last_heat_stunmod = 0
var/regrowtimer

smells_like = "putrid scales"

Expand Down Expand Up @@ -89,6 +90,12 @@
H.emote("wag")
if(-1)
stop_wagging_tail(H)
if(!regrowtimer && !("waggingtail_lizard" in mutant_bodyparts) && !("tail_lizard" in mutant_bodyparts))
regrowtimer = addtimer(CALLBACK(src, .proc/regrow_tail), 30 MINUTES, TIMER_UNIQUE)

/datum/species/lizard/proc/regrow_tail()
if(!("waggingtail_lizard" in mutant_bodyparts) && !("tail_lizard" in mutant_bodyparts))
mutant_bodyparts |= "tail_lizard"
Moltijoe marked this conversation as resolved.
Show resolved Hide resolved

/datum/species/lizard/get_species_description()
return /*"The militaristic Lizardpeople hail originally from Tizira, but have grown \
Expand Down