From 70e07ca3027100c75442f2b74764b8e2156de50f Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Fri, 3 Jan 2025 15:56:09 -0500 Subject: [PATCH] Add American Robin --- birb.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/birb.js b/birb.js index bc12db0..1328bc2 100644 --- a/birb.js +++ b/birb.js @@ -613,9 +613,19 @@ const species = { [WING]: "#2b2b2b", [WING_EDGE]: "#ebebeb", }), + americanRobin: new BirdType("American Robin", + "While not a true robin, this social North American bird is so named due to its orange colouring. It seems unbothered by nearby humans.", { + [BEAK]: "#e89f30", + [FOOT]: "#9f8075", + [FACE]: "#2d2d2d", + [BELLY]: "#eb7a3a", + [UNDERBELLY]: "#eb7a3a", + [WING]: "#444444", + [WING_EDGE]: "#232323", + }), }; -const DEFAULT_BIRD = "scarletRobin"; +const DEFAULT_BIRD = "americanRobin"; const Directions = {