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: "ecard3-23", localId: 23, // Card informations name: { en: "Omastar", }, hp: 90, type: [ Type.WATER, ], dexId: 139, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/23/low", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/23/high", }, }, evolveFrom: { en: "Omanyte", }, tags: [ Tag.STAGE2, ], illustrator: "Hajime Kusajima", abilities: [{ id: 558, type: AbilityType.POKEBODY, name: { en: "Primal Stare", }, text: { en: "As long as Omastar is your Active Pokémon, your opponent can't play Basic Pokémon or Evolution cards from his or her hand to evolve his or her Active Pokémon.", } }], attacks: [{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Spook", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card