mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-24 19:59:36 +00:00
Slightly increase uncommon feather chance
This commit is contained in:
BIN
dist/extension.zip
vendored
BIN
dist/extension.zip
vendored
Binary file not shown.
64
dist/extension/birb.js
vendored
64
dist/extension/birb.js
vendored
@@ -536,24 +536,21 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -597,21 +594,24 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
@@ -2512,7 +2512,7 @@
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
64
dist/obsidian/main.js
vendored
64
dist/obsidian/main.js
vendored
@@ -541,24 +541,21 @@ module.exports = class PocketBird extends Plugin {
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -602,21 +599,24 @@ module.exports = class PocketBird extends Plugin {
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
@@ -2545,7 +2545,7 @@ module.exports = class PocketBird extends Plugin {
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
64
dist/userscript/birb.user.js
vendored
64
dist/userscript/birb.user.js
vendored
@@ -550,24 +550,21 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -611,21 +608,24 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
@@ -2507,7 +2507,7 @@
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
64
dist/web/birb.embed.js
vendored
64
dist/web/birb.embed.js
vendored
@@ -536,24 +536,21 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -597,21 +594,24 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
@@ -2487,7 +2487,7 @@
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
64
dist/web/birb.js
vendored
64
dist/web/birb.js
vendored
@@ -536,24 +536,21 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -597,21 +594,24 @@
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
@@ -2487,7 +2487,7 @@
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
@@ -110,7 +110,7 @@ const HOP_DELAY = 500;
|
||||
const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds
|
||||
const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds
|
||||
const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.1; // 10% of feathers are uncommon
|
||||
const UNCOMMON_FEATHER_CHANCE = 0.15; // 15% of feathers are uncommon
|
||||
const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes
|
||||
|
||||
// Feathers
|
||||
|
||||
@@ -308,24 +308,21 @@ export default {
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"colors": {
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
@@ -369,21 +366,24 @@ export default {
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
},
|
||||
"spangledCotinga": {
|
||||
"name": "Spangled Cotinga",
|
||||
"description": "This South American bird can be found in the Amazon rainforest, flashing its iridescent turquoise feathers high above in the canopy.",
|
||||
"latinName": "Cotinga cayana",
|
||||
"url": "https://en.wikipedia.org/wiki/Spangled_cotinga",
|
||||
"redWarbler": {
|
||||
"name": "Red Warbler",
|
||||
"description": "Endemic to the highlands of Mexico, this bird has the rare distinction of being one of the very few toxic birds in the world.",
|
||||
"latinName": "Cardellina rubra",
|
||||
"url": "https://en.wikipedia.org/wiki/Red_warbler",
|
||||
"colors": {
|
||||
"face": "#62eafe",
|
||||
"chin": "#a12457",
|
||||
"collar": "#a12457",
|
||||
"belly": "#62eafe",
|
||||
"underbelly": "#5cd8ea",
|
||||
"wing": "#227c89",
|
||||
"wing-edge": "#13353a",
|
||||
"foot": "#68696b",
|
||||
"collar-scruff": "#62eafe"
|
||||
"face": "#e80a28",
|
||||
"belly": "#d90921",
|
||||
"underbelly": "#c70c18",
|
||||
"wing": "#ba121d",
|
||||
"wing-edge": "#5b3535",
|
||||
"foot": "#5e4645",
|
||||
"behind-eye": "#deedff",
|
||||
"temple": "#e8f0fa",
|
||||
"corner-eye": "#d5e4f5",
|
||||
"lower-eyelid": "#e34a61",
|
||||
"beak": "#873535",
|
||||
"cheek": "#db1734"
|
||||
},
|
||||
"rarity": "uncommon"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user