diff --git a/dist/extension.zip b/dist/extension.zip index 61432ef..62c1477 100644 Binary files a/dist/extension.zip and b/dist/extension.zip differ diff --git a/dist/extension/birb.js b/dist/extension/birb.js index 1a2c221..0a0c0b5 100644 --- a/dist/extension/birb.js +++ b/dist/extension/birb.js @@ -677,6 +677,10 @@ [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } }; diff --git a/dist/obsidian/main.js b/dist/obsidian/main.js index 435b99f..bfc46a2 100644 --- a/dist/obsidian/main.js +++ b/dist/obsidian/main.js @@ -682,6 +682,10 @@ module.exports = class PocketBird extends Plugin { [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } }; diff --git a/dist/userscript/birb.user.js b/dist/userscript/birb.user.js index c8257be..e522804 100644 --- a/dist/userscript/birb.user.js +++ b/dist/userscript/birb.user.js @@ -691,6 +691,10 @@ [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } }; diff --git a/dist/web/birb.embed.js b/dist/web/birb.embed.js index ad62758..3f9d81a 100644 --- a/dist/web/birb.embed.js +++ b/dist/web/birb.embed.js @@ -677,6 +677,10 @@ [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } }; diff --git a/dist/web/birb.js b/dist/web/birb.js index ad62758..3f9d81a 100644 --- a/dist/web/birb.js +++ b/dist/web/birb.js @@ -677,6 +677,10 @@ [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } }; diff --git a/src/hats.js b/src/hats.js index 510b76e..ad2d43f 100644 --- a/src/hats.js +++ b/src/hats.js @@ -66,6 +66,10 @@ export const HAT_METADATA = { [HAT.STRAW_HAT]: { name: "Straw Hat", description: "A classic design, though keep away from water as this particular hat is seemingly unable to float." + }, + [HAT.CORDOVAN_HAT]: { + name: "Cordovan Hat", + description: "A traditional Spanish hat that can stay on even during a sword fight." } };