41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
/mob/living/simple_animal/opossum
|
|
name = "opossum"
|
|
desc = "It's an opossum, a small scavenging marsupial."
|
|
icon_state = "possum"
|
|
icon_living = "possum"
|
|
icon_dead = "possum_dead"
|
|
speak = list("Hiss!","HISS!","Hissss?")
|
|
speak_emote = list("hisses")
|
|
emote_hear = list("hisses.")
|
|
emote_see = list("runs in a circle.", "shakes.")
|
|
speak_chance = 1
|
|
turns_per_move = 3
|
|
blood_volume = 250
|
|
see_in_dark = 5
|
|
maxHealth = 15
|
|
health = 15
|
|
butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab = 1)
|
|
response_help_continuous = "pets"
|
|
response_help_simple = "pet"
|
|
response_disarm_continuous = "gently pushes aside"
|
|
response_disarm_simple = "gently push aside"
|
|
response_harm_continuous = "stamps on"
|
|
response_harm_simple = "stamp"
|
|
density = FALSE
|
|
pass_flags = PASSTABLE | PASSMOB
|
|
mob_size = MOB_SIZE_TINY
|
|
mob_biotypes = MOB_ORGANIC|MOB_BEAST
|
|
gold_core_spawnable = FRIENDLY_SPAWN
|
|
|
|
/mob/living/simple_animal/opossum/Initialize(mapload)
|
|
. = ..()
|
|
AddElement(/datum/element/ventcrawling, given_tier = VENTCRAWLER_ALWAYS)
|
|
|
|
/mob/living/simple_animal/opossum/poppy
|
|
name = "Poppy the Safety Possum"
|
|
desc = "Safety first!"
|
|
icon_state = "poppypossum"
|
|
icon_living = "poppypossum"
|
|
icon_dead = "poppypossum_dead"
|
|
butcher_results = list(/obj/item/clothing/head/hardhat = 1)
|