import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xyp-XY09", localId: "XY09", // Card informations name: { en: "Garchomp-EX", fr: "Carchacrok-EX", }, hp: 170, type: [ Type.DRAGON, ], dexId: 445, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Dual Chop", fr: "Double Baffe", }, text: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.WATER, Type.FIGHTING, Type.COLORLESS ], name: { en: "Power Blast", fr: "Violente Déflagration", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 120 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card