From 395449d53efd6642aefaa49b21ae17912ab41a9c Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Fri, 3 Jan 2025 14:17:20 -0500 Subject: [PATCH] Add American Goldfinch --- birb.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/birb.js b/birb.js index a468397..cc8afb1 100644 --- a/birb.js +++ b/birb.js @@ -570,9 +570,22 @@ const species = { [WING]: "#d23215", [WING_EDGE]: "#b1321c", }, ["tuft"]), + americanGoldfinch: new BirdType("American Goldfinch", + "Coloured a brilliant yellow, this bird feeds almost entirely on the seeds of plants such as thistle, sunflowers, and coneflowers.", { + [BEAK]: "#ffaf34", + [FOOT]: "#af8e75", + [EYE]: "#000000", + [FACE]: "#fff255", + [NOSE]: "#383838", + [HOOD]: "#383838", + [BELLY]: "#fff255", + [UNDERBELLY]: "#f5ea63", + [WING]: "#e8e079", + [WING_EDGE]: "#191919", + }), }; -const DEFAULT_BIRD = "redCardinal"; +const DEFAULT_BIRD = "americanGoldfinch"; const Directions = {