Greasy Fork is available in English.

Dragon Training Magic

Help you to raise your dragon well

Ce script ne devrait pas être installé directement. C'est une librairie créée pour d'autres scripts. Elle doit être inclus avec la commande // @require https://update.greasyfork.org/scripts/446851/1063702/Dragon%20Training%20Magic.js

// ==UserScript==
// @name         Dragon Training Magic
// @name:zh-CN   驯龙魔法
// @namespace    3BBBC94E5807338FF2A3A63A253333D049DECC00
// @version      0.2.2
// @description  Help you to raise your dragon well
// @author       syd
// @license      2022 up to now, syd All Rights Reserved
// @match        https://dragcave.net/*
// @grant        none
// ==/UserScript==

class DragonTrainingMagic {
  WIKI = "https://dragcave.fandom.com";
  COLOR = {
    Expect: "#8df103", // 寻觅中 青柠色(亮绿色)
    Normal: "#f4f4f4", // 常见种 白色
    NotNormal: "#00c4f9", // 不常见种 蓝色
    Rare: "#bf92e3", // 稀有种 紫色
    SuperRare: "#cdcd01", // 超稀有种 金色
    Other: "#8787e6", // 非龙生物 紫色
    Holiday: "#e20141", // 活动独占 红色
  };
  RARITY_NAME = {
    Unknown: "未知稀有度",
    Normal: "常见种",
    NotNormal: "不常见种",
    Rare: "稀有种",
    SuperRare: "超稀有种",
    Other: "非龙生物",
    Holiday: "活动独占",
  };
  HABITAT_NAME = {
    Holiday: "节日",
    Coast: "海岸",
    Desert: "沙漠",
    Forest: "森林",
    Jungle: "丛林",
    Alpine: "高山",
    Volcano: "火山",
  };
  constructor() {
    this.DB = [
      {
        breed: ["Aeon Wyvern", "永恒龙"],
        egg: [
          "It’s almost like time is distorted around this egg.",
          "时间在这颗蛋周围似乎被扭曲了。",
        ],
        rarity: "NotNormal",
        habitats: ["Alpine", "Forest"],
        bsa: "Precognition",
        elemental: ["Time"],
        morphology: "Dragon (Wyvern)",
        release_at: "August 21, 2016",
        wiki: ["/wiki/Aeon_Wyvern", "/zh/wiki/%E6%B0%B8%E6%81%86%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Aeon_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d4/Aeon_egg.gif/revision/latest?cb=20160822010152",
          ],
        },
        price: "1,700 - 2,000 shards",
        encyclopedia_id: 1587,
      },
      {
        breed: ["Aeria Gloris Dragon", "至高荣誉龙"],
        egg: [
          "This crystalline egg almost looks like you could reach into its depths.",
          "这颗结晶化的蛋似是能让你看透其内侧。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Magi", "Lightning"],
        morphology: "Dragon (Amphiptere)",
        release_at: "May 21, 2019",
        wiki: [
          "/wiki/Aeria_Gloris_Dragon",
          "/zh/wiki/%E8%87%B3%E9%AB%98%E6%A6%AE%E8%AD%BD%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Aeria_Gloris_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a4/Aeria_Gloris_egg.gif/revision/latest?cb=20190521040528",
          ],
        },
        price: "200 - 400 shards",
        encyclopedia_id: 1652,
      },
      {
        breed: ["Aether Wyvern", "埃忒耳龙"],
        egg: ["Wind gusts around this egg.", "风在蛋的四周呼啸。"],
        rarity: "NotNormal",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Wyvern)",
        release_at: "September 30, 2018",
        wiki: [
          "/wiki/Aether_Wyvern",
          "/zh/wiki/%E5%9F%83%E5%BF%92%E8%80%B3%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Aether_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/43/Aether_egg.png/revision/latest?cb=20181001083843",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 176,
      },
      {
        breed: ["Albino Dragon", "白化龙"],
        egg: [
          "You can see the baby dragon curled up inside this translucent egg.",
          "你能看到龙宝宝蜷缩在这个半透明的蛋里。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Alpine"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "July 15, 2009",
        wiki: ["/wiki/Albino_Dragon", "/zh/wiki/%E7%99%BD%E5%8C%96%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Albino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/73/Albino_egg.gif/revision/latest?cb=20100326224342",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 3,
      },
      {
        breed: ["Alcedine Wyvern", ""],
        egg: ["The brilliant blue spots on this egg stand out.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Alcedine_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Alcedine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/eb/Alcedine_egg.png/revision/latest?cb=20200521040355",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1676,
      },
      {
        breed: ["Almerald Dragon", "祖姆绿龙"],
        egg: [
          "This glossy green egg is rather warm.",
          "这颗光滑的绿蛋挺温暖的。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Forest"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Eastern)",
        release_at: "August 21, 2016",
        wiki: [
          "/wiki/Almerald_Dragon",
          "/zh/wiki/%E7%A5%96%E5%A7%86%E7%B6%A0%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Almerald_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/63/Almerald_egg.gif/revision/latest?cb=20160822010152",
          ],
        },
        price: "300 - 400 shards",
        encyclopedia_id: 1594,
      },
      {
        breed: ["Amalthean Dragon", ""],
        egg: ["This pristine egg sits in a clear pool of water.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Life", "Water"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Amalthean_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Amalthean_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/50/Amalthean_egg.gif/revision/latest?cb=20200521040355",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1677,
      },
      {
        breed: ["Anagallis Dragon", "海绿龙"],
        egg: [
          "This delicately patterned egg is sitting in the sunshine.",
          "这颗图案精致的蛋躺在阳光下。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "April 26, 2015",
        wiki: ["/wiki/Anagallis_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Anagallis_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/8/8c/Anagallis_egg.png/revision/latest?cb=20150427002538",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 4,
      },
      {
        breed: ["Antarean Dragon", "安塔林龙"],
        egg: [
          "This egg is surrounded by mysterious, reflective dust.",
          "这颗蛋被神秘的反光尘埃环绕著。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Light", "Fire"],
        morphology: "Dragon (Western)",
        release_at: "March 19, 2016",
        wiki: [
          "/wiki/Antarean_Dragon",
          "/zh/wiki/%E5%AE%89%E5%A1%94%E6%9E%97%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Antarean_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b5/Antarean_egg.gif/revision/latest?cb=20160320050143",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 175,
      },
      {
        breed: ["Aqualis Dragon", "水利司龙"],
        egg: [
          "This drab egg rests far from the water’s edge.",
          "这颗蓝灰色的蛋离水边有一段距离。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Eastern)",
        release_at: "March 10, 2019",
        wiki: [
          "/wiki/Aqualis_Dragon",
          "/zh/wiki/%E6%B0%B4%E5%88%A9%E5%8F%B8%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Aqualis_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a9/Aqualis_egg.gif/revision/latest?cb=20190310101609",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1643,
      },
      {
        breed: ["Aranoa Dragon", "艾拉诺亚龙"],
        egg: [
          "The vibrant scales on this egg glisten in the sunlight.",
          "这颗蛋的鳞片在阳光下闪闪发光。",
        ],
        rarity: "Unknown",
        habitats: ["Coast", "Jungle"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Wingless)",
        release_at: "December 1, 2019",
        wiki: [
          "/wiki/Aranoa_Dragon",
          "/zh/wiki/%E8%89%BE%E6%8B%89%E8%AB%BE%E4%BA%9E%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Aranoa_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b3/Aranoa_egg.png/revision/latest?cb=20191201140542",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1662,
      },
      {
        breed: ["Aria Dragon", "咏叹龙"],
        egg: [
          "This bright egg has a warm shell.",
          "这颗明亮的蛋有著温暖的壳。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2016",
        wiki: ["/wiki/Aria_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Aria_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/a/a3/Aria_egg.png/revision/latest?cb=20160521041840",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1586,
      },
      {
        breed: ["Astralophyne Dragon", ""],
        egg: [
          "This pleasant egg was placed in the path of a refreshing breeze.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "Adventure",
        elemental: ["Life", "Light"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Astralophyne_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Astralophyne_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/7a/Astralophyne_egg.png/revision/latest?cb=20220521040308",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1715,
      },
      {
        breed: ["Ash Dragon", "阴灰龙"],
        egg: [
          "This ashen egg is smooth to the touch.",
          "这颗阴灰的蛋触感光滑。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Volcano"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Wingless)",
        release_at: "August 26, 2018",
        wiki: ["/wiki/Ash_Dragon", "/zh/wiki/%E9%99%B0%E7%81%B0%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Ash_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/bc/Ash_egg.png/revision/latest?cb=20180827045901",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 177,
      },
      {
        breed: ["Astaarus Dragon", ""],
        egg: ["This egg reminds you of the night sky.", ""],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Light", "Fire"],
        morphology: "Dragon (Western)",
        release_at: "August 23, 2020",
        wiki: ["/wiki/Astaarus_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Astaarus_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/26/Astaarus_egg.png/revision/latest?cb=20200823040223",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1666,
      },
      {
        breed: ["Avatar of Change", "变化的化身"],
        egg: [
          "This iridescent egg radiates mysterious energy.",
          "这颗有著闪亮虹彩的蛋散发出神秘的能量。",
        ],
        rarity: "Rare",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2014",
        wiki: [
          "/wiki/Avatar_of_Change",
          "/zh/wiki/%E8%AE%8A%E5%8C%96%E7%9A%84%E5%8C%96%E8%BA%AB",
        ],
        sprites: {
          egg: [
            "",
            "Avatar_of_Change_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/be/Avatar_of_Change_egg.gif/revision/latest?cb=20140521053209",
          ],
        },
        price: "N/A",
        encyclopedia_id: 137,
      },
      {
        breed: ["Avatar of Creation", "创造的化身"],
        egg: [
          "This shimmering egg radiates primordial energy.",
          "这颗闪烁微光的蛋散发出原始的能量。",
        ],
        rarity: "Rare",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2014",
        wiki: [
          "/wiki/Avatar_of_Creation",
          "/zh/wiki/%E5%89%B5%E9%80%A0%E7%9A%84%E5%8C%96%E8%BA%AB",
        ],
        sprites: {
          egg: [
            "",
            "Avatar_of_Creation_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/f/f4/Avatar_of_Creation_egg.png/revision/latest?cb=20140521053131",
          ],
        },
        price: "N/A",
        encyclopedia_id: 138,
      },
      {
        breed: ["Avatar of Destruction", "毁灭的化身"],
        egg: [
          "This smoldering egg radiates volatile energy.",
          "这颗焖烧的蛋散释放着不稳定的能量。",
        ],
        rarity: "Rare",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2014",
        wiki: [
          "/wiki/Avatar_of_Destruction",
          "/zh/wiki/%E6%AF%80%E6%BB%85%E7%9A%84%E5%8C%96%E8%BA%AB",
        ],
        sprites: {
          egg: [
            "",
            "Avatar_of_Destruction_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f9/Avatar_of_Destruction_egg.gif/revision/latest?cb=20140521053229",
          ],
        },
        price: "N/A",
        encyclopedia_id: 136,
      },
      {
        breed: ["Azure Glacewing Dragon", "苍冰翅龙"],
        egg: [
          "This large egg has a lustrous sheen and appears to be covered in scales.",
          "这是颗散发著光泽且布满麟片的大蛋。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "November 26, 2016",
        wiki: [
          "/wiki/Azure_Glacewing_Dragon",
          "/zh/wiki/%E8%92%BC%E5%86%B0%E7%BF%85%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Azure_Glacewing_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/6f/Azure_Glacewing_egg.gif/revision/latest?cb=20161127013747",
          ],
        },
        price: "400 shards",
        encyclopedia_id: 1595,
      },
      {
        breed: ["Balloon Dragon", "气球龙"],
        egg: [
          "This light egg is floating in the air.",
          "这颗轻飘飘的蛋浮在空中。",
        ],
        rarity: "Unknown",
        habitats: ["Coast", "Forest", "Jungle", "Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Balloon_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Balloon_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/cb/Balloon_egg.gif/revision/latest?cb=20100326224654",
          ],
        },
        price: "300 - 400 shards",
        encyclopedia_id: 5,
      },
      {
        breed: ["Black Dragon", "黑龙"],
        egg: [
          "This egg has a faint green glow around it.",
          "这颗蛋周围有淡淡的绿色光晕。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2006 (Original breed)",
        wiki: ["/wiki/Black_Dragon", "/zh/wiki/%E9%BB%91%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Black_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/09/Black_egg.gif/revision/latest?cb=20100326223523",
          ],
        },
        price: "300 shards",
        encyclopedia_id: 6,
      },
      {
        breed: ["Black Capped Teimarr Dragon", "黑帽泰马尔龙"],
        egg: ["This egg has a black cap.", "这颗蛋有一个黑尖儿。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Western)",
        release_at: "May 22, 2013",
        wiki: ["/wiki/Black_Capped_Teimarr", ""],
        sprites: {
          egg: [
            "",
            "Black_Capped_Teimarr_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/a/ad/Black_Capped_Teimarr_egg.png/revision/latest?cb=20130522043007",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 110,
      },
      {
        breed: ["Black Tea Dragon", "红茶龙"],
        egg: [
          "This egg has a faintly exotic scent.",
          "这颗蛋有种淡淡的异国情调的香味儿。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "May 24, 2013",
        wiki: ["/wiki/Black_Tea_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Black_Tea_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/34/Black_Tea_egg.png/revision/latest?cb=20130524040513",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 7,
      },
      {
        breed: ["Black Truffle Dragon", "黑松露龙"],
        egg: [
          "This egg has a pleasant, musky smell.",
          "这蛋带有一股令人愉悦的麝香味。",
        ],
        rarity: "Unknown",
        habitats: ["All Habitats"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "July 1, 2018",
        wiki: [
          "/wiki/Black_Truffle_Dragon",
          "/zh/wiki/%E9%BB%91%E6%9D%BE%E9%9C%B2%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Black_Truffle_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/3e/Black_Truffle_egg.png/revision/latest?cb=20180702062340",
          ],
        },
        price: "600 - 900 shards",
        encyclopedia_id: 179,
      },
      {
        breed: ["Blacktip Dragon", "黑鳍龙"],
        egg: [
          "This egg is off-white in color and smells a bit like salt.",
          "这颗蛋是灰白色的,闻起来有些像盐。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "May 27, 2013",
        wiki: ["/wiki/Blacktip_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Blacktip_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d6/Blacktip_egg.gif/revision/latest?cb=20130527050847",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 8,
      },
      {
        breed: ["Blazeback Dragon", ""],
        egg: [
          "This egg has a dull metallic luster and is hot to the touch.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "March 28, 2021",
        wiki: ["/wiki/Blazeback_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Blazeback_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/08/Blazeback_egg.gif/revision/latest?cb=20210328041752",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1693,
      },
      {
        breed: ["Bleeding Moon Dragon", "血月龙"],
        egg: [
          "This egg shines brilliantly in moonlight, and is covered in red spots.",
          "这颗被红斑覆盖的蛋在月光下闪耀。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "July 7, 2013",
        wiki: [
          "/wiki/Bleeding_Moon_Dragon",
          "/zh/wiki/%E8%A1%80%E6%9C%88%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Bleeding_Moon_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/23/Bleeding_Moon_egg.gif/revision/latest?cb=20130707042236",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 9,
      },
      {
        breed: ["Blue-Banded Dragon", "蓝纹龙"],
        egg: [
          "This egg is covered in thick blue stripes.",
          "这颗蛋上有密集的蓝色条纹。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Western)",
        release_at: "July 5, 2014",
        wiki: ["/wiki/Blue-Banded_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Blue-Banded_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/80/Blue-Banded_egg.gif/revision/latest?cb=20140705170852",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 11,
      },
      {
        breed: ["Blusang Lindwyrm", "蓝桑鳞龙"],
        egg: [
          "This egg smells faintly like brine.",
          "这颗蛋闻起来有点儿像海水。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "August 15, 2012",
        wiki: ["/wiki/Blusang_Lindwyrm", ""],
        sprites: {
          egg: [
            "",
            "Blusang_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/5/52/Blusang_egg.png/revision/latest?cb=20120815075436",
          ],
        },
        price: "1,100 - 1,300 shards",
        encyclopedia_id: 13,
      },
      {
        breed: ["Bolt Dragon", "闪电龙"],
        egg: ["This egg has a striking pattern.", "这蛋有著引人注目的花纹。"],
        rarity: "Unknown",
        habitats: ["Alpine", "Forest"],
        bsa: "Stun",
        elemental: ["Lightning"],
        morphology: "Dragon (Eastern)",
        release_at: "July 10, 2016",
        wiki: ["/wiki/Bolt_Dragon", "/zh/wiki/%E9%96%83%E9%9B%BB%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Bolt_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/2c/Bolt_egg.gif/revision/latest?cb=20160710113251",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1588,
      },
      {
        breed: ["Boreal Dragon", "北方极龙"],
        egg: [
          "This egg is covered in pale blue spots.",
          "这颗蛋满布亮蓝色的斑点。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "August 26, 2018",
        wiki: [
          "/wiki/Boreal_Dragon",
          "/zh/wiki/%E5%8C%97%E6%96%B9%E6%A5%B5%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Boreal_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b2/Boreal_egg.gif/revision/latest?cb=20180827050153",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 180,
      },
      {
        breed: ["Bright-Breasted Wyvern", "鲜胸纹翼龙"],
        egg: ["This egg is covered in speckles.", "这颗蛋覆盖在斑点下。"],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wyvern)",
        release_at: "April 1, 2010",
        wiki: ["/wiki/Bright-Breasted_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Bright-Breasted_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/97/Bright-Breasted_egg.gif/revision/latest?cb=20100401041622",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 14,
      },
      {
        breed: ["Brimstone Dragon", "硫磺龙"],
        egg: ["This egg smells rather rancid.", "这颗蛋闻起来颇为腐臭。"],
        rarity: "Unknown",
        habitats: ["Desert", "Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "August 15, 2012",
        wiki: [
          "/wiki/Brimstone_Dragon",
          "/zh/wiki/%E7%A1%AB%E7%A3%BA%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Brimstone_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/7e/Brimstone_egg.png/revision/latest?cb=20120815075555",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 15,
      },
      {
        breed: ["Brute Dragon", "狂龙"],
        egg: ["This egg is unusually large and heavy.", "这颗蛋又大又重。"],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Western)",
        release_at: "March 2, 2014",
        wiki: ["/wiki/Brute_Dragon", "/zh/wiki/%E7%8B%82%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Brute_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b2/Brute_egg.png/revision/latest?cb=20140302125336",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 16,
      },
      {
        breed: ["Candelabra Dragon", "枝状烛台龙"],
        egg: [
          "This mottled red egg almost glows from within.",
          "这颗斑驳的红蛋似乎自内而外散发著光。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle", "Coast"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2016",
        wiki: [
          "/wiki/Candelabra_Dragon",
          "/zh/wiki/%E6%9E%9D%E7%8B%80%E7%87%AD%E8%87%BA%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Candelabra_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/75/Candelabra_egg.gif/revision/latest?cb=20160521092957",
          ],
        },
        price: "300 shards",
        encyclopedia_id: 174,
      },
      {
        breed: ["Canopy Dragon", "林冠龙"],
        egg: ["This egg is hidden by some leaves.", "这颗蛋隐藏在叶子里。"],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "January 15, 2010",
        wiki: ["/wiki/Canopy_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Canopy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/29/Canopy_egg.gif/revision/latest?cb=20100326231533",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 17,
      },
      {
        breed: ["Cantormaris Dragon", ""],
        egg: ["Something about this egg seems to lure you in.", ""],
        rarity: "Unknown",
        habitats: ["Coast", "Volcano", "Jungle"],
        bsa: "",
        elemental: ["Water", "Magi"],
        morphology: "Dragon (Wyvern)",
        release_at: "January 24, 2021May 21, 2021 (Motus and Tutela)",
        wiki: ["/wiki/Cantormaris_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Cantormaris_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d2/Cantormaris_egg.gif/revision/latest?cb=20210124051516",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1673,
      },
      {
        breed: ["Carina Dragon", "船底座龙"],
        egg: [
          "This egg shimmers with dazzling constellations.",
          "这蛋闪著耀眼的星座图案。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "August 28, 2017",
        wiki: [
          "/wiki/Carina_Dragon",
          "/zh/wiki/%E8%88%B9%E5%BA%95%E5%BA%A7%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Carina_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/46/Carina_egg.gif/revision/latest?cb=20170828210236",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1618,
      },
      {
        breed: ["Carmine Wyvern", "胭脂红翼龙"],
        egg: [
          "This pink and red egg wobbles occasionally.",
          "这颗粉红相间的蛋时不时会摇晃。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wyvern)",
        release_at: "July 5, 2014",
        wiki: ["/wiki/Carmine_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Carmine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/0b/Carmine_egg.png/revision/latest?cb=20140705171239",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 18,
      },
      {
        breed: ["Cassare Dragon", "撤魔龙"],
        egg: [
          "This egg makes you feel a bit uneasy.",
          "这颗蛋让你感到有些不安。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "July 5, 2014",
        wiki: ["/wiki/Cassare_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Cassare_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/ce/Cassare_egg.gif/revision/latest?cb=20140705171227",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 141,
      },
      {
        breed: ["Celestial Dragon", "天龙"],
        egg: [
          "This translucent egg shines like starlight.",
          "这颗通透的蛋散发出如星辰的光芒。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "Corporealize",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "April 1, 2016",
        wiki: ["/wiki/Celestial_Dragon", "/zh/wiki/%E5%A4%A9%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Celestial_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/d8/Celestial_egg.png/revision/latest?cb=20160401042937",
          ],
        },
        price: "300 - 400 shards",
        encyclopedia_id: 973,
      },
      {
        breed: ["Cloudplume Dragon", ""],
        egg: ["This soft egg was carefully nestled in feathers and snow.", ""],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Eastern)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Cloudplume_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Cloudplume_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/77/Cloudplume_egg.gif/revision/latest?cb=20200521040354",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1678,
      },
      {
        breed: ["Coastal Waverunner", "海岸浪奔龙"],
        egg: ["This egg reminds you of the sea.", "这颗蛋令你想起海洋。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Wyvern)",
        release_at: "July 4, 2010",
        wiki: ["/wiki/Coastal_Waverunner", ""],
        sprites: {
          egg: [
            "",
            "Coastal_Waverunner_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c4/Coastal_Waverunner_egg.gif/revision/latest?cb=20100704152019",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 28,
      },
      {
        breed: ["Copper Dragon", "铜龙"],
        egg: [
          "This egg gleams with a reddish shine.",
          "这颗蛋闪耀著淡红的光芒。",
        ],
        rarity: "Unknown",
        habitats: [
          "Liver of Sulfur: Desert",
          "VolcanoRainbow: Alpine",
          "ForestVerdigris: Coast",
          "JunglePennybright: None (bred only)",
        ],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 26, 2013May 21, 2021 (Pennybright variant)",
        wiki: ["/wiki/Copper_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Copper_liver_of_sulfur_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/33/Copper_liver_of_sulfur_egg.png/revision/latest?cb=20130526045552",
          ],
        },
        price: "1,300 - 1,600 shards",
        encyclopedia_id: 29,
      },
      {
        breed: ["Crystalline Dragon", "结晶龙"],
        egg: [
          "This icy egg sparkles with frost.",
          "这颗结冰的蛋因霜而闪闪发光。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "March 22, 2020",
        wiki: [
          "/wiki/Crystalline_Dragon",
          "/zh/wiki/%E7%B5%90%E6%99%B6%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Crystalline_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d9/Crystalline_egg.gif/revision/latest?cb=20200322040309",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1660,
      },
      {
        breed: ["Dark Green Dragon", "深绿龙"],
        egg: [
          "This egg is sitting in a patch of grass and small flowers even though there’s no sun in the cave.",
          "这颗蛋位于一片草与小花中,尽管洞穴里没有阳光。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Dark", "Life"],
        morphology: "Dragon (Wingless)",
        release_at: "June, 2006",
        wiki: ["/wiki/Dark_Green_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Dark_Green_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/dd/Dark_Green_egg.gif/revision/latest?cb=20100326225900",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 30,
      },
      {
        breed: ["Dark Lumina Dragon", "黑暗绚光龙"],
        egg: [
          "This egg shines coldly in the moonlight.",
          "这颗蛋在月光下冷冷地发著光。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "August 21, 2016",
        wiki: [
          "/wiki/Dark_Lumina_Dragon",
          "/zh/wiki/%E9%BB%91%E6%9A%97%E7%B5%A2%E5%85%89%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Dark_Lumina_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/ee/Dark_Lumina_egg.gif/revision/latest?cb=20160821180014",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1601,
      },
      {
        breed: ["Daydream Dragon", "空想龙"],
        egg: ["This egg is sitting on a cloud.", "这颗蛋坐在云彩上。"],
        rarity: "Unknown",
        habitats: ["Coast", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Daydream_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Daydream_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/af/Daydream_egg.gif/revision/latest?cb=20100326230213",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 31,
      },
      {
        breed: ["Shallow Water Dragon", "浅水龙"],
        egg: [
          "This egg appears to be covered in scales.",
          "这颗蛋似乎覆着鳞。",
        ],
        rarity: "Unknown",
        habitats: ["Coast", "Unknown (Hybrid)"],
        bsa: "Splash",
        elemental: ["Water"],
        morphology: "Dragon (Sea serpent)",
        release_at: "May 26, 2010",
        wiki: ["/wiki/Deep_Sea_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Deep_Sea_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1c/Deep_Sea_egg.gif/revision/latest?cb=20100326230434",
          ],
        },
        price: "N/A",
        encyclopedia_id: 46,
      },
      {
        breed: ["Diamondwing Dragon", "钻翼龙"],
        egg: ["This egg shines like a diamond.", "这蛋如钻石般闪亮。"],
        rarity: "Unknown",
        habitats: ["Alpine", "Volcano"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "September 25, 2016",
        wiki: [
          "/wiki/Diamondwing_Dragon",
          "/zh/wiki/%E9%91%BD%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Diamondwing_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/20/Diamondwing_egg.gif/revision/latest?cb=20160925094229",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 173,
      },
      {
        breed: ["Dorsal Dragon", "脊背龙"],
        egg: [
          "This egg has multiple bands of color on it.",
          "这颗蛋上有多重颜色排列。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wingless)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Dorsal_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Purple_Dorsal_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/22/Purple_Dorsal_egg.gif/revision/latest?cb=20100327185304",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 34,
      },
      {
        breed: ["Electric Dragon", ""],
        egg: [
          "Bright sparks glide across the surface of this egg’s shell.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Lightning"],
        morphology: "Dragon (Western)",
        release_at: "January 15, 2010",
        wiki: ["/wiki/Electric_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Electric_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/9/9e/Electric_egg.png/revision/latest?cb=20210508060837",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 36,
      },
      {
        breed: ["Elux Lucis Dragon", ""],
        egg: ["Starlight shimmers across this egg’s iridescent shell.", ""],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Light", "Air"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "July 26, 2020",
        wiki: ["/wiki/Elux_Lucis_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Elux_Lucis_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/1/19/Elux_Lucis_egg.png/revision/latest?cb=20200726040101",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1671,
      },
      {
        breed: ["Ember Dragon", "馀焰龙"],
        egg: ["This egg is really hot.", "这颗蛋真的很烫。"],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "October 10, 2010",
        wiki: ["/wiki/Ember_Dragon", "/zh/wiki/%E9%A4%98%E7%87%84%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Ember_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/8c/Ember_egg.gif/revision/latest?cb=20101010122918",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 37,
      },
      {
        breed: ["Equinox Dragon", ""],
        egg: ["This egg shakes slightly when taken out of the light.", ""],
        rarity: "Unknown",
        habitats: [
          "Forest (Autumn)",
          "Volcano (Winter)",
          "Jungle (Spring)",
          "Alpine (Summer)",
        ],
        bsa: "",
        elemental: ["Light", "Time"],
        morphology: "Dragon (Western)",
        release_at: "September 22, 2020",
        wiki: ["/wiki/Equinox_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Equinox_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/48/Equinox_egg.png/revision/latest?cb=20200922050527",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1674,
      },
      {
        breed: ["Fanalea Dragon", ""],
        egg: ["This egg has delicate markings that curl around its shell.", ""],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "Adventure",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Fanalea_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Fanalea_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/54/Fanalea_egg.gif/revision/latest?cb=20220521040732",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1721,
      },
      {
        breed: ["Falconiform Wyvern", "隼形翼龙"],
        egg: [
          "Cold flames dance across the surface of this egg.",
          "冰冷的火焰跳跃在这颗蛋的表面上。",
        ],
        rarity: "Normal",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 3, 2014",
        wiki: [
          "/wiki/Falconiform_Wyvern",
          "/zh/wiki/%E9%9A%BC%E5%BD%A2%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Falconiform_Wyvern_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/1/19/Falconiform_Wyvern_egg.png/revision/latest?cb=20140503170353",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 38,
      },
      {
        breed: ["Fell Dragon", "猛龙"],
        egg: [
          "This mottled egg looks positively ancient.",
          "这颗斑驳的蛋看起来相当古老。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Wingless)",
        release_at: "November 26, 2016",
        wiki: ["/wiki/Fell_Dragon", "/zh/wiki/%E7%8C%9B%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Fell_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/e9/Fell_egg.png/revision/latest?cb=20161127013746",
          ],
        },
        price: "500 shards",
        encyclopedia_id: 1596,
      },
      {
        breed: ["Fever Wyvern", "热病翼龙"],
        egg: [
          "This egg is patterned with an orange flare.",
          "这颗蛋上有橘色的火焰纹样。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Wyvern)",
        release_at: "March 2, 2014",
        wiki: ["/wiki/Fever_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Fever_Wyvern_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/9/93/Fever_Wyvern_egg.png/revision/latest?cb=20140302064611",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 39,
      },
      {
        breed: ["Fire Gem Dragon", "火晶龙"],
        egg: [
          "This rough egg has shimmering veins of crystal running across its surface.",
          "这粗糙蛋的表面爬满发著光的水晶脉。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "March 19, 2017",
        wiki: ["/wiki/Fire_Gem_Dragon", "/zh/wiki/%E7%81%AB%E6%99%B6%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Fire_Gem_blue_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/9/91/Fire_Gem_blue_egg.png/revision/latest?cb=20170319130600",
          ],
        },
        price: "800 - 1,000 shards",
        encyclopedia_id: 1606,
      },
      {
        breed: ["Pink Dragon", "粉龙"],
        egg: ["It’s bright. And pink.", "它是明亮的。而且是粉色的。"],
        rarity: "Unknown",
        habitats: ["Coast", "Jungle", "All habitats"],
        bsa: "Influence",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Flamingo_Wyvern", "/zh/wiki/%E7%B2%89%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Flamingo_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fe/Flamingo_egg.gif/revision/latest?cb=20100828164905",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 79,
      },
      {
        breed: ["Floret Wyvern (Iris)", "小花双足翼龙"],
        egg: [
          "This shiny egg smells faintly like flowers.",
          "这颗明亮的蛋带有些许花香。",
        ],
        rarity: "Unknown",
        habitats: [
          "Jungle",
          "Alpine (gold)",
          "Forest (purple)",
          "bred only (pink)",
        ],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Wyvern)",
        release_at: "March 25, 2018",
        wiki: [
          "/wiki/Floret_Wyvern_(Iris)",
          "/zh/wiki/%E5%B0%8F%E8%8A%B1%E9%9B%99%E8%B6%B3%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Floret_Iris_gold_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/26/Floret_Iris_gold_egg.gif/revision/latest?cb=20180325214241",
          ],
        },
        price: "500 - 700 shards",
        encyclopedia_id: 1619,
      },
      {
        breed: ["Floret Wyvern (Alstroemeria)", ""],
        egg: ["This shiny egg smells faintly like flowers.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Floret_Wyvern_(Alstroemeria)", ""],
        sprites: {
          egg: [
            "",
            "Floret_Alstro_gold_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/e5/Floret_Alstro_gold_egg.gif/revision/latest?cb=20210521042324",
          ],
        },
      },
      {
        breed: ["Freckled Dragon", "雀斑龙"],
        egg: [
          "This egg is yellow with orange speckling.",
          "这是颗带有橘斑的黄蛋。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "March 25, 2018",
        wiki: ["/wiki/Freckled_Dragon", "/zh/wiki/%E9%9B%80%E6%96%91%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Freckled_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/7c/Freckled_egg.png/revision/latest?cb=20180328001706",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1620,
      },
      {
        breed: ["Skywing Dragon", "赭黄德雷克"],
        egg: ["This egg has strange markings on it.", "这颗蛋上有奇怪的花纹。"],
        rarity: "Unknown",
        habitats: ["Jungle", "Jungle", "Forest", "Coast"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Amphiptere)",
        release_at: "July 12, 2008",
        wiki: ["/wiki/Frilled_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Frilled_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/24/Frilled_egg.png/revision/latest?cb=20160521112351",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 97,
      },
      {
        breed: ["Frostbite Dragon", "霜噬龙"],
        egg: [
          "Frost is creeping over this cold egg.",
          "这颗寒冷的蛋上爬满冰霜。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "May 3, 2014",
        wiki: [
          "/wiki/Frostbite_Dragon",
          "/zh/wiki/%E9%9C%9C%E5%99%AC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Frostbite_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/41/Frostbite_egg.png/revision/latest?cb=20140503170238",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 140,
      },
      {
        breed: ["Galvanic Wyvern", "双足流导翼龙"],
        egg: [
          "Powerful energy emanates from this egg.",
          "强烈的能量自这颗蛋发散而出。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Dark", "Lightning"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 21, 2019",
        wiki: [
          "/wiki/Galvanic_Wyvern",
          "/zh/wiki/%E9%9B%99%E8%B6%B3%E6%B5%81%E5%B0%8E%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Galvanic_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/db/Galvanic_egg.gif/revision/latest?cb=20190521040542",
          ],
        },
        price: "200 - 500 shards",
        encyclopedia_id: 1654,
      },
      {
        breed: ["Gemshard Dragon", "碎宝石龙"],
        egg: [
          "This egg is encrusted with colorful gemstones.",
          "这颗蛋镶有色彩缤纷的宝石。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Eastern)",
        release_at: "March 28, 2015May 21, 2021 (Amethyst, Aqua, Citrine)",
        wiki: ["/wiki/Gemshard_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Gemshard_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/41/Gemshard_egg.png/revision/latest?cb=20150329015520",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 972,
      },
      {
        breed: ["Stone Dragon", "石龙"],
        egg: [
          "This egg is heavy and rough, as if it were made out of rock.",
          "这颗蛋重且粗糙,仿佛由岩石构成。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)", "Desert", "Alpine", "Volcano"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "October 5, 2007",
        wiki: ["/wiki/Geode_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Geode_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/83/Geode_egg.gif/revision/latest?cb=20101122013655",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 101,
      },
      {
        breed: ["Tinsel Dragon", "饰龙"],
        egg: [
          "This egg is very reflective, almost metallic looking",
          "这颗蛋有著近似金属的高反光外壳。",
        ],
        rarity: "Unknown",
        habitats: [
          "All habitats",
          "Unknown (Prize dragon)",
          "Unknown (Prize dragon)",
        ],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "February 13, 2011",
        wiki: ["/wiki/Gold_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Gold_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/ab/Gold_egg.gif/revision/latest?cb=20120101081139",
          ],
        },
        price: "N/A",
        encyclopedia_id: 80,
      },
      {
        breed: ["Gold-horned Tangar", "金角坦加尔龙"],
        egg: [
          "This egg has bright orange and green markings.",
          "这颗蛋有明亮橙色与绿色花纹。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "September 17, 2011",
        wiki: ["/wiki/Gold-Horned_Tangar", ""],
        sprites: {
          egg: [
            "",
            "Gold-horned_Tangar_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/91/Gold-horned_Tangar_egg.gif/revision/latest?cb=20110917090713",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 109,
      },
      {
        breed: ["Golden Wyvern", "黄金翼龙"],
        egg: ["This egg shimmers like gold.", "这颗蛋像金子般闪耀。"],
        rarity: "NotNormal",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Wyvern)",
        release_at: "January 23, 2012",
        wiki: [
          "/wiki/Golden_Wyvern",
          "/zh/wiki/%E9%BB%83%E9%87%91%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Golden_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f8/Golden_Wyvern_egg.gif/revision/latest?cb=20120123163245",
          ],
        },
        price: "1,400 - 1,800 shards",
        encyclopedia_id: 51,
      },
      {
        breed: ["Green Dragon", "绿龙"],
        egg: [
          "This egg is sitting in a pile of small pebbles.",
          "这颗蛋位于一些小卵石之间。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Volcano"],
        bsa: "Earthquake",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2006",
        wiki: ["/wiki/Green_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Green_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/8e/Green_egg.gif/revision/latest?cb=20100326231142",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 48,
      },
      {
        breed: ["Guardian Dragon", "护卫龙"],
        egg: [
          "This egg is sitting in front of the others.",
          "这颗蛋立于其他蛋前方。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Light", "Neutral"],
        morphology: "Dragon (Western)",
        release_at: "August 30, 2008",
        wiki: ["/wiki/Guardian_Dragon", "/zh/wiki/%E8%AD%B7%E8%A1%9B%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Guardian_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f1/Guardian_egg.gif/revision/latest?cb=20100326233611",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 50,
      },
      {
        breed: ["Guardian of Nature", "自然守护龙"],
        egg: ["This egg glows mysteriously.", "这颗蛋发出神秘的光。"],
        rarity: "Unknown",
        habitats: ["Unknown (Must be Summoned)"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "March 26, 2010",
        wiki: [
          "/wiki/Guardian_of_Nature",
          "/zh/wiki/%E8%87%AA%E7%84%B6%E5%AE%88%E8%AD%B7%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Guardian_of_Nature_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/6c/Guardian_of_Nature_egg.gif/revision/latest?cb=20100327190510",
          ],
        },
        price: "N/A",
        encyclopedia_id: 64,
      },
      {
        breed: ["Harvest Dragon", "收获龙"],
        egg: [
          "This heavy egg feels slightly warm.",
          "这个沉重的蛋有微暖的感觉。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine (Winter)Forest (Spring to Autumn)"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "October 10, 2010",
        wiki: ["/wiki/Harvest_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Harvest_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fa/Harvest_egg.gif/revision/latest?cb=20101010122414",
          ],
        },
        price: "100 - 700 shards",
        encyclopedia_id: 57,
      },
      {
        breed: ["Hellfire Wyvern", "地狱火龙"],
        egg: [
          "This egg radiates the heat of a fell flame.",
          "这颗蛋放出可怕的火焰热量。",
        ],
        rarity: "Normal",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Wyvern)",
        release_at: "April 1, 2010",
        wiki: [
          "/wiki/Hellfire_Wyvern",
          "/zh/wiki/%E5%9C%B0%E7%8D%84%E7%81%AB%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Hellfire_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/80/Hellfire_Wyvern_egg.gif/revision/latest?cb=20100401041551",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 58,
      },
      {
        breed: ["Hellhorse Dragon", "狱马龙"],
        egg: [
          "This hot egg shakes violently when you touch it.",
          "这颗灼热的蛋在你触碰它时暴烈地摇晃。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "May 25, 2013",
        wiki: [
          "/wiki/Hellhorse_Dragon",
          "/zh/wiki/%E7%8B%B1%E9%A9%AC%E9%BE%99",
        ],
        sprites: {
          egg: [
            "",
            "Hellhorse_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/5/59/Hellhorse_egg.png/revision/latest?cb=20130525040908",
          ],
        },
        price: "N/A",
        encyclopedia_id: 59,
      },
      {
        breed: ["Hooded Murkling Dragon", ""],
        egg: ["This shady egg seems to be lurking just out of sight.", ""],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "Adventure",
        elemental: ["Dark", "Death"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Hooded_Murkling_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Hooded_Murkling_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ee/Hooded_Murkling_egg.png/revision/latest?cb=20220521040238",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1717,
      },
      {
        breed: ["Horse Dragon", ""],
        egg: ["This egg has strange markings on it.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Horse_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Horse_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/01/Horse_egg.gif/revision/latest?cb=20100326232132",
          ],
        },
      },
      {
        breed: ["Sabertooth Bull Drake", ""],
        egg: ["This striped egg is surprisingly heavy.", ""],
        rarity: "Unknown",
        habitats: ["Coast", "Volcano"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Drake",
        release_at: "June 27, 2021",
        wiki: ["/wiki/Hydrophidius_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Hydrophidius_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/3b/Hydrophidius_egg.png/revision/latest?cb=20210328041807",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1702,
      },
      {
        breed: ["Ice Dragon", "冰龙"],
        egg: ["This egg has icicles forming on it.", "这颗蛋上形成了冰柱。"],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "Summon",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "November 22, 2009",
        wiki: ["/wiki/Ice_Dragon", "/zh/wiki/%E5%86%B0%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Ice_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/6c/Ice_egg.gif/revision/latest?cb=20100326231405",
          ],
        },
        price: "2,900 - 3,700 shards",
        encyclopedia_id: 61,
      },
      {
        breed: ["Imperial Fleshcrowne Dragon", "帝王肉冠龙"],
        egg: ["This egg is hidden in the trees.", "这颗蛋隐藏于树丛中。"],
        rarity: "Unknown",
        habitats: ["All habitats (Rotating)"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "July 7, 2013",
        wiki: ["/wiki/Imperial_Fleshcrowne", ""],
        sprites: {
          egg: [
            "",
            "Imperial_Fleshcrowne_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/81/Imperial_Fleshcrowne_egg.gif/revision/latest?cb=20130707042308",
          ],
        },
        price: "100 - 1,100 shards",
        encyclopedia_id: 41,
      },
      {
        breed: ["Khusa Dragon", "酷沙龙"],
        egg: ["This egg is smooth and shiny.", "这颗蛋光滑且闪闪发亮。"],
        rarity: "Unknown",
        habitats: ["Alpine", "Desert"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "August 27, 2017",
        wiki: ["/wiki/Khusa_Dragon", "/zh/wiki/%E9%85%B7%E6%B2%99%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Khusa_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/97/Khusa_egg.gif/revision/latest?cb=20170828200205",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1621,
      },
      {
        breed: ["Kingcrowne Dragon", "王冠龙"],
        egg: [
          "This shiny egg gives off an almost magical aura.",
          "这闪闪发光的蛋散发出近似魔法的光圈。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Light", "Magi"],
        morphology: "Dragon (Western)",
        release_at: "August 21, 2016",
        wiki: [
          "/wiki/Kingcrowne_Dragon",
          "/zh/wiki/%E7%8E%8B%E5%86%A0%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Kingcrowne_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f0/Kingcrowne_egg.gif/revision/latest?cb=20160821174632",
          ],
        },
        price: "700 - 900 shards",
        encyclopedia_id: 1598,
      },
      {
        breed: ["Labradorite Dragon", ""],
        egg: ["This shimmering egg was hidden far from the others.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Dark", "Earth"],
        morphology: "Dragon (Eastern)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Labradorite_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Labradorite_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/f/f3/Labradorite_egg.png/revision/latest?cb=20200521040353",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1680,
      },
      {
        breed: ["Lacula Dragon", "拉库拉龙"],
        egg: [
          "This green and silver egg lurks in the shadows, tempting you to steal it.",
          "这颗银绿色蛋潜伏在暗处,诱使你去偷走它。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Amphiptere)",
        release_at: "May 21, 2018",
        wiki: [
          "/wiki/Lacula_Dragon",
          "/zh/wiki/%E6%8B%89%E5%BA%AB%E6%8B%89%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Lacula_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/8d/Lacula_egg.gif/revision/latest?cb=20180521131301",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1627,
      },
      {
        breed: ["Leodon Dragon", "烈傲龙"],
        egg: [
          "This red and gold egg sits before the others, almost daring you to grab it.",
          "这颗红金色的蛋坐在最前方,鼓励你大胆夺走他。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Wingless)",
        release_at: "May 21, 2018",
        wiki: ["/wiki/Leodon_Dragon", "/zh/wiki/%E7%83%88%E5%82%B2%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Leodon_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/3b/Leodon_egg.gif/revision/latest?cb=20180521131302",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1628,
      },
      {
        breed: ["Lihnseyre Dragon", "宁视乐龙"],
        egg: [
          "This glowing egg seems to tug at your very core.",
          "这颗发著光的蛋似是在拉扯你的内在。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Life", "Magi"],
        morphology: "Dragon (Eastern)",
        release_at: "May 21, 2019",
        wiki: [
          "/wiki/Lihnseyre_Dragon",
          "/zh/wiki/%E5%AF%A7%E8%A6%96%E6%A8%82%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Lihnseyre_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0e/Lihnseyre_egg.gif/revision/latest?cb=20190521040440",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1656,
      },
      {
        breed: ["Lotaan Dragon", ""],
        egg: ["This scaly egg seems to disappear in the depths.", ""],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Sea serpent)",
        release_at: "April 24, 2022",
        wiki: ["/wiki/Lotaan_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Lotaan_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/91/Lotaan_egg.gif/revision/latest?cb=20220424040109",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1714,
      },
      {
        breed: ["Lumina Dragon", "绚光龙"],
        egg: [
          "This egg shines brightly in the sunlight.",
          "这颗蛋在阳光下明亮地闪耀。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "May 22, 2012",
        wiki: ["/wiki/Lumina_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Lumina_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b9/Lumina_egg.png/revision/latest?cb=20120522161915",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 65,
      },
      {
        breed: ["Luminox Dragon", "夜明龙"],
        egg: [
          "The markings on this egg glow brightly in the shadows.",
          "这颗蛋上的斑点在阴影中闪闪发光。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Wyvern)",
        release_at: "July 21, 2019",
        wiki: ["/wiki/Luminox_Dragon", "/zh/wiki/%E5%A4%9C%E6%98%8E%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Luminox_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/98/Luminox_egg.gif/revision/latest?cb=20190721045238",
          ],
        },
        price: "200 - 400 shards",
        encyclopedia_id: 1647,
      },
      {
        breed: ["Lunar Herald Dragon", "月亮使者龙"],
        egg: [
          "This metallic egg shows faint iridescence in moonlight.",
          "这颗金属光泽的蛋在月光下发出微弱的虹光。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Desert", "Volcano"],
        bsa: "",
        elemental: ["Light", "Time"],
        morphology: "Dragon (Western)",
        release_at: "August 29, 2015",
        wiki: ["/wiki/Lunar_Herald_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Lunar_Herald_gold_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a6/Lunar_Herald_gold_egg.gif/revision/latest?cb=20150829075158",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1427,
      },
      {
        breed: ["Magi Dragon", "贤龙"],
        egg: [
          "This egg has an orange aura radiating from it.",
          "这颗蛋放射出橙色魔力的光环。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "Teleport",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "June 2006",
        wiki: ["/wiki/Magi_Dragon", "/zh/wiki/%E8%B3%A2%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Magi_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/cd/Magi_egg.gif/revision/latest?cb=20100326232645",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 66,
      },
      {
        breed: ["Magma Dragon", "岩浆龙"],
        egg: ["This egg is almost too hot to touch.", "这颗蛋热到难以触碰。"],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "Summon",
        elemental: ["Fire"],
        morphology: "Dragon (Wingless)",
        release_at: "November 22, 2009",
        wiki: ["/wiki/Magma_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Magma_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/39/Magma_egg.gif/revision/latest?cb=20091124051821",
          ],
        },
        price: "4,000 - 4,900 shards",
        encyclopedia_id: 67,
      },
      {
        breed: ["Melismor Dragon", "梅力斯莫龙"],
        egg: [
          "This heavy egg has an earthy scent, like freshly-tilled soil.",
          "这颗重蛋有股土味,像是新翻过的土壤。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Eastern)",
        release_at: "May 21, 2018",
        wiki: [
          "/wiki/Melismor_Dragon",
          "/zh/wiki/%E6%A2%85%E5%8A%9B%E6%96%AF%E8%8E%AB%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Melismor_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/39/Melismor_egg.png/revision/latest?cb=20180521131302",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1629,
      },
      {
        breed: ["Mint Dragon", "薄荷龙"],
        egg: [
          "This egg is hidden behind the others, as if it is shy.",
          "这颗蛋藏在其他蛋后面,似乎很害羞。",
        ],
        rarity: "Unknown",
        habitats: ["Coast", "Forest", "Jungle", "Alpine", "Volcano"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wingless)",
        release_at: "May 21, 2006",
        wiki: ["/wiki/Mint_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Mint_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/aa/Mint_egg.gif/revision/latest?cb=20100326231927",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 68,
      },
      {
        breed: ["Mirisia Amphiptere", ""],
        egg: ["This egg emanates a peculiar smell.", ""],
        rarity: "Unknown",
        habitats: ["Alpine", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Amphiptere)",
        release_at: "September 26, 2021",
        wiki: ["/wiki/Mirisia_Amphiptere", ""],
        sprites: {
          egg: [
            "",
            "Mirisia_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/dc/Mirisia_egg.gif/revision/latest?cb=20210926040149",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1706,
      },
      {
        breed: ["Mistra Dragon", ""],
        egg: ["You hear a soft melody as you approach this egg.", ""],
        rarity: "Unknown",
        habitats: ["Coast", "Jungle"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "September 22, 2020",
        wiki: ["/wiki/Mistra_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Mistra_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/20/Mistra_egg.png/revision/latest?cb=20200922050512",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1667,
      },
      {
        breed: ["Monarch Dragon", "帝王龙"],
        egg: ["This egg is buried in leaf litter.", "这颗蛋被埋在落叶堆里。"],
        rarity: "Unknown",
        habitats: ["Jungle", "Forest", "Desert"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "September 25, 2016",
        wiki: ["/wiki/Monarch_Dragon", "/zh/wiki/%E5%B8%9D%E7%8E%8B%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Monarch_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f7/Monarch_egg.gif/revision/latest?cb=20160925094249",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 169,
      },
      {
        breed: ["Sunstone Dragon", "太阳石龙"],
        egg: [
          "This egg resembles a glowing stone.",
          "这颗蛋像一颗闪闪发光的石头。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Desert"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "July 18, 2011",
        wiki: ["/wiki/Moonstone_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Moonstone_egg.GIF",
            "https://static.wikia.nocookie.net/dragcave/images/a/aa/Moonstone_egg.GIF/revision/latest?cb=20110718053551",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 107,
      },
      {
        breed: ["Nebula Dragon", "星云龙"],
        egg: [
          "This egg glows with a brilliant radiance.",
          "这颗蛋散发出灿烂的光辉。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Desert"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Wyvern)",
        release_at: "April 1, 2010",
        wiki: ["/wiki/Nebula_Dragon", "/zh/wiki/%E6%98%9F%E9%9B%B2%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Nebula_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/78/Nebula_egg.gif/revision/latest?cb=20100401041445",
          ],
        },
        price: "600 - 800 shards",
        encyclopedia_id: 70,
      },
      {
        breed: ["Neglected Dragon", "弃龙"],
        egg: [
          "This egg is very sickly looking, like it has a disease.",
          "这颗蛋看起来非常虚弱,似乎已经病变了。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown"],
        bsa: "",
        elemental: [],
        morphology: "Dragon (Western)",
        release_at: "June 2, 2007",
        wiki: ["/wiki/Neglected_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Neglected_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/65/Neglected_egg.gif/revision/latest?cb=20100327043925",
          ],
        },
        price: "N/A",
        encyclopedia_id: 95,
      },
      {
        breed: ["Neotropical Dragon", "新热带龙"],
        egg: [
          "This egg has strange yellow stripes.",
          "这颗蛋有奇怪的黄色条纹。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "August 25, 2009",
        wiki: ["/wiki/Neotropical_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Neotropical_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ef/Neotropical_egg.png/revision/latest?cb=20100326230713",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 71,
      },
      {
        breed: ["Nhiostrife Wyvern", "霓纹翼龙"],
        egg: [
          "This dull purple egg has two bright stripes on it.",
          "这颗暗紫色的蛋上有两条明亮的纹路。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Wyvern)",
        release_at: "November 30, 2013",
        wiki: ["/wiki/Nhiostrife_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Nhiostrife_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/10/Nhiostrife_Wyvern_egg.gif/revision/latest?cb=20131130094503",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 117,
      },
      {
        breed: ["Nobleshield Dragon", ""],
        egg: ["This tough egg has a protective ridge down its shell.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Neutral", "Fire"],
        morphology: "Dragon (Western)",
        release_at: "January 24, 2021",
        wiki: ["/wiki/Nobleshield_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Nobleshield_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/3c/Nobleshield_egg.png/revision/latest?cb=20210124051359",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1670,
      },
      {
        breed: ["Nocturne Dragon", "夜曲龙"],
        egg: [
          "This egg appears to be made of limestone.",
          "这颗蛋似乎由石灰石构成。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Forest"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Dragon (Western)",
        release_at: "January 15, 2010",
        wiki: ["/wiki/Nocturne_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Nocturne_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/45/Nocturne_egg.gif/revision/latest?cb=20100116171826",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 72,
      },
      {
        breed: ["Olive Dragon", "橄榄龙"],
        egg: [
          "This egg smells musty, like rotting leaves.",
          "这颗蛋闻起来发霉了,像腐烂的树叶。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "August 15, 2012",
        wiki: ["/wiki/Olive_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Olive_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b8/Olive_egg.gif/revision/latest?cb=20120815075525",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 74,
      },
      {
        breed: ["Oracle Wyrm", ""],
        egg: ["It feels like this egg knew you were coming.", ""],
        rarity: "Unknown",
        habitats: ["Alpine", "Coast", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Wyrm)",
        release_at: "July 25, 2021",
        wiki: ["/wiki/Oracle_Wyrm", ""],
        sprites: {
          egg: [
            "",
            "Oracle_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ee/Oracle_egg.png/revision/latest?cb=20210725040109",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1701,
      },
      {
        breed: ["Pillow Dragon", "软枕龙"],
        egg: ["This egg has a velvety texture.", "这颗蛋有天鹅绒般的质地。"],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "March 16, 2011",
        wiki: ["/wiki/Pillow_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pillow_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a2/Pillow_egg.gif/revision/latest?cb=20110316055144",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 77,
      },
      {
        breed: ["Pink Dragon", ""],
        egg: ["It’s bright. And pink.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Pink_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pink_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/05/Pink_egg.gif/revision/latest?cb=20100326231252",
          ],
        },
      },
      {
        breed: ["Plated Colossus Dragon", "装甲巨龙"],
        egg: [
          "This massive egg is covered with thick plates.",
          "这颗巨大的蛋被装甲包覆。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "March 28, 2015",
        wiki: ["/wiki/Plated_Colossus_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Plated_Colossus_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/90/Plated_Colossus_egg.gif/revision/latest?cb=20150329015425",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 974,
      },
      {
        breed: ["Purple Dragon", "紫龙"],
        egg: [
          "Wow, purple isn’t a color of egg you expected to see.",
          "哇,紫色不是你想象中会在蛋上看到的颜色。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "Fertility",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2006",
        wiki: ["/wiki/Purple_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Purple_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/5c/Purple_egg.gif/revision/latest?cb=20100326231236",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 82,
      },
      {
        breed: ["Pyralspite Dragon", "铝榴石龙"],
        egg: [
          "This egg feels like polished stone.",
          "这颗蛋就像是剖光过的宝石。",
        ],
        rarity: "Unknown",
        habitats: [
          "Alpine (Almandine)",
          "Volcano (Pyrope)",
          "Coast (Spessartine)",
        ],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "September 20, 2014",
        wiki: ["/wiki/Pyralspite_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pyralspite_Almandine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/24/Pyralspite_Almandine_egg.png/revision/latest?cb=20140920173132",
          ],
        },
        price: "600 - 800 shards",
        encyclopedia_id: 975,
      },
      {
        breed: ["Pyropellis Wyvern", ""],
        egg: ["Tough ridges line the surface of this rough, mottled egg.", ""],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Wyvern)",
        release_at: "August 22, 2021",
        wiki: ["/wiki/Pyropellis_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Pyropellis_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/73/Pyropellis_egg.png/revision/latest?cb=20210822040310",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1697,
      },
      {
        breed: ["Pyrovar Dragon", "火沸龙"],
        egg: [
          "This glassy egg is too hot to hold with your bare hands.",
          "这颗玻璃蛋烫到不能直接用手拿著。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "July 1, 2018",
        wiki: ["/wiki/Pyrovar_Dragon", "/zh/wiki/%E7%81%AB%E6%B2%B8%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Pyrovar_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d2/Pyrovar_egg.gif/revision/latest?cb=20180702062338",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 183,
      },
      {
        breed: ["Pyrrhichios Dragon", ""],
        egg: [
          "When you tap on this shell, the hatchling inside taps back.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "Adventure",
        elemental: ["Time"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Pyrrhichios_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pyrrhichios_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f6/Pyrrhichios_egg.gif/revision/latest?cb=20220521040254",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1718,
      },
      {
        breed: ["Razorcrest Wyvern", "剃刀羽冠翼龙"],
        egg: [
          "This blue and bronze egg piques your curiosity.",
          "这颗蓝铜色蛋激起你的好奇心。",
        ],
        rarity: "NotNormal",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 21, 2018",
        wiki: [
          "/wiki/Razorcrest_Wyvern",
          "/zh/wiki/%E5%89%83%E5%88%80%E7%BE%BD%E5%86%A0%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Razorcrest_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/dc/Razorcrest_Wyvern_egg.gif/revision/latest?cb=20180521131300",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1630,
      },
      {
        breed: ["Red Dragon", "红龙"],
        egg: ["This egg is rather warm.", "这颗蛋相当温暖。"],
        rarity: "Unknown",
        habitats: ["Desert", "Volcano"],
        bsa: "Incubate",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "August 5, 2007",
        wiki: ["/wiki/Red_Dragon", "/zh/wiki/%E7%B4%85%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Red_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/15/Red_egg.gif/revision/latest?cb=20100326231225",
          ],
        },
        price: "600 - 700 shards",
        encyclopedia_id: 89,
      },
      {
        breed: ["Ridgewing Dragon", "脊翼龙"],
        egg: [
          "A cool mountain breeze blows around this egg.",
          "清凉的山风在这颗蛋四周吹拂。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "August 28, 2010",
        wiki: ["/wiki/Ridgewing_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Ridgewing_purple_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/94/Ridgewing_purple_egg.gif/revision/latest?cb=20100828155817",
          ],
        },
        price: "400 - 500 shards",
        encyclopedia_id: 90,
      },
      {
        breed: ["Rift Wyrm", "裂谷龙"],
        egg: [
          "This egg radiates an otherworldly chill.",
          "这颗蛋散发出超自然的寒意。",
        ],
        rarity: "Normal",
        habitats: ["All habitats (rotating", "see trivia)"],
        bsa: "",
        elemental: ["Magi", "Water"],
        morphology: "Dragon (Wyrm)",
        release_at: "June 30, 2019",
        wiki: ["/wiki/Rift_Wyrm", "/zh/wiki/%E8%A3%82%E8%B0%B7%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Rift_Wyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/ed/Rift_Wyrm_egg.gif/revision/latest?cb=20190630212532",
          ],
        },
        price: "200 - 500 shards",
        encyclopedia_id: 1649,
      },
      {
        breed: ["Risensong Dragon", "旭歌龙"],
        egg: [
          "This bright egg shines in the morning sunlight.",
          "这颗亮眼的蛋在朝曦中闪耀著光芒。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "June 25, 2017",
        wiki: [
          "/wiki/Risensong_Dragon",
          "/zh/wiki/%E6%97%AD%E6%AD%8C%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Risensong_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fd/Risensong_egg.gif/revision/latest?cb=20170625075014",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1610,
      },
      {
        breed: ["Royal Blue Dragon", "皇家蓝龙"],
        egg: ["This egg shines in the moonlight.", "这颗蛋在月色下闪耀。"],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "January 23, 2012",
        wiki: [
          "/wiki/Royal_Blue_Dragon",
          "/zh/wiki/%E7%9A%87%E5%AE%B6%E8%97%8D%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Royal_Blue_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/95/Royal_Blue_egg.gif/revision/latest?cb=20120123055741",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 91,
      },
      {
        breed: ["Royal Crimson Dragon", "皇家绯红龙"],
        egg: [
          "This large egg is a dark crimson color.",
          "这颗巨大的蛋有黯沉的绯红色。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "April 7, 2013",
        wiki: ["/wiki/Royal_Crimson_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Royal_Crimson_egg.PNG",
            "https://static.wikia.nocookie.net/dragcave/images/f/f0/Royal_Crimson_egg.PNG/revision/latest?cb=20130407052417",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 92,
      },
      {
        breed: ["Royal Eminence Dragon", ""],
        egg: ["This magnificent purple egg shimmers in the light.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2021",
        wiki: ["/wiki/Royal_Eminence_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Royal_Eminence_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/c/c5/Royal_Eminence_egg.png/revision/latest?cb=20210521041110",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1704,
      },
      {
        breed: ["Sandwaste Dragon", "沙荒龙"],
        egg: ["This egg was buried in a sand dune.", "这颗蛋被埋在沙堆下。"],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Western)",
        release_at: "December 1, 2019",
        wiki: [
          "/wiki/Sandwaste_Dragon",
          "/zh/wiki/%E6%B2%99%E8%8D%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Sandwaste_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/34/Sandwaste_egg.gif/revision/latest?cb=20191201141103",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1661,
      },
      {
        breed: ["Sapo Dragon", ""],
        egg: ["This egg’s shell is slippery and clean.", ""],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Sea serpent)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Sapo_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sapo_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/c/c6/Sapo_egg.png/revision/latest?cb=20200521040353",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1682,
      },
      {
        breed: ["Sapphire Dragon", "蓝宝石龙"],
        egg: [
          "This egg looks like a beautiful blue stone.",
          "这颗蛋看起来像是颗漂亮的蓝石头。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at:
          "March 19, 2016 (Blue variant)May 21, 2021 (Pink and yellow variants)",
        wiki: [
          "/wiki/Sapphire_Dragon",
          "/zh/wiki/%E8%97%8D%E5%AF%B6%E7%9F%B3%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Sapphire_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/56/Sapphire_egg.gif/revision/latest?cb=20160320050131",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 168,
      },
      {
        breed: ["Sawtooth Dragon", ""],
        egg: ["Soft chirping sounds are coming from inside the egg.", ""],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Water", "Air"],
        morphology: "Dragon (Western)",
        release_at: "April 25, 2021",
        wiki: ["/wiki/Sawtooth_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sawtooth_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/c/c0/Sawtooth_egg.png/revision/latest?cb=20210425121423",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1696,
      },
      {
        breed: ["Scimitar-wing Wyvern", "弯刀翼龙"],
        egg: ["This egg seems quite harmless.", "这颗蛋看起来很无害。"],
        rarity: "Unknown",
        habitats: ["Desert", "Volcano"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wyvern)",
        release_at: "April 28, 2017",
        wiki: ["/wiki/Scimitar-wing_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Scimitar-wing_Wyvern_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/27/Scimitar-wing_Wyvern_egg.png/revision/latest?cb=20170428203409",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1613,
      },
      {
        breed: ["Script Dragon", "符纹龙"],
        egg: [
          "This egg is covered in mysterious patterns.",
          "这颗蛋布满了神秘的符文。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "July 17, 2017",
        wiki: ["/wiki/Script_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Script_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d8/Script_egg.gif/revision/latest?cb=20170718093724",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1616,
      },
      {
        breed: ["Seasonal Dragon (Winter)", "季龙"],
        egg: [
          "The markings on this egg match the weather outside.",
          "这颗蛋上的花纹与外面的季节相对应。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Forest", "Forest", "Alpine"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Dragon (Western)",
        release_at: "December 21, 2008",
        wiki: ["/wiki/Seasonal_Dragon_(Spring)", ""],
        sprites: {
          egg: [
            "",
            "Spring_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/12/Spring_egg.gif/revision/latest?cb=20100326231211",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1080,
      },
      {
        breed: ["Seasonal Dragon (Summer)", ""],
        egg: ["The markings on this egg match the weather outside.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Seasonal_Dragon_(Summer)", ""],
        sprites: {
          egg: [
            "",
            "Summer_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/7c/Summer_egg.gif/revision/latest?cb=20110621092342",
          ],
        },
      },
      {
        breed: ["Seasonal Dragon (Autumn)", ""],
        egg: ["The markings on this egg match the weather outside.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Seasonal_Dragon_(Autumn)", ""],
        sprites: {
          egg: [
            "",
            "Autumn_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f4/Autumn_egg.gif/revision/latest?cb=20101226043608",
          ],
        },
      },
      {
        breed: ["Seasonal Dragon (Winter)", ""],
        egg: ["The markings on this egg match the weather outside.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Seasonal_Dragon_(Winter)", ""],
        sprites: {
          egg: [
            "",
            "Winter_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/8/8b/Winter_egg.png/revision/latest?cb=20100328012039",
          ],
        },
      },
      {
        breed: ["Serrati Wyvern", ""],
        egg: ["This egg has striations marking its rough shell.", ""],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 28, 2013",
        wiki: ["/wiki/Serrati_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Serrati_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/7a/Serrati_egg.gif/revision/latest?cb=20210508062118",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 94,
      },
      {
        breed: ["Setsong Dragon", "暮歌龙"],
        egg: [
          "This dark egg shines in the evening sunlight.",
          "这颗暗沉的蛋在暮色中闪耀著光芒。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "June 25, 2017",
        wiki: ["/wiki/Setsong_Dragon", "/zh/wiki/%E6%9A%AE%E6%AD%8C%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Setsong_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/23/Setsong_egg.gif/revision/latest?cb=20170625075013",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1611,
      },
      {
        breed: ["Shallow Water Dragon", ""],
        egg: ["This egg appears to be covered in scales.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Shallow_Water_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Shallow_Water_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/48/Shallow_Water_egg.gif/revision/latest?cb=20100526071332",
          ],
        },
      },
      {
        breed: ["Shimmer-scale Dragon", ""],
        egg: ["This egg is very reflective, almost metallic looking.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Shimmer-scale_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Gold_Shimmer-scale_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/6/60/Gold_Shimmer-scale_egg.png/revision/latest?cb=20130129092840",
          ],
        },
      },
      {
        breed: ["Shumoga Dragon", ""],
        egg: ["This striped egg has a rough, ridged texture.", ""],
        rarity: "Unknown",
        habitats: ["Alpine", "Desert"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "August 22, 2021",
        wiki: ["/wiki/Shumoga_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Shumoga_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/21/Shumoga_egg.gif/revision/latest?cb=20210822040335",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1699,
      },
      {
        breed: ["Sophrosyne Dragon", "安魂龙"],
        egg: [
          "This egg gives off a beautiful glow.",
          "这颗蛋散发出美丽的光芒。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats", "Unknown (Hybrid)"],
        bsa: "Remove Curse",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "April 7, 2013",
        wiki: ["/wiki/Silver_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Silver_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/4d/Silver_egg.gif/revision/latest?cb=20151203095231",
          ],
        },
        price: "N/A",
        encyclopedia_id: 98,
      },
      {
        breed: ["Sinii Krai Dragon", "青尼廓蓝龙"],
        egg: [
          "This striped egg has a warm glow.",
          "这颗条纹蛋散发著温和光芒。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: [],
        morphology: "Dragon (Western)",
        release_at: "April 28, 2017",
        wiki: ["/wiki/Sinii_Krai_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sinii_Krai_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/79/Sinii_Krai_egg.gif/revision/latest?cb=20170428203616",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 153,
      },
      {
        breed: ["Siyat Dragon", "夏特龙"],
        egg: [
          "This egg seems to be glowing in spots.",
          "这颗蛋上的斑点看起来在发光。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Coast", "Forest"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "July 29, 2018",
        wiki: ["/wiki/Siyat_Dragon", "/zh/wiki/%E5%A4%8F%E7%89%B9%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Siyat_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/05/Siyat_egg.png/revision/latest?cb=20180729053741",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 184,
      },
      {
        breed: ["Skystrider Dragon", ""],
        egg: ["This plain blue egg almost seems to float.", ""],
        rarity: "Unknown",
        habitats: ["Alpine", "Forest", "Coast"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Amphiptere)",
        release_at: "August 23, 2020",
        wiki: ["/wiki/Skystrider_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Skystrider_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f2/Skystrider_egg.gif/revision/latest?cb=20200823040209",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1669,
      },
      {
        breed: ["Skysilk Dragon", "天丝龙"],
        egg: [
          "This light egg has very vibrant colors.",
          "这颗轻巧的蛋色彩斑斓。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Jungle"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "April 27, 2019",
        wiki: ["/wiki/Skysilk_Dragon", "/zh/wiki/%E5%A4%A9%E7%B5%B2%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Skysilk_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/40/Skysilk_egg.png/revision/latest?cb=20190427192330",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1650,
      },
      {
        breed: ["Skywing Dragon", ""],
        egg: ["This egg has strange markings on it.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Skywing_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Skywing_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/34/Skywing_egg.gif/revision/latest?cb=20100326232320",
          ],
        },
      },
      {
        breed: ["Sophrosyne Dragon", ""],
        egg: ["This egg gives off a beautiful glow.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sophrosyne_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sophrosyne_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/21/Sophrosyne_egg.gif/revision/latest?cb=20210508062422",
          ],
        },
      },
      {
        breed: ["Speckle-Throated Dragon", "斑喉龙"],
        egg: [
          "This egg has a rough—yet shiny—shell.",
          "这颗蛋有个粗糙——然而闪亮的壳。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "March 4, 2013",
        wiki: ["/wiki/Speckle-Throated_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Speckle-Throated_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/99/Speckle-Throated_egg.gif/revision/latest?cb=20130304065259",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 99,
      },
      {
        breed: ["Spinel Wyvern", "尖晶石翼龙"],
        egg: [
          "This glassy egg has a single stripe on it.",
          "这颗玻璃般的蛋上有一道条纹。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Volcano"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Wyvern)",
        release_at: "September 30, 2017",
        wiki: ["/wiki/Spinel_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Spinel_Wyvern_violet_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/62/Spinel_Wyvern_violet_egg.gif/revision/latest?cb=20170930230404",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1617,
      },
      {
        breed: ["Spirit Ward Dragon", "守灵龙"],
        egg: ["This egg glows from within.", "这颗蛋自内而外散发著光芒。"],
        rarity: "Unknown",
        habitats: ["Forest", "Alpine"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Wyvern)",
        release_at: "July 26, 2015",
        wiki: ["/wiki/Spirit_Ward_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Spirit_Ward_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/d6/Spirit_Ward_egg.png/revision/latest?cb=20150726071712",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 976,
      },
      {
        breed: ["Striped Dragon", "条纹龙"],
        egg: [
          "This egg has brightly colored markings on it.",
          "这颗蛋上有色泽明亮的花纹。",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Spitfire_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Spitfire_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/19/Spitfire_egg.gif/revision/latest?cb=20100704151956",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 102,
      },
      {
        breed: ["Spotted Greenwing", "斑点绿翼龙"],
        egg: [
          "This egg is covered in bright spots.",
          "这颗蛋覆盖着明亮的斑点。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "September 17, 2011",
        wiki: ["/wiki/Spotted_Greenwing", ""],
        sprites: {
          egg: [
            "",
            "Spotted_Greenwing_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/e2/Spotted_Greenwing_egg.gif/revision/latest?cb=20110917090613",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 49,
      },
      {
        breed: ["Stone Dragon", ""],
        egg: [
          "This egg is heavy and rough, as if it were made out of rock.",
          "",
        ],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Stone_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Stone_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d9/Stone_egg.gif/revision/latest?cb=20090310172424",
          ],
        },
      },
      {
        breed: ["Storm Dragon", "风暴龙"],
        egg: ["This egg is surrounded by fog.", "这颗蛋被雾笼罩。"],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "June 19, 2007",
        wiki: ["/wiki/Storm_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Storm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/81/Storm_egg.gif/revision/latest?cb=20100326231836",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 47,
      },
      {
        breed: ["Storm-Rider Dragon", "风暴驾驭龙"],
        egg: [
          "You can feel the static electricity that surrounds this egg.",
          "你可以感受到静电环绕著这颗蛋。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Lightning"],
        morphology: "Dragon (Western)",
        release_at: "July 10, 2016",
        wiki: [
          "/wiki/Storm-Rider_Dragon",
          "/zh/wiki/%E9%A2%A8%E6%9A%B4%E9%A7%95%E9%A6%AD%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Storm-Rider_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/e0/Storm-Rider_egg.png/revision/latest?cb=20160710113249",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1589,
      },
      {
        breed: ["Stratos Dragon", "斯特拉托斯龙"],
        egg: [
          "This egg is very large, but light for its size.",
          "这蛋虽大,却没那么重。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Desert", "Jungle"],
        bsa: "",
        elemental: ["Air", "Light"],
        morphology: "Dragon (Sea serpent)",
        release_at: "March 22, 2020",
        wiki: [
          "/wiki/Stratos_Dragon",
          "/zh/wiki/%E6%96%AF%E7%89%B9%E6%8B%89%E6%89%98%E6%96%AF%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Stratos_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/c/c3/Stratos_egg.png/revision/latest?cb=20200322040247",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1672,
      },
      {
        breed: ["Striped Dragon", ""],
        egg: ["This egg has brightly colored markings on it.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Striped_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Striped_white_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/8/8c/Striped_white_egg.png/revision/latest?cb=20100405160707",
          ],
        },
      },
      {
        breed: ["Striped River Dragon", "条纹河龙"],
        egg: [
          "A small puddle of condensation has collected under this egg.",
          "小小的水滩凝聚在这颗蛋下。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Eastern)",
        release_at: "March 28, 2015",
        wiki: ["/wiki/Striped_River_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Striped_River_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/eb/Striped_River_egg.gif/revision/latest?cb=20150329015542",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 971,
      },
      {
        breed: ["Sunset Dragon", "落日龙"],
        egg: [
          "This egg is glowing as brightly as the sun.",
          "这颗蛋闪耀得像太阳。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Alpine"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Sunset_Dragon", "#cite_note-sunrise-sunset-13"],
        sprites: {
          egg: [
            "",
            "Sunrise-Sunset_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/5b/Sunrise-Sunset_egg.gif/revision/latest?cb=20100326235413",
          ],
        },
        price: "N/A",
        encyclopedia_id: 105,
      },
      {
        breed: ["Sunrise Dragon", ""],
        egg: ["This egg is glowing as brightly as the sun.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sunrise_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sunrise-Sunset_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/5b/Sunrise-Sunset_egg.gif/revision/latest?cb=20100326235413",
          ],
        },
      },
      {
        breed: ["Sunsong Amphiptere", "日歌翼蛇"],
        egg: [
          "This egg changes colors in the sunlight.",
          "这颗蛋在阳光下变幻着颜色。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Amphiptere)",
        release_at: "April 1, 2010",
        wiki: ["/wiki/Sunsong_Amphiptere", ""],
        sprites: {
          egg: [
            "",
            "Sunsong_Amphiptere_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a1/Sunsong_Amphiptere_egg.gif/revision/latest?cb=20100401041314",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 106,
      },
      {
        breed: ["Sunstone Dragon", ""],
        egg: ["This egg resembles a glowing stone.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sunstone_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Sunstone_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/07/Sunstone_egg.gif/revision/latest?cb=20110718082207",
          ],
        },
      },
      {
        breed: ["Swallowtail Dragon", "燕尾龙"],
        egg: ["This egg has a very thin shell.", "这颗蛋的壳非常薄。"],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "March 16, 2011",
        wiki: ["/wiki/Swallowtail_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Swallowtail_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/6f/Swallowtail_egg.gif/revision/latest?cb=20110316055643",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 108,
      },
      {
        breed: ["Tercorn Dragon", "三角龙"],
        egg: [
          "Water glistens on this egg’s shimmering shell.",
          "水珠在这颗蛋晶莹璀璨的壳上闪闪发光。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water", "Life"],
        morphology: "Dragon (Western)",
        release_at: "September 1, 2019",
        wiki: ["/wiki/Tercorn_Dragon", "/zh/wiki/%E4%B8%89%E8%A7%92%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Tercorn_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/29/Tercorn_egg.gif/revision/latest?cb=20190901161503",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1651,
      },
      {
        breed: ["Terrae Dragon", "土壤龙"],
        egg: ["This egg is a lush green hue.", "这颗蛋有绿意盎然的色调。"],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Dragon (Wingless)",
        release_at: "May 26, 2010",
        wiki: ["/wiki/Terrae_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Terrae_egg_1.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/e8/Terrae_egg_1.gif/revision/latest?cb=20140809085417",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 111,
      },
      {
        breed: ["Tetra Dragon", "灯鱼龙"],
        egg: ["This egg has faint markings.", "这颗蛋有著发出微光的花纹。"],
        rarity: "Unknown",
        habitats: ["Coast", "Jungle"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "March 19, 2017",
        wiki: ["/wiki/Tetra_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Tetra_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/f5/Tetra_egg.gif/revision/latest?cb=20170319130559",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1605,
      },
      {
        breed: ["Thunder Dragon", "雷龙"],
        egg: [
          "Whenever you go near this egg, your hair stands on end.",
          "当你靠近这颗蛋时你的头发根根竖立。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "Summon",
        elemental: ["Lightning"],
        morphology: "Dragon (Western)",
        release_at: "November 22, 2009",
        wiki: ["/wiki/Thunder_Dragon", "/zh/wiki/%E9%9B%B7%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Thunder_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/bb/Thunder_egg.gif/revision/latest?cb=20100327194233",
          ],
        },
        price: "2,700 - 3,700 shards",
        encyclopedia_id: 0,
      },
      {
        breed: ["Thundersnow Dragon", ""],
        egg: [
          "Cold lightning arcs out from this egg’s shell if you try to touch it.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "Adventure",
        elemental: ["Ice", "Lightning"],
        morphology: "Dragon (Eastern)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Thundersnow_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Thundersnow_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d5/Thundersnow_egg.gif/revision/latest?cb=20220521040331",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1720,
      },
      {
        breed: ["Tideweaver Lindwyrm", ""],
        egg: [
          "This egg has vivid red stripes, reminiscent of waves and flames at once.",
          "",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "September 8, 2013",
        wiki: ["/wiki/Tideweaver_Lindwyrm", ""],
        sprites: {
          egg: [
            "",
            "Tideweaver_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/dc/Tideweaver_egg.gif/revision/latest?cb=20210508085022",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 113,
      },
      {
        breed: ["Tinsel Dragon", ""],
        egg: ["This egg is very reflective, almost metallic looking.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Tinsel_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Gold_Tinsel_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/94/Gold_Tinsel_egg.gif/revision/latest?cb=20110213202727",
          ],
        },
      },
      {
        breed: ["Tri-Horn Wyvern", "三角翼龙"],
        egg: [
          "This brown egg is covered in intricate designs.",
          "这颗棕色的蛋覆盖在错综复杂的纹样下。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Wyvern)",
        release_at: "November 23, 2012",
        wiki: ["/wiki/Tri-Horn_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Tri-Horn_Wyvern_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/5/51/Tri-Horn_Wyvern_egg.png/revision/latest?cb=20121123081638",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 114,
      },
      {
        breed: ["Tsunami Wyvern", "海啸翼龙"],
        egg: [
          "This egg is rocking back and forth in a puddle, creating small waves.",
          "这颗蛋在水坑里摇摇晃晃,引起了小小的波澜。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Wyvern)",
        release_at: "May 22, 2012",
        wiki: ["/wiki/Tsunami_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Tsunami_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a9/Tsunami_Wyvern_egg.gif/revision/latest?cb=20120522052309",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 115,
      },
      {
        breed: ["Turpentine Dragon", "松节油龙"],
        egg: [
          "This egg smells strongly of turpentine.",
          "这颗蛋闻起来有浓烈的松节油气味。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "April 25, 2012",
        wiki: ["/wiki/Turpentine_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Turpentine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/2d/Turpentine_egg.png/revision/latest?cb=20120425065122",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 116,
      },
      {
        breed: ["Two-Finned Bluna", "双鳍布鲁纳"],
        egg: ["This egg has colored speckles on it.", "这颗蛋有彩色的斑纹。"],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Amphiptere)",
        release_at: "January 15, 2010",
        wiki: ["/wiki/Two-Finned_Bluna", ""],
        sprites: {
          egg: [
            "",
            "Two-Finned_Bluna_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/7c/Two-Finned_Bluna_egg.gif/revision/latest?cb=20100116232848",
          ],
        },
        price: "N/A",
        encyclopedia_id: 12,
      },
      {
        breed: ["Ultraviolet Dragon", "紫外光龙"],
        egg: [
          "This egg is very warm, as if it has been sitting out in strong sunlight.",
          "这颗蛋非常温暖,仿佛一直位于强烈的阳光下。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "May 22, 2012",
        wiki: [
          "/wiki/Ultraviolet_Dragon",
          "/zh/wiki/%E7%B4%AB%E5%A4%96%E5%85%89%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Ultraviolet_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/4f/Ultraviolet_egg.gif/revision/latest?cb=20120522051151",
          ],
        },
        price: "N/A",
        encyclopedia_id: 118,
      },
      {
        breed: ["Undine Dragon", "温蒂妮龙"],
        egg: [
          "There is a thin layer of moisture coating this egg.",
          "这颗蛋被一层薄薄的水膜包裹。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Alpine"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Western)",
        release_at: "August 2, 2014",
        wiki: ["/wiki/Undine_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Undine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b8/Undine_egg.png/revision/latest?cb=20140802171030",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 119,
      },
      {
        breed: ["Vampire Dragon", "吸血龙"],
        egg: [
          "This egg is stone cold and smells rotten.",
          "这颗蛋冰冷而且有腐臭味。",
        ],
        rarity: "Unknown",
        habitats: ["Unknown (Limited release)"],
        bsa: "Bite",
        elemental: ["Death"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2008",
        wiki: ["/wiki/Vampire_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Vampire_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0a/Vampire_egg.gif/revision/latest?cb=20100401052333",
          ],
        },
        price: "N/A",
        encyclopedia_id: 126,
      },
      {
        breed: ["Venturis Dragon", "文丘里斯龙"],
        egg: [
          "An aura of serenity surrounds this iridescent egg.",
          "宁静的氛围环绕在这颗虹蛋四周。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Dragon (Eastern)",
        release_at: "April 26, 2020",
        wiki: [
          "/wiki/Venturis_Dragon",
          "/zh/wiki/%E6%96%87%E4%B8%98%E9%87%8C%E6%96%AF%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Venturis_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a4/Venturis_egg.gif/revision/latest?cb=20200426040653",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1668,
      },
      {
        breed: ["Water Dragon", "水龙"],
        egg: [
          "This egg is sitting in a shallow puddle.",
          "这颗蛋位于一个浅浅的水坑中。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Sea serpent)",
        release_at: "May 31, 2007",
        wiki: ["/wiki/Water_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Water_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1d/Water_egg.gif/revision/latest?cb=20100326233452",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 63,
      },
      {
        breed: ["Water Walker Dragon", "水行龙"],
        egg: [
          "This egg seems to be floating on a puddle.",
          "这颗蛋似乎漂浮在水坑上。",
        ],
        rarity: "Unknown",
        habitats: ["Coast", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Wingless)",
        release_at: "August 25, 2009",
        wiki: ["/wiki/Water_Walker_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Water_Walker_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d7/Water_Walker_egg.gif/revision/latest?cb=20100327001313",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 128,
      },
      {
        breed: ["Waterhorse Dragon", "水马龙"],
        egg: ["This egg is slimy and blue.", "这颗蛋又光滑又蓝。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Dragon (Wingless)",
        release_at: "August 25, 2009",
        wiki: ["/wiki/Waterhorse_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Waterhorse_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fc/Waterhorse_egg.gif/revision/latest?cb=20090826054221",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 127,
      },
      {
        breed: ["Whiptail Dragon", "鞭尾龙"],
        egg: [
          "This egg shakes from time to time, as if it is eager to hatch.",
          "这颗蛋不时地摇摆,似乎渴望孵化。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "April 22, 2009",
        wiki: ["/wiki/Whiptail_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Whiptail_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/12/Whiptail_egg.gif/revision/latest?cb=20100327001427",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 129,
      },
      {
        breed: ["White Dragon", "白龙"],
        egg: [
          "This egg has a very clean look; it’s completely devoid of dirt and scratches.",
          "这颗蛋看起来非常洁净,没有一点污垢和划痕。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "Ward",
        elemental: ["Life", "Light"],
        morphology: "Dragon (Western)",
        release_at: "May 21, 2006",
        wiki: ["/wiki/White_Dragon", ""],
        sprites: {
          egg: [
            "",
            "White_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b8/White_egg.gif/revision/latest?cb=20100326232036",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 130,
      },
      {
        breed: ["Wisteria Dragon", ""],
        egg: ["This egg is surrounded by beautiful flowers.", ""],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Wingless)",
        release_at: "March 28, 2022",
        wiki: ["/wiki/Wisteria_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Wisteria_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/98/Wisteria_egg.gif/revision/latest?cb=20220328045632",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1710,
      },
      {
        breed: ["Umbra Xenowyrm", "塔拉萨异形蛇龙"],
        egg: [
          "Mana courses throughout this glassy egg.",
          "魔力从这玻璃般的蛋散发出来。",
        ],
        rarity: "Unknown",
        habitats: [
          "Alpine",
          "Coast",
          "Alpine",
          "Forest",
          "Jungle",
          "Volcano",
          "Desert",
          "Forest",
          "Desert",
          "Volcano",
          "Coast",
          "Jungle",
        ],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Wyrm)",
        release_at: "June 27, 2020",
        wiki: [
          "/wiki/Aquilo_Xenowyrm",
          "/zh/wiki/%E5%A1%94%E6%8B%89%E8%96%A9%E7%95%B0%E5%BD%A2%E8%9B%87%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Aquilo_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1a/Aquilo_egg.gif/revision/latest?cb=20200627063340",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1686,
      },
      {
        breed: ["Aso Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Aso_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Aso_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/44/Aso_egg.gif/revision/latest?cb=20200627064700",
          ],
        },
      },
      {
        breed: ["Astrapi Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Astrapi_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Astrapi_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/48/Astrapi_egg.gif/revision/latest?cb=20150627180046",
          ],
        },
      },
      {
        breed: ["Chrono Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Chrono_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Chrono_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/ba/Chrono_egg.gif/revision/latest?cb=20150627180111",
          ],
        },
      },
      {
        breed: ["Gaia Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Gaia_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Gaia_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c5/Gaia_Xenowyrm_egg.gif/revision/latest?cb=20150627180116",
          ],
        },
      },
      {
        breed: ["Ke’maro Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Ke%E2%80%99maro_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Ke%27maro_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/94/Ke%27maro_Xenowyrm_egg.gif/revision/latest?cb=20200627065137",
          ],
        },
      },
      {
        breed: ["Mageia Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Mageia_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Mageia_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/ad/Mageia_Xenowyrm_egg.gif/revision/latest?cb=20150627180103",
          ],
        },
      },
      {
        breed: ["Obidar Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Obidar_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Obidar_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/e0/Obidar_Xenowyrm_egg.gif/revision/latest?cb=20200627065437",
          ],
        },
      },
      {
        breed: ["Pharos Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Pharos_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Pharos_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fd/Pharos_Xenowyrm_egg.gif/revision/latest?cb=20200627064814",
          ],
        },
      },
      {
        breed: ["Pyro Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Pyro_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Pyro_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/e4/Pyro_Xenowyrm_egg.gif/revision/latest?cb=20150627180121",
          ],
        },
      },
      {
        breed: ["Staterae Xenowyrm", ""],
        egg: ["Mana flows like a current through this glassy egg.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Wyrm)",
        release_at: "June 27, 2020",
        wiki: ["/wiki/Staterae_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Staterae_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/00/Staterae_Xenowyrm_egg.gif/revision/latest?cb=20200627065901",
          ],
        },
        price: "1,400 - 5,700 shards",
        encyclopedia_id: 1689,
      },
      {
        breed: ["Thalassa Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Rare",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Thalassa_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Thalassa_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/89/Thalassa_Xenowyrm_egg.gif/revision/latest?cb=20150627180055",
          ],
        },
      },
      {
        breed: ["Umbra Xenowyrm", ""],
        egg: ["Mana courses throughout this glassy egg.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Umbra_Xenowyrm", ""],
        sprites: {
          egg: [
            "",
            "Umbra_Xenowyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/5f/Umbra_Xenowyrm_egg.gif/revision/latest?cb=20200627065006",
          ],
        },
      },
      {
        breed: ["Xol Dragon", "柯索龙"],
        egg: [
          "This dull egg feels cozily warm.",
          "这颗色彩不鲜明蛋让人感到舒适温和。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: ["Fire", "Water"],
        morphology: "Dragon (Wingless)",
        release_at: "April 26, 2020",
        wiki: ["/wiki/Xol_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Xol_blue_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/76/Xol_blue_egg.gif/revision/latest?cb=20200426040352",
          ],
        },
        price: "100 - 200 shards",
        encyclopedia_id: 1675,
      },
      {
        breed: ["Yellow-Crowned Dragon", "黄冠龙"],
        egg: [
          "The air shimmers around this egg, as if from heat.",
          "这颗蛋周遭的空气摇晃扭曲,仿佛蜃气楼。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "September 8, 2013",
        wiki: ["/wiki/Yellow-Crowned_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Yellow-Crowned_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/06/Yellow-Crowned_egg.gif/revision/latest?cb=20130908041618",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 103,
      },
      {
        breed: ["Zyumorph", "赛尔莫夫龙"],
        egg: [
          "This shiny egg seems to radiate power.",
          "这颗闪亮的蛋似乎正放射出能量。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "Summon",
        elemental: ["Neutral"],
        morphology: "Dragon (Western, see trivia)",
        release_at: "May 21, 2017",
        wiki: [
          "/wiki/Zyumorph",
          "/zh/wiki/%E8%B3%BD%E7%88%BE%E8%8E%AB%E5%A4%AB%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Zyumorph_alpine_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/8/86/Zyumorph_alpine_egg.png/revision/latest?cb=20170521115306",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1607,
      },
      {
        breed: ["Baikala Dragon", "贝加尔龙"],
        egg: [
          "This heavy egg has a soft, yielding shell.",
          "这颗沉重的蛋外壳柔软。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle (green); Coast (blue)"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Two-headed Dragon (Sea serpent)",
        release_at: "July 17, 2017",
        wiki: ["/wiki/Baikala_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Baikala_blue_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d5/Baikala_blue_egg.gif/revision/latest?cb=20170718093722",
          ],
        },
        price: "600 - 700 shards",
        encyclopedia_id: 1614,
      },
      {
        breed: ["Bauta Dragon", "假面龙"],
        egg: [
          "This egg has raised golden ridges.",
          "这颗蛋上有著金色浮雕般的隆起。",
        ],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: [],
        morphology: "Two-headed dragon (Western)",
        release_at: "September 30, 2017",
        wiki: ["/wiki/Bauta_Dragon", "/zh/wiki/Bauta_Dragon"],
        sprites: {
          egg: [
            "",
            "Bauta_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/74/Bauta_egg.gif/revision/latest?cb=20170930230350",
          ],
        },
        price: "400 - 600 shards",
        encyclopedia_id: 1623,
      },
      {
        breed: ["Blancblack Dragon", "白黑龙"],
        egg: [
          "This egg is dark with light speckles...or maybe it’s light with dark speckles?",
          "这颗深色的蛋上有浅色斑点……还是浅色蛋上有暗色斑点呢?",
        ],
        rarity: "Unknown",
        habitats: ["Desert", "Forest", "Volcano"],
        bsa: "",
        elemental: ["Light", "Dark"],
        morphology: "Two-headed dragon (Eastern)",
        release_at: "March 10, 2019",
        wiki: [
          "/wiki/Blancblack_Dragon",
          "/zh/wiki/%E7%99%BD%E9%BB%91%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Blancblack_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1c/Blancblack_egg.gif/revision/latest?cb=20190310101620",
          ],
        },
        price: "400 - 700 shards",
        encyclopedia_id: 1644,
      },
      {
        breed: ["Ciriax Lindwyrm", "双头鳞龙"],
        egg: [
          "This opalescent egg shimmers in the moonlight.",
          "这种发着乳白色光的蛋在月光下闪闪发光。",
        ],
        rarity: "Unknown",
        habitats: ["Forest (green)", "Alpine (blue)"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Two-headed dragon (Lindwyrm)",
        release_at: "August 4, 2013",
        wiki: ["/wiki/Ciriax_Lindwyrm", ""],
        sprites: {
          egg: [
            "",
            "Ciriax_blue_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b3/Ciriax_blue_egg.gif/revision/latest?cb=20210508060318",
          ],
        },
        price: "600 - 800 shards",
        encyclopedia_id: 2,
      },
      {
        breed: ["Duotone Dragon", ""],
        egg: ["This egg can’t seem to make up its mind what color it is.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: [],
        morphology: "Two-headed dragon (Western)",
        release_at: "August 4, 2013",
        wiki: ["/wiki/Duotone_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Duotone_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/d1/Duotone_egg.png/revision/latest?cb=20130804081540",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 35,
      },
      {
        breed: ["Geminae Dragon", "双子龙"],
        egg: [
          "This shiny egg gives you a headache when you get close.",
          "你靠近这颗发著光的蛋就头痛。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Two-headed dragon (Western)",
        release_at: "May 21, 2019",
        wiki: ["/wiki/Geminae_Dragon", "/zh/wiki/%E9%9B%99%E5%AD%90%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Geminae_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/45/Geminae_egg.gif/revision/latest?cb=20190521040458",
          ],
        },
        price: "200 - 400 shards",
        encyclopedia_id: 1657,
      },
      {
        breed: ["Ghanser Dragon", ""],
        egg: ["This egg has spots that glow brightly when touched.", ""],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Two-headed dragon (Wyvern)",
        release_at: "April 24, 2022",
        wiki: ["/wiki/Ghanser_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Ghanser_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/2f/Ghanser_egg.gif/revision/latest?cb=20220424040126",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1713,
      },
      {
        breed: ["Gilded Bloodscale Dragon", "镀金血鳞龙"],
        egg: [
          "This egg glitters oddly in the light.",
          "这颗蛋在光下奇异地闪烁。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: [],
        morphology: "Two-headed dragon (Western)",
        release_at: "May 23, 2013",
        wiki: ["/wiki/Gilded_Bloodscale_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Gilded_Bloodscale_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/9e/Gilded_Bloodscale_egg.gif/revision/latest?cb=20130523040507",
          ],
        },
        price: "900 - 1,100 shards",
        encyclopedia_id: 10,
      },
      {
        breed: ["Hooktalon Dragon", "勾爪龙"],
        egg: [
          "The surface of this egg is rough and sharp.",
          "蛋的表面又粗糙又尖锐。",
        ],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: [],
        morphology: "Two-headed dragon (Western)",
        release_at: "May 21, 2015",
        wiki: ["/wiki/Hooktalon_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Hooktalon_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/bb/Hooktalon_egg.png/revision/latest?cb=20150521041533",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1591,
      },
      {
        breed: ["Jester Dragon", ""],
        egg: ["This egg has a checkered shell.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Two-headed dragon (Western)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Jester_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Jester_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/75/Jester_egg.png/revision/latest?cb=20200521040353",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1679,
      },
      {
        breed: ["Magnesium Amphiptere", ""],
        egg: ["This shiny grey egg smells of burnt metal.", ""],
        rarity: "Unknown",
        habitats: ["Desert (brown variant)", "Volcano (grey variant)"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Two-headed dragon (Amphiptere)",
        release_at: "April 25, 2021",
        wiki: ["/wiki/Magnesium_Amphiptere", ""],
        sprites: {
          egg: [
            "",
            "Magnesium_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/8d/Magnesium_egg.gif/revision/latest?cb=20210425121438",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1694,
      },
      {
        breed: ["Nexus Dragon", "连龙"],
        egg: [
          "This dense, crystalline egg seems dangerously unstable.",
          "这颗高密度、如结晶般的蛋看起来极为不稳定。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine", "Volcano"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Two-headed dragon (Western)",
        release_at: "May 21, 2016",
        wiki: ["/wiki/Nexus_Dragon", "/zh/wiki/%E9%80%A3%E9%BE%8D"],
        sprites: {
          egg: [
            "",
            "Nexus_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/f/f8/Nexus_egg.png/revision/latest?cb=20160521092956",
          ],
        },
        price: "1,500 - 1,800 shards",
        encyclopedia_id: 172,
      },
      {
        breed: ["Scourgekeeper Dragon", ""],
        egg: ["You feel a clawing dread the closer you get to this egg.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Must be allied after an Adventure)"],
        bsa: "",
        elemental: ["Time", "Life"],
        morphology: "Two-headed dragon (Eastern)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Scourgekeeper_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Scourgekeeper_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/1/11/Scourgekeeper_egg.png/revision/latest?cb=20220521040209",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1719,
      },
      {
        breed: ["Split Dragon", "分龙"],
        egg: [
          "This egg is split down the middle into two colors.",
          "这颗蛋从中间分成两个颜色。",
        ],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Two-headed dragon (Western)",
        release_at: "October 12, 2007",
        wiki: ["/wiki/Split_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Split_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0a/Split_egg.gif/revision/latest?cb=20100327194305",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1,
      },
      {
        breed: ["Temple Wyrm", ""],
        egg: ["This egg has a winding pattern on it.", ""],
        rarity: "Unknown",
        habitats: ["Desert", "Jungle"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Two-headed dragon (Wyrm)",
        release_at: "July 25, 2021",
        wiki: ["/wiki/Temple_Wyrm", ""],
        sprites: {
          egg: [
            "",
            "Temple_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/41/Temple_egg.gif/revision/latest?cb=20210725040132",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1700,
      },
      {
        breed: ["Avea Pygmy", "阿维亚侏儒龙"],
        egg: ["This tiny egg is rather light.", "这个小蛋很轻。"],
        rarity: "Normal",
        habitats: ["All Habitats (Rotating)"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Pygmy Dragon (Western)",
        release_at: "June 30, 2019",
        wiki: [
          "/wiki/Avea_Pygmy",
          "/zh/wiki/%E9%98%BF%E7%B6%AD%E4%BA%9E%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Avea_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/95/Avea_egg.gif/revision/latest?cb=20190630212602",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 178,
      },
      {
        breed: ["Avin Pygmy", ""],
        egg: ["This tiny white egg shakes sometimes.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Pygmy dragon (Wyvern)",
        release_at: "March 28, 2022",
        wiki: ["/wiki/Avin_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Avin_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/ba/Avin_egg.gif/revision/latest?cb=20220328045607",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1712,
      },
      {
        breed: ["Common Pygmy", "侏儒龙"],
        egg: [
          "This egg is so tiny you almost didn’t see it.",
          "这颗蛋太小了以至于你几乎没有看到它。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle", "Alpine"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy dragon (Western)",
        release_at: "July 15, 2009",
        wiki: ["/wiki/Common_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Common_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d1/Common_Pygmy_egg.gif/revision/latest?cb=20100327182554",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 88,
      },
      {
        breed: ["Coral Pygmy Wyvern", "珊瑚侏儒翼龙"],
        egg: [
          "This tiny egg is striped and feels coarse.",
          "这颗有条纹的小蛋感觉很粗糙。",
        ],
        rarity: "Normal",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water"],
        morphology: "Pygmy dragon (Wyvern)",
        release_at: "September 1, 2019",
        wiki: [
          "/wiki/Coral_Pygmy_Wyvern",
          "/zh/wiki/%E7%8F%8A%E7%91%9A%E4%BE%8F%E5%84%92%E7%BF%BC%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Coral_Pygmy_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/4f/Coral_Pygmy_Wyvern_egg.gif/revision/latest?cb=20190901161524",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1645,
      },
      {
        breed: ["Crimson Flare Pygmy", "红火侏儒龙"],
        egg: [
          "This egg is tiny and brightly colored.",
          "这颗蛋很小并有明亮的颜色。",
        ],
        rarity: "Unknown",
        habitats: ["Volcano"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy dragon (Western)",
        release_at: "May 21, 2011",
        wiki: ["/wiki/Crimson_Flare_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Crimson_Flare_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/bf/Crimson_Flare_Pygmy_egg.gif/revision/latest?cb=20110521085052",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 83,
      },
      {
        breed: ["Dusk Pygmy", "薄暮侏儒龙"],
        egg: ["This tiny egg is cold to the touch.", "这颗娇小的蛋触手冰凉。"],
        rarity: "NotNormal",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy dragon (Western)",
        release_at: "June 25, 2017",
        wiki: [
          "/wiki/Dusk_Pygmy",
          "/zh/wiki/%E8%96%84%E6%9A%AE%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Dusk_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/21/Dusk_Pygmy_egg.gif/revision/latest?cb=20170625075013",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1609,
      },
      {
        breed: ["Furor Pygmy", ""],
        egg: ["Grabbing this tiny egg makes you feel reckless.", ""],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "Adventure",
        elemental: [],
        morphology: "Pygmy dragon (Wingless)",
        release_at: "May 21, 2022",
        wiki: ["/wiki/Furor_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Furor_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ec/Furor_egg.png/revision/latest?cb=20220521040224",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1716,
      },
      {
        breed: ["Glowback Pygmy", "曜背侏儒龙"],
        egg: ["This tiny egg gives off a colorful glow.", "这颗小蛋闪著彩光。"],
        rarity: "Normal",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Pygmy dragon (Western)",
        release_at: "July 21, 2019",
        wiki: [
          "/wiki/Glowback_Pygmy",
          "/zh/wiki/%E6%9B%9C%E8%83%8C%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Glowback_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/ca/Glowback_Pygmy_egg.gif/revision/latest?cb=20190721045310",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1646,
      },
      {
        breed: ["Kovos Pygmy", "克伏弑侏儒龙"],
        egg: [
          "This tiny, dark egg fills you with existential dread.",
          "这颗深色小蛋使你充满畏惧。",
        ],
        rarity: "Normal",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Water", "Death"],
        morphology: "Pygmy (Lindwyrm)",
        release_at: "May 21, 2019",
        wiki: [
          "/wiki/Kovos_Pygmy",
          "/zh/wiki/%E5%85%8B%E4%BC%8F%E5%BC%92%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Kovos_Pygmy_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/a/ae/Kovos_Pygmy_egg.png/revision/latest?cb=20190521040423",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1655,
      },
      {
        breed: ["Kyanite Pygmy", "蓝晶石侏儒龙"],
        egg: [
          "This tiny cobalt egg has a crystalline sheen.",
          "这颗钴蓝色的小蛋有著结晶的光泽。",
        ],
        rarity: "NotNormal",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Pygmy (Eastern)",
        release_at: "August 21, 2016",
        wiki: [
          "/wiki/Kyanite_Pygmy",
          "/zh/wiki/%E8%97%8D%E6%99%B6%E7%9F%B3%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Kyanite_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/a/a8/Kyanite_Pygmy_egg.gif/revision/latest?cb=20160821113518",
          ],
        },
        price: "600 - 700 shards",
        encyclopedia_id: 1600,
      },
      {
        breed: ["Magelight Pygmy", "魔光侏儒龙"],
        egg: [
          "This small egg is engulfed in a cool, purple flame.",
          "这枚小蛋被包裹在清凉的紫色火焰中。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy (Wyvern)",
        release_at: "May 21, 2015",
        wiki: [
          "/wiki/Magelight_Pygmy",
          "/zh/wiki/%E9%AD%94%E5%85%89%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Magelight_Pygmy_Wyvern_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d3/Magelight_Pygmy_Wyvern_egg.gif/revision/latest?cb=20150521041218",
          ],
        },
        price: "300 - 500 shards",
        encyclopedia_id: 1593,
      },
      {
        breed: ["Mariner Pygmy", "水手侏儒龙"],
        egg: ["This tiny egg smells like the sea.", "这颗小蛋闻起来像是大海。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Pygmy (Western)",
        release_at: "April 27, 2019",
        wiki: [
          "/wiki/Mariner_Pygmy",
          "/zh/wiki/%E6%B0%B4%E6%89%8B%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Mariner_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/04/Mariner_egg.gif/revision/latest?cb=20190427192442",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1648,
      },
      {
        breed: ["Mimic Pygmy", "模仿侏儒龙"],
        egg: [
          "This tiny glowing egg tempts you to follow its light.",
          "这颗发光的小蛋诱使你跟著光线走。",
        ],
        rarity: "NotNormal",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Pygmy (Wyvern)",
        release_at: "July 29, 2018",
        wiki: [
          "/wiki/Mimic_Pygmy",
          "/zh/wiki/%E6%A8%A1%E4%BB%BF%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Mimic_Pygmy_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/6/60/Mimic_Pygmy_egg.png/revision/latest?cb=20180729053613",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 181,
      },
      {
        breed: ["Misfit Pygmy", "捣蛋侏儒龙"],
        egg: [
          "This tiny egg has crazy swirls on it.",
          "这颗小蛋上有繁复的漩涡纹。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy (Western)",
        release_at: "May 21, 2011",
        wiki: ["/wiki/Misfit_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Misfit_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/73/Misfit_Pygmy_egg.gif/revision/latest?cb=20110521085150",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 85,
      },
      {
        breed: ["Mistlet Pygmy", "黑雾侏儒龙"],
        egg: ["This tiny egg is mysterious and dark.", "这颗小蛋神秘而黑暗。"],
        rarity: "Unknown",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy dragon (Western)",
        release_at: "May 21, 2011",
        wiki: ["/wiki/Mistlet_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Mistlet_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/9c/Mistlet_egg.gif/revision/latest?cb=20210508061553",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 84,
      },
      {
        breed: ["Nilia Pygmy", "妮莉亚侏儒龙"],
        egg: [
          "This tiny egg is heavier than you expected.",
          "这颗小小的蛋比你预期的要重。",
        ],
        rarity: "Unknown",
        habitats: ["Alpine"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy (Western)",
        release_at: "May 21, 2011May 21, 2021 (Green variant)",
        wiki: ["/wiki/Nilia_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Nilia_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/cb/Nilia_Pygmy_egg.gif/revision/latest?cb=20110521085236",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 86,
      },
      {
        breed: ["Pargulus Pygmy", ""],
        egg: ["This tiny egg resembles a seed.", ""],
        rarity: "Unknown",
        habitats: [
          "Alpine",
          "Coast (blue variant); Desert",
          "Jungle (green variant); Forest",
          "Volcano (red variant)",
        ],
        bsa: "",
        elemental: ["Life"],
        morphology: "Pygmy (Western)",
        release_at: "May 21, 2020",
        wiki: ["/wiki/Pargulus_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Pargulus_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/63/Pargulus_Pygmy_egg.gif/revision/latest?cb=20200521040354",
          ],
        },
        price: "200 - 300 shards",
        encyclopedia_id: 1681,
      },
      {
        breed: ["Pipio Pygmy", "咕啾侏儒龙"],
        egg: [
          "This little egg is soft with a few feathers stuck to it.",
          "这颗轻柔的蛋上黏了些羽毛。",
        ],
        rarity: "NotNormal",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Pygmy (Western)",
        release_at: "September 30, 2018",
        wiki: [
          "/wiki/Pipio_Pygmy",
          "/zh/wiki/%E5%92%95%E5%95%BE%E4%BE%8F%E5%84%92%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Pipio_Pygmy_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1b/Pipio_Pygmy_egg.gif/revision/latest?cb=20180930222118",
          ],
        },
        price: "300 - 500 shards",
        encyclopedia_id: 182,
      },
      {
        breed: ["Red-Tailed Wyrm", "红尾长龙"],
        egg: [
          "This tiny egg has a bold red streak on it.",
          "这颗小蛋上面有道醒目的红色凸起。",
        ],
        rarity: "NotNormal",
        habitats: ["Desert", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Pygmy Dragon (Wyrm)",
        release_at: "April 22, 2018",
        wiki: [
          "/wiki/Red-Tailed_Wyrm_Pygmy",
          "/zh/wiki/%E7%B4%85%E5%B0%BE%E9%95%B7%E9%BE%8D",
        ],
        sprites: {
          egg: [
            "",
            "Red-Tailed_Wyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/31/Red-Tailed_Wyrm_egg.gif/revision/latest?cb=20180422064034",
          ],
        },
        price: "300 - 400 shards",
        encyclopedia_id: 1615,
      },
      {
        breed: ["Scymrian Pygmy", ""],
        egg: ["This tiny egg flashes in the sunlight.", ""],
        rarity: "Unknown",
        habitats: ["All habitats"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Pygmy (Western)",
        release_at: "September 26, 2021",
        wiki: ["/wiki/Scymrian_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Scymrian_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/7/7d/Scymrian_egg.gif/revision/latest?cb=20210926040139",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1695,
      },
      {
        breed: ["Seawyrm Pygmy", "侏儒海龙"],
        egg: ["This tiny egg shines like a pearl.", "这颗小蛋有珍珠的光泽。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy dragon (Lindwyrm)",
        release_at: "May 21, 2011",
        wiki: ["/wiki/Seawyrm_Pygmy", ""],
        sprites: {
          egg: [
            "",
            "Seawyrm_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/4/4e/Seawyrm_egg.gif/revision/latest?cb=20210508061820",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 87,
      },
      {
        breed: ["Glaucus Drake", "海神德雷克"],
        egg: ["This striped egg feels moist.", "这颗条纹蛋感觉很潮湿。"],
        rarity: "Unknown",
        habitats: ["Coast"],
        bsa: "",
        elemental: [],
        morphology: "Drake",
        release_at: "April 6, 2014",
        wiki: ["/wiki/Glaucus_Drake", ""],
        sprites: {
          egg: [
            "",
            "Glaucus_Drake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/30/Glaucus_Drake_egg.png/revision/latest?cb=20160522045206",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 460,
      },
      {
        breed: ["Greater Spotted Drake", "大斑德雷克"],
        egg: [
          "This egg is speckled with rosette-like markings.",
          "这颗蛋布满了玫瑰花纹般的班点。",
        ],
        rarity: "Normal",
        habitats: ["Forest"],
        bsa: "",
        elemental: [],
        morphology: "Drake",
        release_at: "May 21, 2015",
        wiki: [
          "/wiki/Greater_Spotted_Drake",
          "/zh/wiki/%E5%A4%A7%E6%96%91%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Greater_Spotted_Drake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/07/Greater_Spotted_Drake_egg.png/revision/latest?cb=20160522045209",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1590,
      },
      {
        breed: ["Honey Drake", "蜂蜜德雷克"],
        egg: [
          "This egg is covered in tiny golden scales.",
          "这颗蛋布满小小的黄金麟片。",
        ],
        rarity: "NotNormal",
        habitats: ["Coast", "Forest", "Jungle"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Drake",
        release_at: "November 26, 2016",
        wiki: [
          "/wiki/Honey_Drake",
          "/zh/wiki/%E8%9C%82%E8%9C%9C%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Honey_Drake_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/06/Honey_Drake_egg.gif/revision/latest?cb=20161126214544",
          ],
        },
        price: "400 - 500 shards",
        encyclopedia_id: 1597,
      },
      {
        breed: ["Howler Drake", "咆啸德雷克"],
        egg: [
          "You hear strange noises coming from inside this egg.",
          "你听到奇怪的声音从这颗蛋里传出。",
        ],
        rarity: "Unknown",
        habitats: ["Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Drake",
        release_at: "April 6, 2014",
        wiki: ["/wiki/Howler_Drake", ""],
        sprites: {
          egg: [
            "",
            "Howler_Drake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/3e/Howler_Drake_egg.png/revision/latest?cb=20160522045209",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 1042,
      },
      {
        breed: ["Sunbeam Drake", "夜耀德雷克"],
        egg: [
          "This egg displays the colors of both dawn and dusk.",
          "这颗蛋呈现出昼与夜的颜色。",
        ],
        rarity: "Unknown",
        habitats: ["Forest", "Forest"],
        bsa: "",
        elemental: [],
        morphology: "Drake",
        release_at: "May 26, 2010",
        wiki: ["/wiki/Moonglow_Drake", ""],
        sprites: {
          egg: [
            "",
            "Sunbeam_Moonglow_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/2b/Sunbeam_Moonglow_egg.gif/revision/latest?cb=20210508062910",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 44,
      },
      {
        breed: ["Morphodrake", "闪蝶德雷克"],
        egg: [
          "A few bright markings decorate this egg’s shell.",
          "有些亮眼的斑点装饰了这颗蛋的壳。",
        ],
        rarity: "Normal",
        habitats: ["Jungle"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Drake",
        release_at: "May 21, 2016",
        wiki: [
          "/wiki/Morphodrake",
          "/zh/wiki/%E9%96%83%E8%9D%B6%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Morphodrake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/3d/Morphodrake_egg.png/revision/latest?cb=20160521092957",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 170,
      },
      {
        breed: ["Ochredrake", ""],
        egg: ["This egg has strange markings on it.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Ochredrake", ""],
        sprites: {
          egg: [
            "",
            "Ochredrake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/3/34/Ochredrake_egg.png/revision/latest?cb=20160522045210",
          ],
        },
      },
      {
        breed: ["Pseudo-wyvern Drake", ""],
        egg: ["It almost looks like there are claw marks on this egg.", ""],
        rarity: "Unknown",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Drake",
        release_at: "July 26, 2020",
        wiki: ["/wiki/Pseudo-wyvern_Drake", ""],
        sprites: {
          egg: [
            "",
            "Pseudo-wyvern_Drake_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/18/Pseudo-wyvern_Drake_egg.gif/revision/latest?cb=20200726040115",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1665,
      },
      {
        breed: ["Sabertooth Bull Drake", ""],
        egg: ["This striped egg is surprisingly heavy.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sabertooth_Bull_Drake", ""],
        sprites: {
          egg: [
            "",
            "Sabertooth_Bull_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/5/5e/Sabertooth_Bull_egg.png/revision/latest?cb=20210627040316",
          ],
        },
      },
      {
        breed: ["Spotted Teal Drake", ""],
        egg: ["You almost didn’t see this egg among the plants.", ""],
        rarity: "Unknown",
        habitats: ["Unknown (Hybrid)"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Drake",
        release_at: "June 27, 2021",
        wiki: ["/wiki/Spotted_Teal_Drake", ""],
        sprites: {
          egg: [
            "",
            "Spotted_Teal_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/39/Spotted_Teal_egg.gif/revision/latest?cb=20210627040258",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1698,
      },
      {
        breed: ["Sunbeam Drake", ""],
        egg: ["This egg displays the colors of both dawn and dusk.", ""],
        rarity: "Unknown",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sunbeam_Drake", ""],
        sprites: {
          egg: [
            "",
            "Sunbeam_Moonglow_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/2b/Sunbeam_Moonglow_egg.gif/revision/latest?cb=20210508062910",
          ],
        },
      },
      {
        breed: ["Tarantula Hawk Drake", "沙漠蛛蜂德雷克"],
        egg: [
          "A delicate web-like pattern decorates this egg’s shell.",
          "精致的网状图案妆点了这颗蛋的壳。",
        ],
        rarity: "Normal",
        habitats: ["Desert"],
        bsa: "",
        elemental: ["Earth"],
        morphology: "Drake",
        release_at: "May 21, 2016",
        wiki: [
          "/wiki/Tarantula_Hawk_Drake",
          "/zh/wiki/%E6%B2%99%E6%BC%A0%E8%9B%9B%E8%9C%82%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Tarantula_Hawk_Drake_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/dc/Tarantula_Hawk_Drake_egg.png/revision/latest?cb=20160521092957",
          ],
        },
        price: "100 shards",
        encyclopedia_id: 171,
      },
      {
        breed: ["Tatterdrake", "碎裂德雷克"],
        egg: ["This egg has a rough shell.", "这颗蛋有著粗糙的壳。"],
        rarity: "NotNormal",
        habitats: ["Forest", "Jungle"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Drake",
        release_at: "April 22, 2018",
        wiki: [
          "/wiki/Tatterdrake",
          "/zh/wiki/%E7%A2%8E%E8%A3%82%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Tatterdrake_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/5/59/Tatterdrake_egg.gif/revision/latest?cb=20180422064035",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1622,
      },
      {
        breed: ["Vremya Drake", "时间德雷克"],
        egg: [
          "This smooth green egg looks vaguely familiar.",
          "这颗平滑的绿蛋似曾相识。",
        ],
        rarity: "Unknown",
        habitats: ["Forest"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Drake",
        release_at: "May 21, 2019",
        wiki: [
          "/wiki/Vremya_Drake",
          "/zh/wiki/%E6%99%82%E9%96%93%E5%BE%B7%E9%9B%B7%E5%85%8B",
        ],
        sprites: {
          egg: [
            "",
            "Vremya_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0e/Vremya_egg.gif/revision/latest?cb=20190521040514",
          ],
        },
        price: "200 shards",
        encyclopedia_id: 1653,
      },
      {
        breed: ["Diplodocus carnegiiYellow Dino", "黄恐龙"],
        egg: [
          "This egg looks like it doesn’t belong; it is brightly colored with white spots. It’s much heavier than the other eggs.",
          "这颗蛋看起来不属于这里;它颜色鲜亮并有白色斑点。它比其他的蛋重很多。",
        ],
        rarity: "Other",
        habitats: ["Jungle", "Jungle", "Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Non-dragon",
        release_at: "June 19, 2007",
        wiki: ["/wiki/Blue_Dino", ""],
        sprites: {
          egg: [
            "",
            "Blue_Dino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/be/Blue_Dino_egg.gif/revision/latest?cb=20100327002132",
          ],
        },
        price: "1,800 - 2,400 shards",
        encyclopedia_id: 135,
      },
      {
        breed: ["Cheese Dragon", "起司龙"],
        egg: [
          "This egg is soft and smells uncannily like cheese.",
          "这颗蛋是柔软的而且气味与乳酪惊人地相似。",
        ],
        rarity: "Other",
        habitats: ["All habitats"],
        bsa: "",
        elemental: [],
        morphology: "Enchanted construct (Western)",
        release_at: "July 15, 2009",
        wiki: ["/wiki/Cheese_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Cheese_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/d/d0/Cheese_egg.gif/revision/latest?cb=20201125144616",
          ],
        },
        price: "2,000 - 2,600 shards",
        encyclopedia_id: 19,
      },
      {
        breed: ["Gallus gallus domesticusChicken", "鸡"],
        egg: [
          "This egg is much smaller than the others.",
          "这颗蛋比其他的更小。",
        ],
        rarity: "Other",
        habitats: ["All habitats"],
        bsa: "",
        elemental: [],
        morphology: "Chicken",
        release_at: "June 2, 2007",
        wiki: ["/wiki/Chicken", "/zh/wiki/%E9%9B%9E"],
        sprites: {
          egg: [
            "",
            "Chicken_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fc/Chicken_egg.gif/revision/latest?cb=20100328010108",
          ],
        },
        price: "3,100 - 4,200 shards",
        encyclopedia_id: 20,
      },
      {
        breed: ["Parasaurolophus cyrtocristatusGreen Dino", "绿恐龙"],
        egg: [
          "This egg looks like it doesn’t belong; it is brightly colored with white spots.",
          "这颗蛋看起来不属于这里;它颜色鲜亮并有白色斑点。",
        ],
        rarity: "Other",
        habitats: ["Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Non-dragon",
        release_at: "May 21, 2006",
        wiki: ["/wiki/Green_Dino", ""],
        sprites: {
          egg: [
            "",
            "Green_Dino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/3a/Green_Dino_egg.gif/revision/latest?cb=20100326232739",
          ],
        },
        price: "1,500 - 1,900 shards",
        encyclopedia_id: 132,
      },
      {
        breed: ["Paper Dragon", "纸龙"],
        egg: [
          "This egg is tiny and made out of several pieces of paper folded together.",
          "这颗蛋很小,由几张纸叠在一起。",
        ],
        rarity: "Other",
        habitats: ["All habitats"],
        bsa: "",
        elemental: [],
        morphology: "Enchanted construct (Lindwyrm)",
        release_at: "December 3, 2007",
        wiki: ["/wiki/Paper_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Paper_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/1e/Paper_egg.gif/revision/latest?cb=20130420150616",
          ],
        },
        price: "2,200 - 2,800 shards",
        encyclopedia_id: 75,
      },
      {
        breed: ["Purple Dino", ""],
        egg: [
          "This egg looks like it doesn’t belong; it is brightly colored with white spots. It’s much lighter than the other eggs.",
          "",
        ],
        rarity: "Other",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Purple_Dino", ""],
        sprites: {
          egg: [
            "",
            "Purple_Dino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/9/9d/Purple_Dino_egg.gif/revision/latest?cb=20100327003950",
          ],
        },
      },
      {
        breed: ["Stegosaurus stenopsRed Dino", "红恐龙"],
        egg: [
          "This egg looks like it doesn’t belong; it is brightly colored with white spots. It’s much warmer than the rest of the eggs.",
          "这颗蛋看起来不属于这里;它颜色鲜亮并有白色斑点。它比其馀的蛋暖和很多。",
        ],
        rarity: "Other",
        habitats: ["Jungle"],
        bsa: "",
        elemental: [],
        morphology: "Non-dragon",
        release_at: "June 19, 2007",
        wiki: ["/wiki/Red_Dino", ""],
        sprites: {
          egg: [
            "",
            "Red_Dino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c7/Red_Dino_egg.gif/revision/latest?cb=20100327002521",
          ],
        },
        price: "2,000 - 2,500 shards",
        encyclopedia_id: 134,
      },
      {
        breed: ["Yellow Dino", ""],
        egg: [
          "This egg looks like it doesn’t belong; it is brightly colored with white spots. It’s much heavier than the other eggs.",
          "",
        ],
        rarity: "Other",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Yellow_Dino", ""],
        sprites: {
          egg: [
            "",
            "Yellow_Dino_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/ea/Yellow_Dino_egg.gif/revision/latest?cb=20100327004023",
          ],
        },
      },
      {
        breed: ["Valentine Dragon", "瓦伦泰龙"],
        egg: [
          "This egg is speckled and very fragile.",
          "这颗附着着斑点的蛋非常脆弱。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)", "Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2009",
        wiki: ["/wiki/Valentine_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Valentine_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/ba/Valentine_egg.gif/revision/latest?cb=20091226115201",
          ],
        },
        price: "N/A",
        encyclopedia_id: 120,
      },
      {
        breed: ["Sweetling", "甜心龙"],
        egg: ["This egg looks delicate and sweet.", "这颗蛋看起来精致而甜美。"],
        rarity: "Holiday",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Sweetling", ""],
        sprites: {
          egg: [
            "",
            "Sweetling_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/6/68/Sweetling_egg.gif/revision/latest?cb=20100214060518",
          ],
        },
      },
      {
        breed: ["Rosebud Dragon", "玫瑰花蕾龙"],
        egg: [
          "This sweet smelling egg is covered by a ribbon.",
          "这颗甜蜜的蛋系着一根丝带。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Air"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2011",
        wiki: ["/wiki/Rosebud_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Rosebud_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c0/Rosebud_egg.gif/revision/latest?cb=20110214053658",
          ],
        },
        price: "N/A",
        encyclopedia_id: 122,
      },
      {
        breed: ["Heartseeker Dragon", "觅心龙"],
        egg: [
          "This scarlet egg has a faintly sweet aroma.",
          "这深红色的蛋有淡淡的甜香。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2012",
        wiki: ["/wiki/Heartseeker_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Heartseeker_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0f/Heartseeker_egg.gif/revision/latest?cb=20120214050456",
          ],
        },
        price: "N/A",
        encyclopedia_id: 123,
      },
      {
        breed: ["Arsani Dragon", "阿莎妮龙"],
        egg: ["This egg is a deep pink.", "这颗蛋是深粉色的。"],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2013",
        wiki: ["/wiki/Arsani_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Arsani_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c3/Arsani_egg.gif/revision/latest?cb=20130214051557",
          ],
        },
        price: "N/A",
        encyclopedia_id: 124,
      },
      {
        breed: ["Radiant Angel Dragon", "辉煌天使龙"],
        egg: [
          "This radiant white egg has red and gold swirls on it.",
          "这颗发光的白色蛋上有红色与金色的涡形。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2014",
        wiki: ["/wiki/Radiant_Angel_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Radiant_Angel_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/be/Radiant_Angel_egg.png/revision/latest?cb=20140214110806",
          ],
        },
        price: "N/A",
        encyclopedia_id: 125,
      },
      {
        breed: ["Heartstealing Dragon", "偷心龙"],
        egg: [
          "This egg is so shiny it makes you want to take it.",
          "这颗富有光泽的蛋令你忍不住想要将它据为己有。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)", "Unknown (Limited release)"],
        bsa: "",
        elemental: ["Neutral"],
        morphology: "Dragon (Eastern)",
        release_at: "February 14, 2015",
        wiki: ["/wiki/Heartstealing_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Heartstealing_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/c/c1/Heartstealing_egg.png/revision/latest?cb=20150214063338",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1420,
      },
      {
        breed: ["Mutamore Dragon", "穆塔莫龙"],
        egg: [
          "This lovely egg has rolled off to the side.",
          "这颗可爱的蛋滚到一边去了。",
        ],
        rarity: "Holiday",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Mutamore_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Mutamore_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/31/Mutamore_egg.gif/revision/latest?cb=20160214050112",
          ],
        },
      },
      {
        breed: ["Soulstone Dragon", "灵魂石龙"],
        egg: [
          "This deep purple egg shimmers like a pearl.",
          "这颗深紫色的蛋如珍珠般闪烁著。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2017",
        wiki: ["/wiki/Soulstone_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Soulstone_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/df/Soulstone_egg.png/revision/latest?cb=20170219235756",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1604,
      },
      {
        breed: ["Floral-Crowned Dragon", "花冠龙"],
        egg: [
          "This egg has a sweet, floral scent.",
          "这颗蛋散发著甜美的花香。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "February 14, 2018",
        wiki: ["/wiki/Floral-Crowned_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Floral-Crowned_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/f/f4/Floral-Crowned_egg.png/revision/latest?cb=20180214073617",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1626,
      },
      {
        breed: ["Sakuhana Wyvern", "花绽双足翼龙"],
        egg: [
          "This warm egg is surrounded by plants.",
          "这颗温暖的蛋被植物环绕著。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Wyvern)",
        release_at: "February 14, 2019",
        wiki: ["/wiki/Sakuhana_Wyvern", ""],
        sprites: {
          egg: [
            "",
            "Sakuhana_Wyvern_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/0b/Sakuhana_Wyvern_egg.png/revision/latest?cb=20190214082959",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1633,
      },
      {
        breed: ["Erador Lindwyrm", "爱拉托麟龙"],
        egg: [
          "This regal egg feels oddly light.",
          "这颗华丽的蛋轻得令人难以置信。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi", "Life"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "February 14, 2020",
        wiki: ["/wiki/Erador_Lindwyrm", ""],
        sprites: {
          egg: [
            "",
            "Erador_Lindwyrm_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/9/91/Erador_Lindwyrm_egg.png/revision/latest?cb=20200214050129",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1664,
      },
      {
        breed: ["Amarignis Dragon", ""],
        egg: [
          "Dim flames spark up from this egg whenever joy sparks up in you.",
          "",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Light", "Fire"],
        morphology: "Dragon (Eastern)",
        release_at: "February 14, 2021",
        wiki: ["/wiki/Amarignis_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Amarignis_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/8/8b/Amarignis_egg.gif/revision/latest?cb=20210214050111",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1692,
      },
      {
        breed: ["Vermeil Dragon", ""],
        egg: ["This egg smells pleasantly floral, maybe fruity.", ""],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Wyvern)",
        release_at: "February 14, 2022",
        wiki: ["/wiki/Vermeil_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Vermeil_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/f/fd/Vermeil_egg.png/revision/latest?cb=20220214050034",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1709,
      },
      {
        breed: ["Vampire Dragon", ""],
        egg: ["This egg is stone cold and smells rotten.", ""],
        rarity: "Holiday",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Vampire_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Vampire_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/0/0a/Vampire_egg.gif/revision/latest?cb=20100401052333",
          ],
        },
      },
      {
        breed: ["Pumpkin Dragon", "南瓜龙"],
        egg: [
          "This egg smells like the autumn harvest.",
          "这颗蛋闻起来有丰收的味道。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: [],
        morphology: "Pygmy (Western)",
        release_at: "October 31, 2009",
        wiki: ["/wiki/Pumpkin_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pumpkin_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/f/fe/Pumpkin_egg.gif/revision/latest?cb=20101029133918",
          ],
        },
        price: "N/A",
        encyclopedia_id: 52,
      },
      {
        breed: ["Black Marrow Dragon", "黑髓龙"],
        egg: [
          "This egg is covered in a dark crust.",
          "这颗蛋被黑暗的外壳覆盖。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2010",
        wiki: ["/wiki/Black_Marrow", ""],
        sprites: {
          egg: [
            "",
            "Black_Marrow_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/3b/Black_Marrow_egg.gif/revision/latest?cb=20101101062600",
          ],
        },
        price: "N/A",
        encyclopedia_id: 53,
      },
      {
        breed: ["Shadow Walker", "影行龙"],
        egg: ["This egg fades into the shadows.", "这颗蛋湮没在阴影中。"],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2011",
        wiki: ["/wiki/Shadow_Walker", ""],
        sprites: {
          egg: [
            "",
            "Shadow_Walker_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/c/c1/Shadow_Walker_egg.gif/revision/latest?cb=20111031040512",
          ],
        },
        price: "N/A",
        encyclopedia_id: 54,
      },
      {
        breed: ["Cavern Lurker Dragon", "蛰窟龙"],
        egg: [
          "This egg is wedged in a dark corner.",
          "这颗蛋楔在一个黑暗的角落里。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Dark"],
        morphology: "Dragon (Western)",
        release_at: "November 3, 2012",
        wiki: ["/wiki/Cavern_Lurker_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Cavern_Lurker_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b7/Cavern_Lurker_egg.gif/revision/latest?cb=20121103040826",
          ],
        },
        price: "N/A",
        encyclopedia_id: 55,
      },
      {
        breed: ["Grave Dragon", "墓穴龙"],
        egg: [
          "This egg appears to have an evil grin.",
          "这颗蛋似乎露出了邪恶的笑容。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2013",
        wiki: ["/wiki/Grave_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Grave_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/0e/Grave_egg.png/revision/latest?cb=20131031041612",
          ],
        },
        price: "N/A",
        encyclopedia_id: 56,
      },
      {
        breed: ["Desipis Dragon", "德西比斯龙"],
        egg: [
          "Being near this egg makes it hard to think clearly.",
          "一靠近这颗蛋就让人思绪紊乱。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Dark", "Magi"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2014",
        wiki: ["/wiki/Desipis_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Desipis_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b3/Desipis_egg.png/revision/latest?cb=20141031040823",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1270,
      },
      {
        breed: ["Caligene Dragon", "暗龙"],
        egg: [
          "The pattern on this egg’s shell is unsettling.",
          "这颗蛋上的花纹令人不安…",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2015",
        wiki: ["/wiki/Caligene_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Caligene_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/2/2c/Caligene_egg.png/revision/latest?cb=20151031040155",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1583,
      },
      {
        breed: ["Witchlight Dragon", "魔光龙"],
        egg: [
          "This downy egg is hidden in brambles.",
          "这颗毛茸茸的蛋藏在荆棘里。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Dark", "Magi"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2016",
        wiki: ["/wiki/Witchlight_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Witchlight_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/b/b9/Witchlight_egg.png/revision/latest?cb=20161031042523",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1602,
      },
      {
        breed: ["Omen Wyrm", "恶兆龙"],
        egg: [
          "This warm egg is tangled in the roots of a dead tree.",
          "这颗温暖的蛋被枯木的树根裹著。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Fire", "Dark"],
        morphology: "Dragon (Wyrm)",
        release_at: "October 31, 2017",
        wiki: ["/wiki/Omen_Wyrm", ""],
        sprites: {
          egg: [
            "",
            "Omen_Wyrm_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/7/7c/Omen_Wyrm_egg.png/revision/latest?cb=20171031053452",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1624,
      },
      {
        breed: ["Arcana Dragon", "阿尔克那龙"],
        egg: [
          "This egg has reflective spots that remind you of gems, or eyes.",
          "这蛋上会反光的斑点使你想到了钻石,或眼睛。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited-release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2018",
        wiki: ["/wiki/Arcana_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Arcana_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/8/8b/Arcana_egg.png/revision/latest?cb=20181031060545",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1631,
      },
      {
        breed: ["Kohraki Dragon", "柯拉奇龙"],
        egg: [
          "A fine mist rolls over this cool, scaly egg.",
          "浓密的厚雾包裹著这颗冰冷可怖的蛋。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Air", "Dark"],
        morphology: "Dragon (Wyvern)",
        release_at: "October 31, 2019",
        wiki: ["/wiki/Kohraki_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Kohraki_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/09/Kohraki_egg.png/revision/latest?cb=20191031040549",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1659,
      },
      {
        breed: ["Pitfire Dragon", ""],
        egg: ["Dead leaves obscure this egg’s scratched shell.", ""],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Death"],
        morphology: "Dragon (Western)",
        release_at: "October 31, 2020",
        wiki: ["/wiki/Pitfire_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Pitfire_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ee/Pitfire_egg.png/revision/latest?cb=20201031040253",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1690,
      },
      {
        breed: ["Iridichi Dragon", ""],
        egg: [
          "Your eyes struggle to completely focus on the light coming through this cloudy egg.",
          "",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Death", "Magi"],
        morphology: "Dragon (Amphiptere)",
        release_at: "October 31, 2021",
        wiki: ["/wiki/Iridichi_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Iridichi_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/24/Iridichi_egg.gif/revision/latest?cb=20211031042056",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1707,
      },
      {
        breed: ["Holiday Dragon (2007)Holly Dragon", "冬青龙"],
        egg: [
          "This egg has a holly leaf stuck to it.",
          "这颗蛋上卡着一片冬青叶。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2007",
        wiki: ["/wiki/Holly_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Holly_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/1/1c/Holly_egg.png/revision/latest?cb=20101221163536",
          ],
        },
        price: "N/A",
        encyclopedia_id: 21,
      },
      {
        breed: ["Holiday Dragon (2008)Yulebuck", "圣诞鹿龙"],
        egg: [
          "This egg is covered with bright, festive stripes.",
          "这颗蛋有着明亮的节日花纹。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2008",
        wiki: ["/wiki/Yulebuck", ""],
        sprites: {
          egg: [
            "",
            "Yulebuck_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/bc/Yulebuck_egg.gif/revision/latest?cb=20090423185228",
          ],
        },
        price: "N/A",
        encyclopedia_id: 22,
      },
      {
        breed: ["Holiday Dragon (2009)Snow Angel", "雪天使龙"],
        egg: [
          "This egg fills you with holiday cheer.",
          "这颗蛋使你充满节日的喜乐。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2009",
        wiki: ["/wiki/Snow_Angel", ""],
        sprites: {
          egg: [
            "",
            "Snow_Angel_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/3/35/Snow_Angel_egg.gif/revision/latest?cb=20101227034458",
          ],
        },
        price: "N/A",
        encyclopedia_id: 23,
      },
      {
        breed: ["Holiday Dragon (2010)Ribbon Dancer", "缎带舞者龙"],
        egg: [
          "This egg shines like a holiday ribbon.",
          "这颗蛋耀眼得像是节日彩带。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2010",
        wiki: ["/wiki/Ribbon_Dancer", ""],
        sprites: {
          egg: [
            "",
            "Ribbon_Dancer_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/2/2e/Ribbon_Dancer_egg.gif/revision/latest?cb=20101225051954",
          ],
        },
        price: "N/A",
        encyclopedia_id: 24,
      },
      {
        breed: ["Holiday Dragon (2011)Blizzard Wizard", "冬贤龙"],
        egg: [
          "This colorful egg is covered by a light layer of snow.",
          "这颗五彩缤纷的蛋被一层薄雪覆盖着。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Magi"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2011",
        wiki: ["/wiki/Blizzard_Wizard", ""],
        sprites: {
          egg: [
            "",
            "Blizzard_Wizard_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/4/46/Blizzard_Wizard_egg.png/revision/latest?cb=20210508061237",
          ],
        },
        price: "N/A",
        encyclopedia_id: 25,
      },
      {
        breed: ["Holiday Dragon (2012)Wrapping-Wing", "彩纸龙"],
        egg: [
          "This egg has a rich, shiny pattern on it.",
          "这颗蛋有个丰富、闪亮的花样。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2012",
        wiki: ["/wiki/Wrapping-Wing", ""],
        sprites: {
          egg: [
            "",
            "Wrapping-Wing_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/e/ee/Wrapping-Wing_egg.gif/revision/latest?cb=20121225055209",
          ],
        },
        price: "N/A",
        encyclopedia_id: 26,
      },
      {
        breed: ["Holiday Dragon (2013)Solstice Dragon", "冬至龙"],
        egg: [
          "This egg emits a soft, heartwarming glow.",
          "这颗蛋会发出柔和、温馨的光芒。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)", "Unknown (Limited release)"],
        bsa: "",
        elemental: ["Time"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2013",
        wiki: ["/wiki/Solstice_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Solstice_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/b/b1/Solstice_egg.gif/revision/latest?cb=20131225053132",
          ],
        },
        price: "N/A",
        encyclopedia_id: 27,
      },
      {
        breed: ["Mistletoe Dragon", "榭寄生龙"],
        egg: [
          "This colorful egg gleams in the light.",
          "这颗缤纷的蛋在光芒下闪闪发光。",
        ],
        rarity: "Holiday",
        habitats: [],
        bsa: "",
        elemental: [],
        morphology: "",
        release_at: "",
        wiki: ["/wiki/Mistletoe_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Mistletoe_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/d8/Mistletoe_egg.png/revision/latest?cb=20141225051053",
          ],
        },
      },
      {
        breed: ["Holiday Dragon (2015)Aegis Dragon", "庇护之龙"],
        egg: [
          "A wintry chill swirls just beneath the surface of this egg.",
          "冰冷的寒气在蛋里旋转。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "Enrage",
        elemental: ["Life", "Ice"],
        morphology: "Dragon (Wingless)",
        release_at: "December 25, 2015",
        wiki: ["/wiki/Aegis_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Aegis_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/0/0e/Aegis_egg.png/revision/latest?cb=20151225050241",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1584,
      },
      {
        breed: ["Holiday Dragon (2016)Snow Dragon", "雪龙"],
        egg: ["This egg is surrounded by frost.", "这颗蛋被冰霜包裹。"],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Ice"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2016",
        wiki: ["/wiki/Snow_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Snow_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/5/59/Snow_egg.png/revision/latest?cb=20161225050715",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1603,
      },
      {
        breed: ["Holiday Dragon (2017)Garland Dragon", "花环龙"],
        egg: [
          "This festive egg gives off comforting warmth.",
          "这颗喜庆的蛋带给人舒适的温暖。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Fire"],
        morphology: "Dragon (Amphiptere)",
        release_at: "December 25, 2017",
        wiki: ["/wiki/Garland_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Garland_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/1/1e/Garland_egg.png/revision/latest?cb=20171225071828",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1625,
      },
      {
        breed: ["Holiday Dragon (2018)Starsinger Dragon", "吟星龙"],
        egg: [
          "This egg glows with a soft, soothing light.",
          "这颗蛋上发出抚慰人心的暖光。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Light"],
        morphology: "Dragon (Western)",
        release_at: "December 25, 2018",
        wiki: ["/wiki/Starsinger_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Starsinger_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/d/d1/Starsinger_egg.png/revision/latest?cb=20181226075741",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1632,
      },
      {
        breed: ["Holiday Dragon (2019)Wintertide Dragon", "玄英龙"],
        egg: [
          "This egg emanates a gentle chime when met with the winter breeze.",
          "每当有冬季微风吹拂而过,这颗蛋就会发出轻柔的敲钟声。",
        ],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Life", "Fire"],
        morphology: "Dragon (Amphiptere)",
        release_at: "December 25, 2019",
        wiki: ["/wiki/Wintertide_Dragon", ""],
        sprites: {
          egg: [
            "",
            "Wintertide_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/e/ed/Wintertide_egg.png/revision/latest?cb=20191225050109",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1663,
      },
      {
        breed: ["Holiday Dragon (2020)Glystere Wyrm", ""],
        egg: ["Colorful light twinkles within this frozen egg.", ""],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "Redecorate",
        elemental: ["Ice", "Light"],
        morphology: "Dragon (Wyrm)",
        release_at: "December 25, 2020",
        wiki: ["/wiki/Glystere_Wyrm", ""],
        sprites: {
          egg: [
            "",
            "Glystere_egg.png",
            "https://static.wikia.nocookie.net/dragcave/images/9/92/Glystere_egg.png/revision/latest?cb=20201225053851",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1691,
      },
      {
        breed: ["Holiday Dragon (2021)Pryanost Lindwyrm", ""],
        egg: ["This warm brown egg smells faintly of spices.", ""],
        rarity: "Holiday",
        habitats: ["Unknown (Limited release)"],
        bsa: "",
        elemental: ["Fire", "Magi"],
        morphology: "Dragon (Lindwyrm)",
        release_at: "December 25, 2021",
        wiki: ["/wiki/Pryanost_Lindwyrm", ""],
        sprites: {
          egg: [
            "",
            "Pryanost_egg.gif",
            "https://static.wikia.nocookie.net/dragcave/images/1/18/Pryanost_egg.gif/revision/latest?cb=20211225050135",
          ],
        },
        price: "N/A",
        encyclopedia_id: 1708,
      },
    ];
  }
  getByRarity(search_rarity) {
    search_rarity = Object.keys(this.RARITY_NAME).includes(search_rarity)
      ? search_rarity
      : "Unknown";
    return this.DB.filter((dragon) => dragon.rarity === search_rarity);
  }
  getByHabitat(search_habitat) {
    if (Object.keys(this.HABITAT_NAME).includes(search_habitat)) {
      return this.DB.filter((dragon) => dragon.habitat.includes(search_rarity));
    }
    return [];
  }
  getByEggDesc(desc) {
    let res = this.DB.filter((dragon) => desc.includes(dragon.egg[0]));
    return res && res.length > 0 ? res[0] : null;
  }
}