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: "xy6-39", localId: 39, // Card informations name: { en: "Hawlucha", fr: "Brutalibré", }, hp: 80, type: [ Type.FIGHTING, ], dexId: 701, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/39/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/39/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/39/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Tackle", fr: "Charge", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Midair Strike", fr: "Coup en l'Air", }, text: { en: "Flip a coin. If heads, this attack does 40 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card