diff --git a/code/datums/supplypacks/hydroponics_vr.dm b/code/datums/supplypacks/hydroponics_vr.dm index 7476fdd29b..fa912852e7 100644 --- a/code/datums/supplypacks/hydroponics_vr.dm +++ b/code/datums/supplypacks/hydroponics_vr.dm @@ -70,4 +70,10 @@ name = "Jerboa crate" cost = 10 containertype = /obj/structure/largecrate/animal/jerboa - containername = "Jerboa crate" \ No newline at end of file + containername = "Jerboa crate" + +/datum/supply_pack/hydro/tits + name = "A pair of great tits" + cost = 10 + containertype = /obj/structure/largecrate/tits + containername = "A pair of great tits" diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index cc88e0f871..0e890c37e8 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -144,4 +144,9 @@ /obj/structure/largecrate/animal/weretiger name = "Weretiger Crate" desc = "You can hear a lot of annoyed scratches, clearly someone doesn't enjoy being locked up." - starts_with = list(/mob/living/simple_mob/vore/weretiger) \ No newline at end of file + starts_with = list(/mob/living/simple_mob/vore/weretiger) + +/obj/structure/largecrate/tits + name = "A pair of Great tits" + desc = "You can hear two round things inside" + starts_with = list (/mob/living/simple_mob/animal/passive/bird/azure_tit/great, /mob/living/simple_mob/animal/passive/bird/azure_tit/great) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm index 1640d2ddea..0b0f55351a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm @@ -1,4 +1,9 @@ /mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter name = "Tweeter" desc = "A beautiful little blue and white bird, if only excessively loud for no reason sometimes." - makes_dirt = FALSE \ No newline at end of file + makes_dirt = FALSE + +/mob/living/simple_mob/animal/passive/bird/azure_tit/great + name = "Great Tit" + desc = "A species of bird, colored blue and white. Isn't it great?" + size_multiplier = 2