Add American Goldfinch

This commit is contained in:
Idrees Hassan
2025-01-03 14:17:20 -05:00
parent e20fdab552
commit 395449d53e

15
birb.js
View File

@@ -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 = {