Add more hats

This commit is contained in:
Idrees Hassan
2026-01-20 17:02:48 -05:00
parent d97e39449e
commit 867d214292
13 changed files with 134 additions and 26 deletions

View File

@@ -31,6 +31,7 @@ export const PALETTE = {
*/
export const SPRITE_SHEET_COLOR_MAP = {
"transparent": PALETTE.TRANSPARENT,
"#fff000": PALETTE.THEME_HIGHLIGHT,
"#ffffff": PALETTE.BORDER,
"#000000": PALETTE.OUTLINE,
"#010a19": PALETTE.BEAK,
@@ -107,6 +108,7 @@ export const SPECIES = {
[PALETTE.UNDERBELLY]: "#d7cfcb",
[PALETTE.WING]: "#b1b5c5",
[PALETTE.WING_EDGE]: "#9d9fa9",
[PALETTE.THEME_HIGHLIGHT]: "#b9abcf",
}, [TAG.TUFT]),
europeanRobin: new BirdType("European Robin",
"Native to western Europe, this is the quintessential robin. Quite friendly, you'll often find them searching for worms.", {

View File

@@ -11,6 +11,9 @@ export const HAT = {
COWBOY_HAT: "cowboy-hat",
BOWLER_HAT: "bowler-hat",
FEZ: "fez",
WIZARD_HAT: "wizard-hat",
BASEBALL_CAP: "baseball-cap",
FLOWER_HAT: "flower-hat"
};
export const HAT_METADATA = {
@@ -20,7 +23,7 @@ export const HAT_METADATA = {
},
[HAT.TOP_HAT]: {
name: "Top Hat",
description: "For that classy, sophisticated look."
description: "The mark of a true gentlebird."
},
[HAT.VIKING_HELMET]: {
name: "Viking Helmet",
@@ -38,6 +41,18 @@ export const HAT_METADATA = {
name: "Fez",
description: "It's a fez. Fezzes are cool."
},
[HAT.WIZARD_HAT]: {
name: "Wizard Hat",
description: "Grants the bearer terrifying mystical power, but luckily birds only use it to summon old ladies with bread crumbs."
},
[HAT.BASEBALL_CAP]: {
name: "Baseball Cap",
description: "Birds unfortunately only ever hit 'fowl' balls..."
},
[HAT.FLOWER_HAT]: {
name: "Flower Hat",
description: "To be fair, this is less of a hat and more of a dirt clod that your pet happened to pick up."
}
};
/**

View File

@@ -251,7 +251,8 @@
}
#birb-wardrobe .birb-grid-content {
grid-template-rows: repeat(2, auto);
grid-template-columns: repeat(3, auto);
grid-auto-flow: row;
}
.birb-grid-content {