From 21f3a0a1883e4d1a3587158d2dfc7e100b0a4d37 Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Mon, 14 Jan 2019 20:04:41 -0500 Subject: [PATCH] Add Fennec Crate Part 2 of Fennec Palooza.~ --- .../objects/structures/crates_lockers/largecrate_vr.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 6a1ff173aa..f6f171943a 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -117,3 +117,13 @@ name = "Wolfgirl Crate" desc = "A sketchy looking crate with airholes that shakes and thuds every now and then. Someone seems to be demanding they be let out." starts_with = list(/mob/living/simple_animal/retaliate/awoo) + +/obj/structure/largecrate/animal/fennec + name = "Fennec Crate" + desc = "Bounces around a lot. Looks messily packaged, were they in a hurry?" + starts_with = list(/mob/living/simple_animal/fennec) + +/obj/structure/largecrate/animal/fennec/initialize() + starts_with = list(pick(/mob/living/simple_animal/fennec, + /mob/living/simple_animal/retaliate/fennix;0.5)) + return ..()