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: "ex6-109", localId: 109, // Card informations name: { en: "Gyarados ex", }, hp: 130, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/109/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/109/high.png", }, }, evolveFrom: { en: "Magikarp", }, tags: [ Tag.EX, ], illustrator: { id: 74, name: "Hikaru Koike" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Twister", }, text: { en: "Flip 2 coins. For each heads, choose 1 Energy attached to the Defending Pokémon, if any, and discard it. If both are tails, this attack does nothing.", }, damage: 40 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dragon Rage", }, damage: 100 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card