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: "ex12-43", localId: 43, // Card informations name: { en: "Sealeo", }, hp: 70, type: [ Type.WATER, ], dexId: 364, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex12/43/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex12/43/high", }, }, evolveFrom: { en: "Spheal", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", abilities: [{ id: 106, type: AbilityType.POKEPOWER, name: { en: "Power Circulation", }, text: { en: "Once during your turn (before your attack), you may search your discard pile for a basic Energy card, show it to your opponent, and put it on top of your deck. If you do, put 1 damage counter on Sealeo. This power can't be used if Sealeo is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Lunge Out", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Legend Maker", code: "ex12" } } export default card