Skip to content

Commit

Permalink
adjustments to the LCL Qliphoth Suppression Fields [BUGFIX] (vlggms#2736
Browse files Browse the repository at this point in the history
)

Fixes LCL resists
  • Loading branch information
KingSuperBOB authored Feb 27, 2025
1 parent 468ecbd commit cf228a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ModularTegustation/tegu_items/limbus_labs/!abno_overwrites.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
if(SSmaptype.maptype == "limbus_labs")
health = 1500
maxHealth = 1500
ChangeResistances(1, 0.8, 0.8, 1.2)
ChangeResistances(list(RED_DAMAGE = 1, WHITE_DAMAGE = 0.8, BLACK_DAMAGE = 0.8, PALE_DAMAGE = 1.2))

/mob/living/simple_animal/hostile/abnormality/scorched_girl/Initialize()
. = ..()
Expand All @@ -21,7 +21,7 @@
if(SSmaptype.maptype == "limbus_labs")
health = 2000
maxHealth = 2000
ChangeResistances(0.7, 0.6, 0.8, 1)
ChangeResistances(list(RED_DAMAGE = 0.7, WHITE_DAMAGE = 0.6, BLACK_DAMAGE = 0.8, PALE_DAMAGE = 1))
melee_damage_lower = 35
melee_damage_upper = 47

Expand All @@ -35,4 +35,4 @@
/mob/living/simple_animal/hostile/abnormality/steam/Initialize()
. = ..()
if(SSmaptype.maptype == "limbus_labs")
ChangeResistances(1, 1, 2, 1.5)
ChangeResistances(list(RED_DAMAGE = 1, WHITE_DAMAGE = 1, BLACK_DAMAGE = 2, PALE_DAMAGE = 1.5))

0 comments on commit cf228a7

Please sign in to comment.