From 0ed76099f950b4f1db643ff30be3fc1f3f312f2f Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Fri, 15 Feb 2019 05:56:39 +0100 Subject: [PATCH 1/2] Limiting the honk mothers power. I have no horn but i must honk Also honk should now no longer only affect those that have mob vore turned off. --- .../mob/living/simple_animal/animals/synx.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/synx.dm b/code/modules/mob/living/simple_animal/animals/synx.dm index c8ac697cd3..910f832b6b 100644 --- a/code/modules/mob/living/simple_animal/animals/synx.dm +++ b/code/modules/mob/living/simple_animal/animals/synx.dm @@ -205,9 +205,12 @@ mob/living/simple_animal/synx/PunchTarget() /datum/reagent/inaprovaline/synxchem/clown/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.adjustToxLoss(0.01) playsound(M.loc, 'sound/items/bikehorn.ogg', 50, 1) - var/location = get_turf(M) - new /obj/item/weapon/bikehorn(location) - M.custom_pain("You suddenly cough up a bikehorn!",60) + if(prob(1)) + M.custom_pain("I have no horn but i must honk!",40) + if(prob(2)) + var/location = get_turf(M) + new /obj/item/weapon/bikehorn(location) + M.custom_pain("You suddenly cough up a bikehorn!",60) /datum/reagent/inaprovaline/synxchem/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien != IS_DIONA) @@ -431,8 +434,8 @@ mob/living/simple_animal/synx/PunchTarget() //icon_dead = "synx_hardlight_dead" icon_gib = null faction = "clown" - melee_damage_lower = 0 - melee_damage_upper = 0 + melee_damage_lower = 0.001 + melee_damage_upper = 0.001 environment_smash = 0 destroy_surroundings = 0 //Vore Section From 1681cad399569aa47b5be6977590a85970f3ff29 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Fri, 15 Feb 2019 07:53:44 +0100 Subject: [PATCH 2/2] Update synx.dm --- code/modules/mob/living/simple_animal/animals/synx.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/animals/synx.dm b/code/modules/mob/living/simple_animal/animals/synx.dm index 910f832b6b..f06ef5f879 100644 --- a/code/modules/mob/living/simple_animal/animals/synx.dm +++ b/code/modules/mob/living/simple_animal/animals/synx.dm @@ -205,6 +205,7 @@ mob/living/simple_animal/synx/PunchTarget() /datum/reagent/inaprovaline/synxchem/clown/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.adjustToxLoss(0.01) playsound(M.loc, 'sound/items/bikehorn.ogg', 50, 1) + M.adjustBruteLoss(-2)//healing brute if(prob(1)) M.custom_pain("I have no horn but i must honk!",40) if(prob(2)) @@ -434,8 +435,8 @@ mob/living/simple_animal/synx/PunchTarget() //icon_dead = "synx_hardlight_dead" icon_gib = null faction = "clown" - melee_damage_lower = 0.001 - melee_damage_upper = 0.001 + melee_damage_lower = 1 + melee_damage_upper = 1 environment_smash = 0 destroy_surroundings = 0 //Vore Section