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: "bw9-60", localId: 60, // Card informations name: { en: "Primeape", fr: "Colossinge", }, hp: 90, type: [ Type.FIGHTING, ], dexId: 57, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/60/low", fr: "https://assets.tcgdex.net/fr/bw/bw9/60/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/60/high", fr: "https://assets.tcgdex.net/fr/bw/bw9/60/high", }, }, evolveFrom: { en: "Mankey", fr: "Férosinge", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Swipes", fr: "Combo-Griffe", }, text: { en: "Flip 3 coins. This attack does 30 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Karate Chop", fr: "Poing-Karaté", }, text: { en: "Does 80 damage minus 10 damage for each damage counter on this Pokémon.", fr: "Inflige 80 dégâts moins 10 dégâts pour chaque marqueur de dégâts placé sur ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card