mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 21:12:24 +01:00
Replaces changeling horror form sprites. (#3449)
image Abomination sprites. Adjusted given this forum thread: https://forums.aurorastation.org/viewtopic.php?f=18&t=8672 The sprite in the OP is not in DMI form and I'm not in a mood to adjust it or add more randomosity. If Hour Glass Man or some other magic code person made a not-borg-code way for 'lings to pick their sprites, I have more horror form sprites I could add.
This commit is contained in:
@@ -89,6 +89,18 @@
|
||||
icon = 'icons/mob/mob.dmi'
|
||||
icon_state = "horror"
|
||||
icon_living = "horror"
|
||||
icon_dead = "horror_dead"
|
||||
|
||||
/mob/living/simple_animal/familiar/horror/Initialize()
|
||||
. = ..()
|
||||
if(prob(25))
|
||||
icon_state = "horror_alt"
|
||||
icon_living = "horror_alt"
|
||||
icon_dead = "horror_alt_dead"
|
||||
else if(prob(25))
|
||||
icon_state = "abomination"
|
||||
icon_living = "abomination"
|
||||
icon_dead = "abomination_dead"
|
||||
|
||||
speak_emote = list("moans", "groans")
|
||||
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
desc = "A monstrous creature, made of twisted flesh and bone."
|
||||
speak_emote = list("gibbers")
|
||||
icon = 'icons/mob/animal.dmi'
|
||||
icon_state = "horror"
|
||||
icon_living = "horror"
|
||||
icon_dead = "horror_dead"
|
||||
icon_state = "abomination"
|
||||
icon_living = "abomination"
|
||||
icon_dead = "abomination_dead"
|
||||
stop_automated_movement = 1
|
||||
universal_speak =1
|
||||
universal_speak = 1
|
||||
universal_understand = 1
|
||||
|
||||
mob_swap_flags = HUMAN|SIMPLE_ANIMAL|SLIME|MONKEY
|
||||
@@ -42,8 +42,14 @@
|
||||
/mob/living/simple_animal/hostile/true_changeling/Initialize()
|
||||
. = ..()
|
||||
if(prob(25))
|
||||
icon_state = "horror"
|
||||
icon_living = "horror"
|
||||
icon_dead = "horror_dead"
|
||||
else if(prob(25))
|
||||
icon_state = "horror_alt"
|
||||
icon_living = "horror_alt"
|
||||
icon_dead = "horror_alt_dead"
|
||||
|
||||
|
||||
/mob/living/simple_animal/hostile/true_changeling/Life()
|
||||
..()
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 215 KiB After Width: | Height: | Size: 222 KiB |
Reference in New Issue
Block a user