From 8c65cdc3e16b2e4c79aeb67aa0dda1b67e644a35 Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Fri, 3 Jan 2025 14:33:48 -0500 Subject: [PATCH] Add Barn Swallow --- birb.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/birb.js b/birb.js index cc8afb1..789d797 100644 --- a/birb.js +++ b/birb.js @@ -583,9 +583,21 @@ const species = { [WING]: "#e8e079", [WING_EDGE]: "#191919", }), + barnSwallow: new BirdType("Barn Swallow", + "Agile birds that often roost in man-made structures, these birds are known to build nests near Ospreys for protection.", { + [BEAK]: "#000000", + [FOOT]: "#af8e75", + [EYE]: "#000000", + [FACE]: "#db7c4d", + [BELLY]: "#f7e1c9", + [UNDERBELLY]: "#ebc9a3", + [WING]: "#2252a9", + [WING_EDGE]: "#1c448b", + [HOOD]: "#2252a9", + }), }; -const DEFAULT_BIRD = "americanGoldfinch"; +const DEFAULT_BIRD = "barnSwallow"; const Directions = {