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: "sm115-16", localId: 16, // Card informations name: { en: "Gyarados-GX", fr: "Léviator-GX", }, hp: 230, type: [ Type.WATER, ], dexId: 130, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm115/16/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/16/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm115/16/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/16/high.png", }, }, evolveFrom: { en: "Magikarp", fr: "Magicarpe", }, tags: [ Tag.GX, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.WATER, Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Dragon Rage", fr: "Draco-Rage", }, damage: 130 },{ cost: [ Type.WATER, Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Hyper Beam-GX", fr: "Ultralaser-GX", }, text: { en: "(You can't use more than 1 GX attack in a game.)", fr: "(Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, damage: 240 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 3, rarity: Rarity.RareHoloGX, category: Category.POKEMON, set: { name: "Hidden Fates", code: "sm115" } } export default card