mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
* Porting "Personal interaction messages to simple animals" and more. * Travis check. * doc * whoopsie. * )
24 lines
623 B
Plaintext
24 lines
623 B
Plaintext
/*
|
|
Mobs
|
|
*/
|
|
|
|
/mob/living/simple_animal/holodeck_monkey
|
|
name = "monkey"
|
|
desc = "A holographic creature fond of bananas."
|
|
icon = 'icons/mob/monkey.dmi'
|
|
icon_state = "monkey1"
|
|
icon_living = "monkey1"
|
|
icon_dead = "monkey1_dead"
|
|
speak_emote = list("chimpers")
|
|
emote_hear = list("chimpers.")
|
|
emote_see = list("scratches.", "looks around.")
|
|
speak_chance = 1
|
|
turns_per_move = 2
|
|
butcher_results = list()
|
|
response_help_continuous = "pets"
|
|
response_help_simple = "pet"
|
|
response_disarm_continuous = "pushes aside"
|
|
response_disarm_simple = "push aside"
|
|
response_harm_continuous = "kicks"
|
|
response_harm_simple = "kick"
|