Tweaked values. Added ability to block pounces with shields. Changelog.

Removed conflicting code.
This commit is contained in:
xxalpha
2015-09-11 01:29:43 +01:00
parent b238ac02e8
commit 7cff554a15
4 changed files with 16 additions and 3 deletions
@@ -42,7 +42,7 @@
L << "<span class='info'>There are three to choose from:"
L << "<span class='name'>Hunters</span> <span class='info'>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.</span>"
L << "<span class='name'>Sentinels</span> <span class='info'>are tasked with protecting the hive. With their ranged spit, invisibility, and high health, they make formidable guardians and acceptable secondhand hunters.</span>"
L << "<span class='name'>Drones</span> <span class='info'>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.</span>"
L << "<span class='name'>Drones</span> <span class='info'>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.</span>"
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
@@ -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("<span class='danger'>[M] has lunged at [src]!</span>", \
+1 -1
View File
@@ -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)
+13
View File
@@ -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."