From b70621382ef752e22ab0058fc7906e328bb22228 Mon Sep 17 00:00:00 2001 From: CHOMPStation2 <58959929+CHOMPStation2@users.noreply.github.com> Date: Sat, 3 Feb 2024 18:31:20 -0700 Subject: [PATCH] [MIRROR] borgjaw rebalance (#7680) Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: CHOMPStation2 --- .../silicon/robot/dogborg/dog_modules_vr.dm | 39 +++++++++---------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index 4ae9b3ab59..9580598fb9 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -1,24 +1,27 @@ +/obj/item/weapon/melee/dogborg/jaws + icon = 'icons/mob/dogborg_vr.dmi' + hitsound = 'sound/weapons/bite.ogg' + throwforce = 0 + w_class = ITEMSIZE_NORMAL + pry = 1 + tool_qualities = list(TOOL_CROWBAR) + /obj/item/weapon/melee/dogborg/jaws/big name = "combat jaws" - icon = 'icons/mob/dogborg_vr.dmi' icon_state = "jaws" desc = "The jaws of the law." - force = 10 - throwforce = 0 - hitsound = 'sound/weapons/bite.ogg' + force = 25 + armor_penetration = 25 + defend_chance = 15 attack_verb = list("chomped", "bit", "ripped", "mauled", "enforced") - w_class = ITEMSIZE_NORMAL /obj/item/weapon/melee/dogborg/jaws/small name = "puppy jaws" - icon = 'icons/mob/dogborg_vr.dmi' icon_state = "smalljaws" desc = "The jaws of a small dog." - force = 5 - throwforce = 0 - hitsound = 'sound/weapons/bite.ogg' + force = 10 + defend_chance = 5 attack_verb = list("nibbled", "bit", "gnawed", "chomped", "nommed") - w_class = ITEMSIZE_NORMAL var/emagged = 0 /obj/item/weapon/melee/dogborg/jaws/small/attack_self(mob/user) @@ -27,24 +30,20 @@ emagged = !emagged if(emagged) name = "combat jaws" - icon = 'icons/mob/dogborg_vr.dmi' icon_state = "jaws" desc = "The jaws of the law." - force = 10 - throwforce = 0 - hitsound = 'sound/weapons/bite.ogg' + force = 25 + armor_penetration = 25 + defend_chance = 15 attack_verb = list("chomped", "bit", "ripped", "mauled", "enforced") - w_class = ITEMSIZE_NORMAL else name = "puppy jaws" - icon = 'icons/mob/dogborg_vr.dmi' icon_state = "smalljaws" desc = "The jaws of a small dog." - force = 5 - throwforce = 0 - hitsound = 'sound/weapons/bite.ogg' + force = 10 + armor_penetration = 0 + defend_chance = 5 attack_verb = list("nibbled", "bit", "gnawed", "chomped", "nommed") - w_class = ITEMSIZE_NORMAL update_icon() // Baton chompers