mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-27 14:46:57 +01:00
22 lines
690 B
Plaintext
22 lines
690 B
Plaintext
/obj/item/paper/fluff/ruins/asteroid10/welcome
|
|
name = "Welcome to Dog Heaven!"
|
|
info = "The ambassador of Dog Heaven welcomes you to our humble retreat!"
|
|
|
|
/obj/item/reagent_containers/food/snacks/nugget/dog
|
|
name = "dog treat"
|
|
list_reagents = list(/datum/reagent/consumable/nutriment = 1,/datum/reagent/corgium = 10)
|
|
|
|
/mob/living/simple_animal/pet/dog/corgi/chef/Initialize()
|
|
. = ..()
|
|
var/obj/item/clothing/head/chefhat/hat = new (src)
|
|
inventory_head = hat
|
|
update_corgi_fluff()
|
|
regenerate_icons()
|
|
|
|
/mob/living/simple_animal/pet/dog/corgi/seccie/Initialize()
|
|
. = ..()
|
|
var/obj/item/clothing/head/helmet/hat = new (src)
|
|
inventory_head = hat
|
|
update_corgi_fluff()
|
|
regenerate_icons()
|