mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-28 23:59:40 +01:00
Merge pull request #1809 from Darlantanis/RacoonsAndImplants
Backup Implanter, Raccoons
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
//raccoon
|
||||
/mob/living/simple_mob/animal/passive/raccoon_ch
|
||||
name = "raccoon"
|
||||
desc = "A raccoon, also known as a trash panda."
|
||||
tt_desc = "E purgamentum raccoonus"
|
||||
icon = 'icons/mob/animal_ch.dmi'
|
||||
icon_state = "raccoon"
|
||||
item_state = "raccoon"
|
||||
icon_living = "raccoon"
|
||||
icon_dead = "raccoon_dead"
|
||||
|
||||
ai_holder_type = /datum/ai_holder/simple_mob/passive/raccoon_ch
|
||||
say_list_type = /datum/say_list/raccoon_ch
|
||||
|
||||
see_in_dark = 6
|
||||
|
||||
response_help = "pets"
|
||||
response_disarm = "gently pushes aside"
|
||||
response_harm = "kicks"
|
||||
|
||||
min_oxy = 16 //Require atleast 16kPA oxygen
|
||||
minbodytemp = 223 //Below -50 Degrees Celsius
|
||||
maxbodytemp = 323 //Above 50 Degrees Celsius
|
||||
|
||||
meat_amount = 1
|
||||
meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat
|
||||
|
||||
|
||||
/datum/say_list/raccoon_ch
|
||||
speak = list("HSSSSS")
|
||||
emote_see = list("shakes their head", "shivers","grooms self", "nibbles on some trash")
|
||||
emote_hear = list("purrs")
|
||||
|
||||
/datum/ai_holder/simple_mob/passive/raccoon_ch
|
||||
flee_when_dying = TRUE
|
||||
dying_threshold = 0.9
|
||||
speak_chance = 1
|
||||
Reference in New Issue
Block a user