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: "xy3-67", localId: 67, // Card informations name: { en: "Scrafty", fr: "Baggaïd", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 560, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/67/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/67/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/67/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/67/high.png", }, }, evolveFrom: { en: "Scraggy", fr: "Baggiguane", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Low Kick", fr: "Balayage", }, damage: 30 },{ cost: [ Type.DARKNESS, Type.DARKNESS ], name: { en: "Machine Gun Headbutt", fr: "Mitraille-Tête", }, text: { en: "Flip 3 coins. This attack does 50 damage times the number of heads. This Pokémon is now Confused.", fr: "Lancez 3 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face. Ce Pokémon est maintenant Confus.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card