import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex5-47", localId: 47, // Card informations name: { en: "Sealeo", }, hp: 70, type: [ Type.WATER, ], dexId: 364, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/47/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/47/high", }, }, evolveFrom: { en: "Spheal", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.WATER ], name: { en: "Super Icy Wind", }, text: { en: "Does 10 damage to each of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance.", }, },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Skull Bash", }, damage: 50 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card