diff --git a/code/modules/jobs/job_types/roguetown/roguetown.dm b/code/modules/jobs/job_types/roguetown/roguetown.dm index 246c36e0d..245161044 100644 --- a/code/modules/jobs/job_types/roguetown/roguetown.dm +++ b/code/modules/jobs/job_types/roguetown/roguetown.dm @@ -47,25 +47,6 @@ /datum/outfit/job/roguetown/pre_equip(mob/living/carbon/human/H, visualsOnly = FALSE) . = ..() - if(H.dna?.species) - if(isanthrom(H)) - H.change_stat("strength", 8) - H.change_stat("constitution", 8) - H.change_stat("endurance", 8) - H.change_stat("speed", -8) - H.change_stat("speed", -4) - H.transform = H.transform.Scale(2.25, 2.25) - H.transform = H.transform.Translate(0, (0.25 * 16)) - H.update_transform() - if(isdemim(H)) - H.change_stat("strength", 8) - H.change_stat("constitution", 8) - H.change_stat("endurance", 8) - H.change_stat("speed", -8) - H.change_stat("speed", -4) - H.transform = H.transform.Scale(2.25, 2.25) - H.transform = H.transform.Translate(0, (0.25 * 16)) - H.update_transform() var/datum/patron/old_patron = H.patron if(length(allowed_patrons) && (!old_patron || !(old_patron.type in allowed_patrons))) var/list/datum/patron/possiblegods = list() @@ -104,6 +85,25 @@ /datum/outfit/job/roguetown/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) . = ..() + if(H.dna?.species) + if(isanthrom(H)) + H.change_stat("strength", 8) + H.change_stat("constitution", 8) + H.change_stat("endurance", 8) + H.change_stat("speed", -8) + H.change_stat("speed", -4) + H.transform = H.transform.Scale(2.25, 2.25) + H.transform = H.transform.Translate(0, (0.25 * 16)) + H.update_transform() + if(isdemim(H)) + H.change_stat("strength", 8) + H.change_stat("constitution", 8) + H.change_stat("endurance", 8) + H.change_stat("speed", -8) + H.change_stat("speed", -4) + H.transform = H.transform.Scale(2.25, 2.25) + H.transform = H.transform.Translate(0, (0.25 * 16)) + H.update_transform() if(H.mind) if(H.ckey) if(check_crownlist(H.ckey)) diff --git a/code/modules/mob/living/carbon/human/species_types/furry/anthromacro.dm b/code/modules/mob/living/carbon/human/species_types/furry/anthromacro.dm index 5ade4babb..4e06af718 100644 --- a/code/modules/mob/living/carbon/human/species_types/furry/anthromacro.dm +++ b/code/modules/mob/living/carbon/human/species_types/furry/anthromacro.dm @@ -37,7 +37,6 @@ OFFSET_NECK_F = list(0,-1), OFFSET_MOUTH_F = list(0,-1), OFFSET_PANTS_F = list(0,0), \ OFFSET_SHIRT_F = list(0,0), OFFSET_ARMOR_F = list(0,0), OFFSET_UNDIES_F = list(0,-1), \ OFFSET_TAUR = list(-16,-1), OFFSET_TAUR_F = list(-16, -1),\ - ) specstats = list("strength" = 0, "perception" = 1, "intelligence" = -1, "constitution" = 0, "endurance" = 1, "speed" = -1, "fortune" = 0) specstats_f = list("strength" = -1, "perception" = 0, "intelligence" = 2, "constitution" = -1, "endurance" = 0, "speed" = 1, "fortune" = 0) diff --git a/code/modules/mob/living/carbon/human/species_types/furry/anthromorph.dm b/code/modules/mob/living/carbon/human/species_types/furry/anthromorph.dm index 002956f0d..00e19583e 100644 --- a/code/modules/mob/living/carbon/human/species_types/furry/anthromorph.dm +++ b/code/modules/mob/living/carbon/human/species_types/furry/anthromorph.dm @@ -35,7 +35,6 @@ OFFSET_NECK_F = list(0,-1), OFFSET_MOUTH_F = list(0,-1), OFFSET_PANTS_F = list(0,0), \ OFFSET_SHIRT_F = list(0,0), OFFSET_ARMOR_F = list(0,0), OFFSET_UNDIES_F = list(0,-1), \ OFFSET_TAUR = list(-16,-1), OFFSET_TAUR_F = list(-16, -1),\ - ) specstats = list("strength" = 0, "perception" = 1, "intelligence" = -1, "constitution" = 0, "endurance" = 1, "speed" = -1, "fortune" = 0) specstats_f = list("strength" = -1, "perception" = 0, "intelligence" = 2, "constitution" = -1, "endurance" = 0, "speed" = 1, "fortune" = 0) diff --git a/code/modules/mob/living/carbon/human/species_types/furry/demihuman.dm b/code/modules/mob/living/carbon/human/species_types/furry/demihuman.dm index bfffce18e..9f4880f4f 100644 --- a/code/modules/mob/living/carbon/human/species_types/furry/demihuman.dm +++ b/code/modules/mob/living/carbon/human/species_types/furry/demihuman.dm @@ -34,7 +34,6 @@ OFFSET_NECK_F = list(0,-1), OFFSET_MOUTH_F = list(0,-1), OFFSET_PANTS_F = list(0,0), \ OFFSET_SHIRT_F = list(0,0), OFFSET_ARMOR_F = list(0,0), OFFSET_UNDIES_F = list(0,-1), \ OFFSET_TAUR = list(-16,-1), OFFSET_TAUR_F = list(-16, -1),\ - ) specstats = list("strength" = 0, "perception" = 1, "intelligence" = -1, "constitution" = 0, "endurance" = 1, "speed" = -1, "fortune" = 0) specstats_f = list("strength" = -1, "perception" = 0, "intelligence" = 2, "constitution" = -1, "endurance" = 0, "speed" = 1, "fortune" = 0) diff --git a/code/modules/mob/living/carbon/human/species_types/furry/demimacro.dm b/code/modules/mob/living/carbon/human/species_types/furry/demimacro.dm index 3a5f9b158..67b6d5c31 100644 --- a/code/modules/mob/living/carbon/human/species_types/furry/demimacro.dm +++ b/code/modules/mob/living/carbon/human/species_types/furry/demimacro.dm @@ -34,7 +34,6 @@ OFFSET_NECK_F = list(0,-1), OFFSET_MOUTH_F = list(0,-1), OFFSET_PANTS_F = list(0,0), \ OFFSET_SHIRT_F = list(0,0), OFFSET_ARMOR_F = list(0,0), OFFSET_UNDIES_F = list(0,-1), \ OFFSET_TAUR = list(-16,-1), OFFSET_TAUR_F = list(-16, -1),\ - ) specstats = list("strength" = 0, "perception" = 1, "intelligence" = -1, "constitution" = 0, "endurance" = 1, "speed" = -1, "fortune" = 0) specstats_f = list("strength" = -1, "perception" = 0, "intelligence" = 2, "constitution" = -1, "endurance" = 0, "speed" = 1, "fortune" = 0)