From 7a1223094f7745e1ca4bc1265ef3a14e77c6ef65 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Thu, 12 Nov 2015 21:32:40 -0800 Subject: [PATCH 1/3] buffs syndicate simple mobs --- .../mob/living/simple_animal/hostile/syndicate.dm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm index 3117e104d46..15f8cd3665c 100644 --- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm +++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm @@ -11,8 +11,8 @@ response_disarm = "shoves" response_harm = "hits" speed = 0 - maxHealth = 100 - health = 100 + maxHealth = 110 + health = 110 harm_intent_damage = 5 melee_damage_lower = 10 melee_damage_upper = 10 @@ -41,8 +41,8 @@ ///////////////Sword and shield//////////// /mob/living/simple_animal/hostile/syndicate/melee - melee_damage_lower = 20 - melee_damage_upper = 25 + melee_damage_lower = 25 + melee_damage_upper = 30 icon_state = "syndicatemelee" icon_living = "syndicatemelee" weapon1 = /obj/item/weapon/melee/energy/sword/saber/red @@ -50,12 +50,12 @@ attacktext = "slashes" attack_sound = 'sound/weapons/bladeslice.ogg' status_flags = 0 - maxHealth = 150 - health = 150 + maxHealth = 170 + health = 170 /mob/living/simple_animal/hostile/syndicate/melee/bullet_act(obj/item/projectile/Proj) if(!Proj) return - if(prob(65)) + if(prob(50)) if((Proj.damage_type == BRUTE || Proj.damage_type == BURN)) src.health -= Proj.damage else From 90ccd861305bb46fbd1084c84f7c9d0d25a2a3f5 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Mon, 16 Nov 2015 22:32:44 -0800 Subject: [PATCH 2/3] Adds ability for syndie mobs to attack crit people. --- code/modules/mob/living/simple_animal/hostile/syndicate.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm index 15f8cd3665c..db0a3533034 100644 --- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm +++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm @@ -11,8 +11,9 @@ response_disarm = "shoves" response_harm = "hits" speed = 0 - maxHealth = 110 - health = 110 + stat_attack = 1 + maxHealth = 100 + health = 100 harm_intent_damage = 5 melee_damage_lower = 10 melee_damage_upper = 10 From 2247efb278b3b7b4211bf0ef51d046d49b081469 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Sun, 29 Nov 2015 01:59:22 -0800 Subject: [PATCH 3/3] Adds armor penatration. --- code/modules/mob/living/simple_animal/hostile/syndicate.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/simple_animal/hostile/syndicate.dm b/code/modules/mob/living/simple_animal/hostile/syndicate.dm index db0a3533034..7c4e9d0f4c7 100644 --- a/code/modules/mob/living/simple_animal/hostile/syndicate.dm +++ b/code/modules/mob/living/simple_animal/hostile/syndicate.dm @@ -50,6 +50,7 @@ weapon2 = /obj/item/weapon/shield/energy attacktext = "slashes" attack_sound = 'sound/weapons/bladeslice.ogg' + armour_penetration = 28 status_flags = 0 maxHealth = 170 health = 170