mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-01 21:21:59 +00:00
* Converts Feral Cats, Killer Tomatos, and Non-Demon Creatures to Basic Mobs * Updatepaths * Adds ventcrawling target finding behavior. * returnPipenet() * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> * New Linters * Fixed DME --------- Signed-off-by: PollardTheDragon <144391971+PollardTheDragon@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
21 lines
642 B
Plaintext
21 lines
642 B
Plaintext
/mob/living/basic/creature
|
|
name = "creature"
|
|
desc = "A sanity-destroying otherthing."
|
|
speak_emote = list("gibbers")
|
|
icon_state = "otherthing"
|
|
icon_living = "otherthing"
|
|
icon_dead = "otherthing-dead"
|
|
health = 80
|
|
maxHealth = 80
|
|
obj_damage = 100
|
|
melee_damage_lower = 25
|
|
melee_damage_upper = 50
|
|
melee_attack_cooldown_min = 1.5 SECONDS
|
|
melee_attack_cooldown_max = 2.5 SECONDS
|
|
attack_verb_simple = "chomp"
|
|
attack_verb_continuous = "chomps"
|
|
attack_sound = 'sound/weapons/bite.ogg'
|
|
faction = list("creature")
|
|
ai_controller = /datum/ai_controller/basic_controller/simple/simple_hostile_obstacles
|
|
gold_core_spawnable = HOSTILE_SPAWN
|