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: "xy9-47", localId: 47, // Card informations name: { en: "Luxray BREAK", fr: "Luxray TURBO", }, hp: 170, type: [ Type.LIGHTNING, ], dexId: 405, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/47/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/47/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/47/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/47/high.png", }, }, evolveFrom: { en: "Luxray", fr: "Luxray", }, tags: [ Tag.BREAK, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wild Fury", fr: "Règle des Évolutions TURBO", }, text: { en: "Flip a coin until you get tails. This attack does 40 more damage for each heads.", }, damage: 130 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Furie Sauvage", }, text: { fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 40 dégâts supplémentaires pour chaque côté face.", }, damage: "130+" }], rarity: Rarity.RareBREAK, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card