mirror of
https://github.com/Skyrat-SS13/Skyrat-tg.git
synced 2026-07-18 11:25:27 +01:00
c462c462d8
* Simple animal xenos are now basic animal xenos * Conflict + updatepaths * more repaths * file repath * womp womp * bam me thinks * mapfix --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: Waterpig <wtryoutube@seznam.cz> Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
21 lines
708 B
Plaintext
21 lines
708 B
Plaintext
/mob/living/basic/alien/sentinel
|
|
name = "alien sentinel"
|
|
icon_state = "aliens"
|
|
icon_living = "aliens"
|
|
icon_dead = "aliens_dead"
|
|
health = 150
|
|
maxHealth = 150
|
|
melee_damage_lower = 15
|
|
melee_damage_upper = 15
|
|
|
|
ai_controller = /datum/ai_controller/basic_controller/alien/sentinel
|
|
|
|
///The type of projectile that fires from attacks.
|
|
var/projectiletype = /obj/projectile/neurotoxin/damaging
|
|
///The sound that plays when the projectile is fired.
|
|
var/projectilesound = 'sound/weapons/pierce.ogg'
|
|
|
|
/mob/living/basic/alien/sentinel/Initialize(mapload)
|
|
. = ..()
|
|
AddComponent(/datum/component/ranged_attacks, projectile_type = projectiletype, projectile_sound = projectilesound, cooldown_time = 1 SECONDS)
|