Adds snake people (#2029)

Changes:
-adds snake people as a whitelisted species
-adds tail mechanics, ported from europa station, to the snake people, you can coil it up, people can attack it, stomp the tail and etc
-snake people can spit poison
-snake people can't use shoes
-snake people also have some other features like having a minor brute resist, claws and cuff breaking
-snake people can have different scale colors and eyes colors, but green is the best color without doubt
-also adds snake people
This commit is contained in:
Alberyk
2017-04-01 19:43:43 +03:00
committed by skull132
parent 0f3d8c083e
commit 0167ad4e80
16 changed files with 543 additions and 26 deletions
@@ -232,3 +232,15 @@
kill_count = 75
embed = 0
incinerate = 10*/
/obj/item/projectile/energy/venom
name = "venom spit"
icon_state = "neurotoxin"
damage = 10
damage_type = TOX
/obj/item/projectile/energy/venom/on_hit(var/atom/target, var/blocked = 0)
if(ishuman(target))
var/mob/living/carbon/human/M = target
if(M.reagents) M.reagents.add_reagent("toxin", 5)
..()