mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
39 lines
1.2 KiB
Plaintext
39 lines
1.2 KiB
Plaintext
/mob/living/basic/heretic_summon
|
|
name = "Eldritch Demon"
|
|
real_name = "Eldritch Demon"
|
|
desc = "A horror from beyond this realm, summoned by bad code."
|
|
icon = 'icons/mob/nonhuman-player/eldritch_mobs.dmi'
|
|
faction = list(FACTION_HERETIC)
|
|
basic_mob_flags = DEL_ON_DEATH
|
|
gender = NEUTER
|
|
mob_biotypes = NONE
|
|
|
|
habitable_atmos = null
|
|
status_flags = CANPUSH
|
|
damage_coeff = list(BRUTE = 1, BURN = 1, TOX = 0, STAMINA = 0, OXY = 0)
|
|
speed = 0
|
|
melee_attack_cooldown = CLICK_CD_MELEE
|
|
|
|
attack_sound = 'sound/items/weapons/punch1.ogg'
|
|
response_help_continuous = "thinks better of touching"
|
|
response_help_simple = "think better of touching"
|
|
response_disarm_continuous = "flails at"
|
|
response_disarm_simple = "flail at"
|
|
response_harm_continuous = "rips"
|
|
response_harm_simple = "tear"
|
|
death_message = "implodes into itself."
|
|
|
|
unsuitable_atmos_damage = 0
|
|
unsuitable_cold_damage = 0
|
|
unsuitable_heat_damage = 0
|
|
|
|
combat_mode = TRUE
|
|
ai_controller = null
|
|
speak_emote = list("screams")
|
|
gold_core_spawnable = NO_SPAWN
|
|
|
|
/mob/living/basic/heretic_summon/Initialize(mapload)
|
|
. = ..()
|
|
AddElement(/datum/element/death_drops, /obj/effect/gibspawner/generic)
|
|
ADD_TRAIT(src, TRAIT_HERETIC_SUMMON, INNATE_TRAIT)
|