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: "ex8-8", localId: 8, // Card informations name: { en: "Gyarados", }, hp: 90, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/8/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/8/high", }, }, evolveFrom: { en: "Magikarp", }, tags: [ Tag.STAGE1, ], illustrator: "Hisao Nakamura", attacks: [{ cost: [ Type.WATER ], name: { en: "Dragon Spark", }, text: { en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Full Retaliation", }, text: { en: "Does 20 damage times the number of damage counters on all of your Magikarp.", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Pulverize", }, text: { en: "If the Defending Pokémon already has at least 2 damage counters on it, this attack does 50 damage plus 50 more damage.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card