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: "xy12-60", localId: 60, // Card informations name: { en: "Machamp BREAK", fr: "Mackogneur TURBO", }, hp: 190, type: [ Type.FIGHTING, ], dexId: 68, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/60/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/60/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/60/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/60/high.png", }, }, evolveFrom: { en: "Machamp", fr: "Mackogneur", }, tags: [ Tag.BREAK, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { en: "Boomerang Lariat", fr: "Règle des Évolutions TURBO", }, text: { en: "During your next turn, this Pokémon's attacks do 100 more damage to your opponent's Active Pokémon (before applying Weakness and Resistance).", }, damage: 100 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.FIGHTING ], name: { fr: "Lasso Boomerang", }, text: { fr: "Pendant votre prochain tour, les attaques de ce Pokémon infligent 100 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).", }, damage: 100 }], rarity: Rarity.RareBREAK, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card