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: "ex3-32", localId: 32, // Card informations name: { en: "Gyarados", }, hp: 100, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/32/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/32/high.png", }, }, evolveFrom: { en: "Magikarp", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Dragon Crush", }, text: { en: "Flip a coin. If heads, this attack does 10 damage to each Defending Pokémon. Discard an Energy card from each Defending Pokémon.", }, },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Sonic", }, text: { en: "This attack's damage is not affected by Resistance.", }, damage: 80 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card