mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-29 06:57:42 +01:00
69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
//Penguins
|
|
|
|
/mob/living/simple_animal/pet/penguin
|
|
name = "penguin"
|
|
real_name = "penguin"
|
|
response_help = "pets"
|
|
response_disarm = "bops"
|
|
response_harm = "kicks"
|
|
speak = list("Gah Gah!", "NOOT NOOT!", "NOOT!", "Noot", "noot", "Prah!", "Grah!")
|
|
speak_emote = list("squawks", "gakkers")
|
|
emote_hear = list("squawk!", "gakkers!", "noots.","NOOTS!")
|
|
emote_see = list("shakes its beak.", "flaps it's wings.","preens itself.")
|
|
faction = list("penguin")
|
|
see_in_dark = 5
|
|
speak_chance = 1
|
|
turns_per_move = 10
|
|
icon = 'icons/mob/penguins.dmi'
|
|
footstep_type = FOOTSTEP_MOB_BAREFOOT
|
|
|
|
/mob/living/simple_animal/pet/penguin/Initialize(mapload)
|
|
. = ..()
|
|
AddElement(/datum/element/waddling)
|
|
|
|
/mob/living/simple_animal/pet/penguin/emperor
|
|
name = "Emperor penguin"
|
|
real_name = "penguin"
|
|
desc = "Emperor of all he surveys."
|
|
icon_state = "penguin"
|
|
icon_living = "penguin"
|
|
icon_dead = "penguin_dead"
|
|
butcher_results = list()
|
|
gold_core_spawnable = FRIENDLY_SPAWN
|
|
|
|
/mob/living/simple_animal/pet/penguin/eldrich
|
|
name = "Albino penguin"
|
|
real_name = "penguin"
|
|
desc = "Found in the depths of mountains."
|
|
response_help = "taps"
|
|
response_disarm = "pokes"
|
|
response_harm = "flails at"
|
|
icon_state = "penguin_elder"
|
|
icon_living = "penguin_elder"
|
|
icon_dead = "penguin_dead"
|
|
speak = list("Gah Gah!", "Tekeli-li! Tekeli-li!", "Tekeli-li!", "Teke", "li")
|
|
speak_emote = list("gibbers", "gakkers")
|
|
emote_hear = list("whistles!", "gakkers!")
|
|
emote_see = list("shakes its beak.", "flaps it's wings.","preens itself.")
|
|
faction = list("penguin", "cult")
|
|
|
|
/mob/living/simple_animal/pet/penguin/emperor/shamebrero
|
|
name = "Shamebrero penguin"
|
|
desc = "Shameful of all he surveys."
|
|
icon_state = "penguin_shamebrero"
|
|
icon_living = "penguin_shamebrero"
|
|
gold_core_spawnable = NO_SPAWN
|
|
unique_pet = TRUE
|
|
|
|
/mob/living/simple_animal/pet/penguin/baby
|
|
speak = list("gah", "noot noot", "noot!", "noot", "squeee!", "noo!")
|
|
name = "Penguin chick"
|
|
real_name = "penguin"
|
|
desc = "Can't fly and can barely waddles, but the prince of all chicks."
|
|
icon_state = "penguin_baby"
|
|
icon_living = "penguin_baby"
|
|
icon_dead = "penguin_baby_dead"
|
|
density = FALSE
|
|
pass_flags = PASSMOB
|
|
mob_size = MOB_SIZE_SMALL
|