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: "xy5-92", localId: 92, // Card informations name: { en: "Crawdaunt", fr: "Colhomard", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 342, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/92/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/92/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/92/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/92/high.png", }, }, evolveFrom: { en: "Corphish", fr: "Écrapince", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "Hajime Kusajima" }, abilities: [{ id: 1169, type: AbilityType.TALENT, name: { en: "Unruly Claw", fr: "Pince Rebelle", }, text: { en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may discard an Energy attached to your opponent's Active Pokémon.", fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, vous pouvez défausser une Énergie attachée au Pokémon Actif de votre adversaire.", } }], attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Crabhammer", fr: "Pince-Masse", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card