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: "xy10-39", localId: 39, // Card informations name: { en: "Kabutops", fr: "Kabutops", }, hp: 150, type: [ Type.FIGHTING, ], dexId: 141, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/39/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/39/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy10/39/high.png", }, }, evolveFrom: { en: "Kabuto", fr: "Kabuto", }, tags: [ Tag.STAGE1, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Cling", fr: "Corps à Corps", }, text: { en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.", fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.", }, damage: 50 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "X-Scissor", fr: "Plaie-Croix", }, text: { en: "Flip a coin. If heads, this attack does 60 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card