diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm index 555df752e9c..b0dd86a7ca5 100644 --- a/code/modules/cargo/packs.dm +++ b/code/modules/cargo/packs.dm @@ -2032,6 +2032,14 @@ /obj/item/clothing/neck/petcollar) crate_name = "pug crate" +/datum/supply_pack/critter/bullterrier + name = "Bull Terrier Crate" + desc = "Like a normal dog, but with a head the shape of an egg. Comes with a nice collar!" + cost = 5000 + contains = list(/mob/living/simple_animal/pet/dog/bullterrier, + /obj/item/clothing/neck/petcollar) + crate_name = "bull terrier crate" + /datum/supply_pack/critter/snake name = "Snake Crate" desc = "Tired of these MOTHER FUCKING snakes on this MOTHER FUCKING space station? Then this isn't the crate for you. Contains three poisonous snakes." diff --git a/code/modules/mob/living/simple_animal/friendly/dog.dm b/code/modules/mob/living/simple_animal/friendly/dog.dm index 0cef8673dd7..2b29faa80b1 100644 --- a/code/modules/mob/living/simple_animal/friendly/dog.dm +++ b/code/modules/mob/living/simple_animal/friendly/dog.dm @@ -132,6 +132,19 @@ name = "McGriff" desc = "This dog can tell someting smells around here, and that something is CRIME!" +/mob/living/simple_animal/pet/dog/bullterrier + name = "\improper bull terrier" + real_name = "bull terrier" + desc = "It's a bull terrier." + icon = 'icons/mob/pets.dmi' + icon_state = "bullterrier" + icon_living = "bullterrier" + icon_dead = "bullterrier_dead" + butcher_results = list(/obj/item/reagent_containers/food/snacks/meat/slab/corgi = 3) // Would feel redundant to add more new dog meats. + gold_core_spawnable = FRIENDLY_SPAWN + collar_type = "bullterrier" + held_state = "bullterrier" + /mob/living/simple_animal/pet/dog/corgi/exoticcorgi name = "Exotic Corgi" desc = "As cute as it is colorful!" diff --git a/icons/mob/pets.dmi b/icons/mob/pets.dmi index 45b0ab1f046..e3786fc7689 100644 Binary files a/icons/mob/pets.dmi and b/icons/mob/pets.dmi differ diff --git a/icons/mob/pets_held_lh.dmi b/icons/mob/pets_held_lh.dmi index b5b7fe7bf7a..10d83815626 100644 Binary files a/icons/mob/pets_held_lh.dmi and b/icons/mob/pets_held_lh.dmi differ diff --git a/icons/mob/pets_held_rh.dmi b/icons/mob/pets_held_rh.dmi index 5c5870e8852..97cf4d02aaa 100644 Binary files a/icons/mob/pets_held_rh.dmi and b/icons/mob/pets_held_rh.dmi differ