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: "sm4-51", localId: 51, // Card informations name: { en: "Primeape", fr: "Colossinge", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 57, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm4/51/low", fr: "https://assets.tcgdex.net/fr/sm/sm4/51/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm4/51/high", fr: "https://assets.tcgdex.net/fr/sm/sm4/51/high", }, }, evolveFrom: { en: "Mankey", fr: "Férosinge", }, tags: [ Tag.STAGE1, ], illustrator: "Yuka Morii", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Low Kick", fr: "Balayage", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Lucha Fight", fr: "Combat Lucha", }, text: { en: "During your opponent's next turn, the Defending Pokémon's attacks do 30 more damage (before applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur infligent 30 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).", }, damage: 90 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crimson Invasion", code: "sm4" } } export default card