From 524e9dafd60a0036108ca155228addae63788555 Mon Sep 17 00:00:00 2001 From: synthtwo <127706731+SynthTwo@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:20:59 +0100 Subject: [PATCH 1/2] spooder --- .../spider/giant_spider/giant_spiders.dm | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm b/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm index 68629154ab6a..d07956a527c9 100644 --- a/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm +++ b/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm @@ -127,8 +127,8 @@ icon_state = "scout" icon_living = "scout" icon_dead = "scout_dead" - maxHealth = 65 - health = 65 + maxHealth = 80 // IRIS EDIT: Change health + health = 80 // IRIS EDIT: Change health obj_damage = 10 melee_damage_lower = 5 melee_damage_upper = 10 @@ -160,8 +160,8 @@ icon_dead = "nurse_dead" gender = FEMALE butcher_results = list(/obj/item/food/meat/slab/spider = 2, /obj/item/food/spiderleg = 8, /obj/item/food/spidereggs = 4) - maxHealth = 40 - health = 40 + maxHealth = 80 // IRIS EDIT: Change health + health = 80 // IRIS EDIT: Change health melee_damage_lower = 5 melee_damage_upper = 10 speed = 4 @@ -183,8 +183,8 @@ datahud.show_to(src) AddComponent(/datum/component/healing_touch,\ - heal_brute = 10,\ - heal_burn = 10,\ + heal_brute = 20,\ //IRIS EDIT: Heals damage more + heal_burn = 20,\ //IRIS EDIT: Heals damage more heal_time = 2.5 SECONDS,\ interaction_key = DOAFTER_SOURCE_SPIDER,\ valid_targets_typecache = typecacheof(list(/mob/living/basic/spider/giant)),\ @@ -210,8 +210,8 @@ icon_dead = "tangle_dead" gender = FEMALE butcher_results = list(/obj/item/food/meat/slab/spider = 2, /obj/item/food/spiderleg = 8, /obj/item/food/spidereggs = 4) - maxHealth = 55 - health = 55 + maxHealth = 80 // IRIS EDIT: Change health + health = 80 // IRIS EDIT: Change health melee_damage_lower = 1 melee_damage_upper = 1 poison_per_bite = 2.5 @@ -406,8 +406,8 @@ icon_state = "viper" icon_living = "viper" icon_dead = "viper_dead" - maxHealth = 55 - health = 55 + maxHealth = 70 // IRIS EDIT: Change health + health = 70 // IRIS EDIT: Change health melee_damage_lower = 5 melee_damage_upper = 5 poison_per_bite = 5 From 70e7011fba72c3d8ad4ffcf18e70f5a2c1cf1219 Mon Sep 17 00:00:00 2001 From: synthtwo <127706731+SynthTwo@users.noreply.github.com> Date: Thu, 17 Jul 2025 00:25:21 +0100 Subject: [PATCH 2/2] oops --- .../basic/space_fauna/spider/giant_spider/giant_spiders.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm b/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm index d07956a527c9..fec4d96fff76 100644 --- a/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm +++ b/code/modules/mob/living/basic/space_fauna/spider/giant_spider/giant_spiders.dm @@ -182,9 +182,10 @@ var/datum/atom_hud/datahud = GLOB.huds[health_hud] datahud.show_to(src) +//IRIS EDIT: Heals damage more AddComponent(/datum/component/healing_touch,\ - heal_brute = 20,\ //IRIS EDIT: Heals damage more - heal_burn = 20,\ //IRIS EDIT: Heals damage more + heal_brute = 20,\ + heal_burn = 20,\ heal_time = 2.5 SECONDS,\ interaction_key = DOAFTER_SOURCE_SPIDER,\ valid_targets_typecache = typecacheof(list(/mob/living/basic/spider/giant)),\