Skip to content

Commit

Permalink
Adjusts HP to account for deep crit
Browse files Browse the repository at this point in the history
  • Loading branch information
Katskan committed Nov 8, 2023
1 parent d6d8488 commit a8e745c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/modules/gear_presets/synths.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
if(iscolonysynthetic(new_human) && !isworkingjoe(new_human))
new_human.set_skills(/datum/skills/colonial_synthetic)

new_human.allow_gun_usage = TRUE
new_human.allow_gun_usage = FALSE

//*****************************************************************************************************/

Expand Down
7 changes: 3 additions & 4 deletions code/modules/mob/living/carbon/human/species/synthetic.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

bloodsplatter_type = /obj/effect/temp_visual/dir_setting/bloodsplatter/synthsplatter

total_health = 200 //more health than regular humans
total_health = 100 //same health as regular humans

cold_level_1 = -1
cold_level_2 = -1
Expand Down Expand Up @@ -79,7 +79,6 @@

pain_type = /datum/pain/synthetic/colonial
rarity_value = 1.5
total_health = 300 //But more durable

default_lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE

Expand All @@ -104,8 +103,8 @@
uses_ethnicity = FALSE
mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES)

burn_mod = 0.6 //made for combat
total_health = 350 //made for combat
brute_mod = 0.5
burn_mod = 0.5 //made for combat

hair_color = "#000000"
icobase = 'icons/mob/humans/species/r_synthetic.dmi'
Expand Down

0 comments on commit a8e745c

Please sign in to comment.