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: "xy7-20", localId: 20, // Card informations name: { en: "Gyarados", fr: "Léviator", }, hp: 130, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy7/20/low", fr: "https://assets.tcgdex.net/fr/xy/xy7/20/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy7/20/high", fr: "https://assets.tcgdex.net/fr/xy/xy7/20/high", }, }, evolveFrom: { en: "Magikarp", fr: "Magicarpe", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Berserker Splash", fr: "Folle Éclaboussure", }, text: { en: "This attack does 10 damage to each Benched Pokémon (both yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc (les vôtres et ceux de votre adversaire). (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 80 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Tail", fr: "Hydroqueue", }, text: { en: "Flip a coin for each Water Energy attached to this Pokémon. This attack does 30 more damage for each heads.", fr: "Lancez une pièce pour chaque Énergie Water attachée à ce Pokémon. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", }, damage: 90 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ancient Origins", code: "xy7" } } export default card