mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
changes
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
/mob/living/carbon/alien/humanoid/hunter
|
/mob/living/carbon/alien/humanoid/hunter
|
||||||
name = "alien hunter"
|
name = "alien hunter"
|
||||||
caste = "h"
|
caste = "h"
|
||||||
maxHealth = 160
|
maxHealth = 170
|
||||||
health = 160
|
health = 170
|
||||||
icon_state = "alienh"
|
icon_state = "alienh"
|
||||||
var/obj/screen/leap_icon = null
|
var/obj/screen/leap_icon = null
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/mob/living/carbon/alien/humanoid/sentinel
|
/mob/living/carbon/alien/humanoid/sentinel
|
||||||
name = "alien sentinel"
|
name = "alien sentinel"
|
||||||
caste = "s"
|
caste = "s"
|
||||||
maxHealth = 135
|
maxHealth = 140
|
||||||
health = 135
|
health = 140
|
||||||
icon_state = "aliens"
|
icon_state = "aliens"
|
||||||
|
|
||||||
/mob/living/carbon/alien/humanoid/sentinel/Initialize()
|
/mob/living/carbon/alien/humanoid/sentinel/Initialize()
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
mob_size = MOB_SIZE_SMALL
|
mob_size = MOB_SIZE_SMALL
|
||||||
density = FALSE
|
density = FALSE
|
||||||
hud_type = /datum/hud/larva
|
hud_type = /datum/hud/larva
|
||||||
|
mouse_opacity = MOUSE_OPACITY_OPAQUE
|
||||||
|
|
||||||
maxHealth = 25
|
maxHealth = 25
|
||||||
health = 25
|
health = 25
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
icon_state = "neurotoxin"
|
icon_state = "neurotoxin"
|
||||||
damage = 15
|
damage = 15
|
||||||
damage_type = TOX
|
damage_type = TOX
|
||||||
var/stagger_duration = 3.5 SECONDS
|
var/stagger_duration = 5 SECONDS
|
||||||
|
|
||||||
/obj/item/projectile/bullet/neurotoxin/on_hit(atom/target, blocked = FALSE)
|
/obj/item/projectile/bullet/neurotoxin/on_hit(atom/target, blocked = FALSE)
|
||||||
if(isalien(target))
|
if(isalien(target))
|
||||||
@@ -11,6 +11,6 @@
|
|||||||
nodamage = TRUE
|
nodamage = TRUE
|
||||||
else if(iscarbon(target))
|
else if(iscarbon(target))
|
||||||
var/mob/living/L = target
|
var/mob/living/L = target
|
||||||
L.KnockToFloor(TRUE)
|
L.KnockToFloor()
|
||||||
L.Stagger(stagger_duration)
|
L.Stagger(stagger_duration)
|
||||||
return ..()
|
return ..()
|
||||||
|
|||||||
Reference in New Issue
Block a user