From 46fbc789f9f9d88f6122f99731c0c68b26d77ba1 Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Fri, 3 Jan 2025 16:08:48 -0500 Subject: [PATCH] Add Carolina Wren --- birb.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/birb.js b/birb.js index 1328bc2..d513ff2 100644 --- a/birb.js +++ b/birb.js @@ -623,9 +623,20 @@ const species = { [WING]: "#444444", [WING_EDGE]: "#232323", }), + carolinaWren: new BirdType("Carolina Wren", + "Native to the eastern United States, these little birds are known for their curious and energetic nature.", { + [FOOT]: "#af8e75", + [FACE]: "#edc7a9", + [NOSE]: "#f7eee5", + [HOOD]: "#c58a5b", + [BELLY]: "#e1b796", + [UNDERBELLY]: "#c79e7c", + [WING]: "#c58a5b", + [WING_EDGE]: "#866348", + }), }; -const DEFAULT_BIRD = "americanRobin"; +const DEFAULT_BIRD = "carolinaWren"; const Directions = {