import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex8-24", localId: 24, // Card informations name: { en: "Seaking", }, hp: 70, type: [ Type.WATER, ], dexId: 119, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/24/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/24/high.png", }, }, evolveFrom: { en: "Goldeen", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Triple Breach", }, text: { en: "Choose 3 of your opponent's Pokémon. This attack does 10 damage to each of those Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Rend", }, text: { en: "If the Defending Pokémon already has any damage counters on it, this attack does 30 damage plus 20 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card