From 7cff554a15c5808ce145669b747d2fa950e7c3d6 Mon Sep 17 00:00:00 2001 From: xxalpha Date: Fri, 11 Sep 2015 00:26:19 +0100 Subject: [PATCH] Tweaked values. Added ability to block pounces with shields. Changelog. Removed conflicting code. --- .../modules/mob/living/carbon/alien/larva/powers.dm | 2 +- .../mob/living/carbon/human/human_attackalien.dm | 2 +- code/modules/mob/living/silicon/silicon.dm | 2 +- html/changelogs/xxalpha-aliums.yml | 13 +++++++++++++ 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/xxalpha-aliums.yml diff --git a/code/modules/mob/living/carbon/alien/larva/powers.dm b/code/modules/mob/living/carbon/alien/larva/powers.dm index e49a7c833a0..3f9cb657498 100644 --- a/code/modules/mob/living/carbon/alien/larva/powers.dm +++ b/code/modules/mob/living/carbon/alien/larva/powers.dm @@ -42,7 +42,7 @@ L << "There are three to choose from:" L << "Hunters are the most agile caste tasked with hunting for hosts. They are faster than a human and can even pounce, but are not much tougher than a drone." L << "Sentinels are tasked with protecting the hive. With their ranged spit, invisibility, and high health, they make formidable guardians and acceptable secondhand hunters." - L << "Drones are the weakest and slowest of the castes, but can grow into queens if there is none, and are vital to maintaining a hive with their resin secretion abilities." + L << "Drones are the weakest and slowest of the castes, but can grow into the queen if there is none, and are vital to maintaining a hive with their resin secretion abilities." var/alien_caste = alert(L, "Please choose which alien caste you shall belong to.",,"Hunter","Sentinel","Drone") var/mob/living/carbon/alien/humanoid/new_xeno diff --git a/code/modules/mob/living/carbon/human/human_attackalien.dm b/code/modules/mob/living/carbon/human/human_attackalien.dm index 77f988ac7be..50616ff5af8 100644 --- a/code/modules/mob/living/carbon/human/human_attackalien.dm +++ b/code/modules/mob/living/carbon/human/human_attackalien.dm @@ -7,7 +7,7 @@ if(M.a_intent == "harm") if (w_uniform) w_uniform.add_fingerprint(M) - var/damage = prob(90) ? 25 : 0 + var/damage = prob(90) ? 20 : 0 if(!damage) playsound(loc, 'sound/weapons/slashmiss.ogg', 50, 1, -1) visible_message("[M] has lunged at [src]!", \ diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index f8dd253a0d1..1b730a52172 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -366,7 +366,7 @@ /mob/living/silicon/attack_alien(mob/living/carbon/alien/humanoid/M) if(..()) //if harm or disarm intent - var/damage = 25 + var/damage = 20 if (prob(90)) add_logs(M, src, "attacked") playsound(loc, 'sound/weapons/slash.ogg', 25, 1, -1) diff --git a/html/changelogs/xxalpha-aliums.yml b/html/changelogs/xxalpha-aliums.yml new file mode 100644 index 00000000000..648643239cb --- /dev/null +++ b/html/changelogs/xxalpha-aliums.yml @@ -0,0 +1,13 @@ +author: xxalpha + +delete-after: True + +changes: + - bugfix: "Fixed not being able to grab things from storage while inside aliens." + - bugfix: "Fixed two progress bars when devouring." + - rscadd: "Shields will now block alien hunter pounces." + - tweak: "Alien hunters health reduced to 125 from 150. Alien sentinels health increased to 150 from 125." + - tweak: "Alien hunters will no longer be transparent when stalking, this ability was given to alien sentinels." + - tweak: "Alien slashing now deals constant 20 damage but has a chance to miss." + - tweak: "Reduced alien disarm stun duration vs cyborgs, from 7 seconds to 2 seconds." + - tweak: "Alien sentinels now move as fast as humans." \ No newline at end of file