diff --git a/code/datums/supplypacks/contraband_vr.dm b/code/datums/supplypacks/contraband_vr.dm index 89e55ea04d4..dd42fc5834c 100644 --- a/code/datums/supplypacks/contraband_vr.dm +++ b/code/datums/supplypacks/contraband_vr.dm @@ -4,4 +4,16 @@ cost = 150 containertype = /obj/structure/closet/crate containername = "Stolen crate" - contraband = 1 \ No newline at end of file + contraband = 1 + +/datum/supply_packs/supply/awoo + name = "Wolfgirl Crate" + cost = 200 //I mean, it's a whole wolfgirl + containertype = /obj/structure/largecrate/animal/awoo + containername = "Wolfgirl crate" + +/datum/supply_packs/supply/mlem + name = "Catgirl Crate" + cost = 200 //I mean, it's a whole catgirl + containertype = /obj/structure/largecrate/animal/mlem + containername = "Catgirl crate" \ No newline at end of file diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 63430b54d3e..696f0053ef5 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -106,4 +106,14 @@ playsound(src, 'sound/items/poster_ripped.ogg', 50, 1) icon_state = "otiecrate" taped = 0 - ..() \ No newline at end of file + ..() + +/obj/structure/largecrate/animal/mlem + name = "Catgirl Crate" + desc = "A sketchy looking crate that seems to have had most marks and stickers removed. You can almost make out 'genetically-engineered subject'." + held_type = /mob/living/simple_animal/catgirl + +/obj/structure/largecrate/animal/awoo + name = "Wolfgirl Crate" + desc = "A sketchy looking crate that shakes and thuds every now and then. Someone seems to be demanding they be let out." + held_type = /mob/living/simple_animal/retaliate/awoo \ No newline at end of file