mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 16:10:02 +01:00
Fixes Bones death description (#9085)
This commit is contained in:
@@ -233,13 +233,14 @@
|
||||
befriend_job = "Chief Medical Officer"
|
||||
holder_type = /obj/item/holder/cat/black
|
||||
|
||||
/mob/living/simple_animal/cat/fluff/Runtime/death()
|
||||
.=..()
|
||||
desc = "Oh no, Runtime is dead! What kind of monster would do this?"
|
||||
/mob/living/simple_animal/cat/fluff/examine(mob/user)
|
||||
..()
|
||||
if(stat == DEAD)
|
||||
to_chat(user, "Oh no, [name] is dead! What kind of monster would do this?")
|
||||
|
||||
/mob/living/simple_animal/cat/kitten
|
||||
name = "kitten"
|
||||
desc = "D'aaawwww"
|
||||
desc = "D'aaawwww."
|
||||
icon_state = "kitten"
|
||||
item_state = "kitten"
|
||||
icon_living = "kitten"
|
||||
@@ -248,13 +249,14 @@
|
||||
gender = NEUTER
|
||||
holder_type = /obj/item/holder/cat/kitten
|
||||
|
||||
/mob/living/simple_animal/cat/kitten/death()
|
||||
.=..()
|
||||
desc = "It's a dead kitten! What kind of monster would do this?"
|
||||
/mob/living/simple_animal/cat/kitten/examine(mob/user)
|
||||
..()
|
||||
if(stat == DEAD)
|
||||
to_chat(user, "It's a dead kitten! What kind of monster would do this?")
|
||||
|
||||
/mob/living/simple_animal/cat/fluff/bones
|
||||
name = "Bones"
|
||||
desc = "That's Bones the cat. He's a laid back, black cat. Meow."
|
||||
desc = "He's a laid back, black cat. Meow."
|
||||
gender = MALE
|
||||
icon_state = "cat3"
|
||||
item_state = "cat3"
|
||||
@@ -265,10 +267,6 @@
|
||||
var/friend_name = "Erstatz Vryroxes"
|
||||
holder_type = /obj/item/holder/cat/black
|
||||
|
||||
/mob/living/simple_animal/cat/fluff/bones/death()
|
||||
.=..()
|
||||
desc = "Bones is dead"
|
||||
|
||||
/mob/living/simple_animal/cat/kitten/Initialize()
|
||||
. = ..()
|
||||
gender = pick(MALE, FEMALE)
|
||||
|
||||
Reference in New Issue
Block a user