From 20d93ddd73a3e66ff2a8effdcd83c3b6915c271c Mon Sep 17 00:00:00 2001 From: Sym Date: Fri, 29 Sep 2023 23:18:24 -0400 Subject: [PATCH] First draft of necro biomass unlock change Makes the unlock for special necros alot higher, will need tweaking. --- deadspace/code/necromorph/necromorphs/subtypes/brute.dm | 4 ++-- deadspace/code/necromorph/necromorphs/subtypes/e_slasher.dm | 2 +- deadspace/code/necromorph/necromorphs/subtypes/hunter.dm | 2 +- deadspace/code/necromorph/necromorphs/subtypes/puker.dm | 2 +- deadspace/code/necromorph/necromorphs/subtypes/ubermorph.dm | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deadspace/code/necromorph/necromorphs/subtypes/brute.dm b/deadspace/code/necromorph/necromorphs/subtypes/brute.dm index 43ab48a01d5..2bb9ec1a012 100644 --- a/deadspace/code/necromorph/necromorphs/subtypes/brute.dm +++ b/deadspace/code/necromorph/necromorphs/subtypes/brute.dm @@ -28,7 +28,7 @@ var/fling_dist = rand(2,5) var/turf/destination = mob_target.loc var/turf/temp - + for(var/i in 1 to fling_dist) temp = get_step(destination, fling_dir) if(!temp) @@ -51,7 +51,7 @@ necromorph_type_path = /mob/living/carbon/human/necromorph/brute tier = 3 biomass_cost = 360 - biomass_spent_required = 950 + biomass_spent_required = 2000 melee_damage_lower = 24 melee_damage_upper = 28 max_health = 510 diff --git a/deadspace/code/necromorph/necromorphs/subtypes/e_slasher.dm b/deadspace/code/necromorph/necromorphs/subtypes/e_slasher.dm index d9eec9ecbc6..495e2722ff3 100644 --- a/deadspace/code/necromorph/necromorphs/subtypes/e_slasher.dm +++ b/deadspace/code/necromorph/necromorphs/subtypes/e_slasher.dm @@ -15,7 +15,7 @@ nest_allowed = TRUE tier = 2 biomass_cost = 125 - biomass_spent_required = 680 + biomass_spent_required = 1500 melee_damage_lower = 18 melee_damage_upper = 22 max_health = 215 diff --git a/deadspace/code/necromorph/necromorphs/subtypes/hunter.dm b/deadspace/code/necromorph/necromorphs/subtypes/hunter.dm index afa1db398c0..2780b713def 100644 --- a/deadspace/code/necromorph/necromorphs/subtypes/hunter.dm +++ b/deadspace/code/necromorph/necromorphs/subtypes/hunter.dm @@ -47,7 +47,7 @@ nest_allowed = FALSE tier = 3 biomass_cost = 400 - biomass_spent_required = 950 + biomass_spent_required = 3000 max_health = 275 melee_damage_lower = 18 melee_damage_upper = 22 diff --git a/deadspace/code/necromorph/necromorphs/subtypes/puker.dm b/deadspace/code/necromorph/necromorphs/subtypes/puker.dm index 1d062136834..5199763b363 100644 --- a/deadspace/code/necromorph/necromorphs/subtypes/puker.dm +++ b/deadspace/code/necromorph/necromorphs/subtypes/puker.dm @@ -13,7 +13,7 @@ nest_allowed = TRUE tier = 2 biomass_cost = 125 - biomass_spent_required = 680 + biomass_spent_required = 1500 melee_damage_lower = 7 melee_damage_upper = 10 max_health = 100 diff --git a/deadspace/code/necromorph/necromorphs/subtypes/ubermorph.dm b/deadspace/code/necromorph/necromorphs/subtypes/ubermorph.dm index e79adc35091..ea3677d3b13 100644 --- a/deadspace/code/necromorph/necromorphs/subtypes/ubermorph.dm +++ b/deadspace/code/necromorph/necromorphs/subtypes/ubermorph.dm @@ -13,7 +13,7 @@ nest_allowed = FALSE tier = 4 biomass_cost = 800 - biomass_spent_required = 2000 + biomass_spent_required = 4000 melee_damage_lower = 10 melee_damage_upper = 25 max_health = INFINITY