tidies up simple animal sprites, adds movement states, improves some sprites. (#6933)

This commit is contained in:
Wowzewow (Wezzy)
2019-11-30 23:48:49 +08:00
committed by Werner
parent 85d1dc9c67
commit 87c12f745c
28 changed files with 59 additions and 5 deletions
@@ -1,6 +1,7 @@
/mob/living/simple_animal/ice_tunneler
name = "ice tunneler"
desc = "An egg producing beast from Adhomai. It is known for burrowing in ice and snow."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "tunneler"
icon_living = "tunneler"
icon_dead = "tunneler_dead"
@@ -44,6 +45,7 @@
/mob/living/simple_animal/fatshouter
name = "fatshouter"
desc = "An adhomian animal known for its production of milk and wool."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "fatshouter"
icon_living = "fatshouter"
icon_dead = "fatshouter_dead"
@@ -75,6 +77,7 @@
/mob/living/simple_animal/hostile/retaliate/rafama
name = "steed of Mata'ke"
desc = "An animal native to Adhomai, known for its agressive behavior and mighty tusks."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "rafama"
icon_living = "rafama"
icon_dead = "rafama_dead"
@@ -2,6 +2,7 @@
/mob/living/simple_animal/cat
name = "cat"
desc = "A domesticated, feline pet. Has a tendency to adopt crewmembers."
icon = 'icons/mob/npc/pets.dmi'
icon_state = "cat2"
item_state = "cat2"
icon_living = "cat2"
@@ -3,6 +3,7 @@
name = "corgi"
real_name = "corgi"
desc = "It's a corgi."
icon = 'icons/mob/npc/pets.dmi'
icon_state = "corgi"
icon_living = "corgi"
icon_dead = "corgi_dead"
@@ -2,6 +2,7 @@
/mob/living/simple_animal/hostile/retaliate/goat
name = "goat"
desc = "Not known for their pleasant disposition."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "goat"
icon_living = "goat"
icon_dead = "goat_dead"
@@ -75,6 +76,7 @@
/mob/living/simple_animal/cow
name = "cow"
desc = "Known for their milk, just don't tip them over."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "cow"
icon_living = "cow"
icon_dead = "cow_dead"
@@ -119,6 +121,7 @@
/mob/living/simple_animal/chick
name = "\improper chick"
desc = "Adorable! They make such a racket though."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "chick"
icon_living = "chick"
icon_dead = "chick_dead"
@@ -168,6 +171,7 @@
/mob/living/simple_animal/chicken
name = "\improper chicken"
desc = "Hopefully the eggs are good this season."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "chicken"
icon_living = "chicken"
icon_dead = "chicken_dead"
@@ -3,6 +3,7 @@
name = "fox"
real_name = "fox"
desc = "It's a fox. I wonder what it says?"
icon = 'icons/mob/npc/pets.dmi'
icon_state = "fox"
icon_living = "fox"
icon_dead = "fox_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hakhma
name = "hakhma"
desc = "An oversized insect breed by Scarab colony ships, known for their milk."
icon = 'icons/mob/npc/livestock.dmi'
icon_state = "hakhma"
icon_living = "hakhma"
icon_dead = "hakhma_dead"
@@ -1,7 +1,6 @@
/mob/living/simple_animal/lizard
name = "Lizard"
desc = "It's a hissy little lizard. Is it related to Unathi?"
icon = 'icons/mob/npc/critter.dmi'
icon_state = "lizard"
icon_living = "lizard"
icon_dead = "lizard-dead"
@@ -3,7 +3,7 @@
short_name = "dog"
desc = "A dog trained to listen and obey its owner commands, this one is a german shepherd."
icon = 'icons/mob/npc/dog.dmi'
icon = 'icons/mob/npc/pets.dmi'
icon_state = "german"
icon_living = "german"
icon_dead = "german_dead"
@@ -1,7 +1,6 @@
/mob/living/simple_animal/hostile/creature
name = "creature"
desc = "A sanity-destroying otherthing."
icon = 'icons/mob/npc/critter.dmi'
speak_emote = list("gibbers")
icon_state = "otherthing"
icon_living = "otherthing"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/faithless
name = "Faithless"
desc = "The Wish Granter's faith in humanity, incarnate"
icon = 'icons/mob/npc/human.dmi'
icon_state = "faithless"
icon_living = "faithless"
icon_dead = "faithless_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/pirate
name = "Pirate"
desc = "Does what he wants cause a pirate is free."
icon = 'icons/mob/npc/human.dmi'
icon_state = "piratemelee"
icon_living = "piratemelee"
icon_dead = "piratemelee_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/russian
name = "russian"
desc = "For the Motherland!"
icon = 'icons/mob/npc/human.dmi'
icon_state = "russianmelee"
icon_living = "russianmelee"
icon_dead = "russianmelee_dead"
@@ -1,6 +1,7 @@
/mob/living/simple_animal/hostile/syndicate
name = "\improper Syndicate operative"
desc = "Death to the Company."
icon = 'icons/mob/npc/human.dmi'
icon_state = "syndicate"
icon_living = "syndicate"
icon_dead = "syndicate_dead"
@@ -140,7 +141,7 @@
/mob/living/simple_animal/hostile/viscerator
name = "viscerator"
desc = "A small, twin-bladed machine capable of inflicting very deadly lacerations."
icon = 'icons/mob/npc/critter.dmi'
icon = 'icons/mob/npc/aibots.dmi'
icon_state = "viscerator_attack"
icon_living = "viscerator_attack"
pass_flags = PASSTABLE
@@ -28,7 +28,7 @@
/mob/living/simple_animal/parrot
name = "\improper Parrot"
desc = "The parrot squaks, \"It's a Parrot! BAWWK!\""
icon = 'icons/mob/npc/animal.dmi'
icon = 'icons/mob/npc/pets.dmi'
icon_state = "parrot_fly"
icon_living = "parrot_fly"
icon_dead = "parrot_dead"