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: "xy12-24", localId: 24, // Card informations name: { en: "Poliwhirl", fr: "Têtarte", }, hp: 80, type: [ Type.WATER, ], dexId: 61, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/24/low", fr: "https://assets.tcgdex.net/fr/xy/xy12/24/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/24/high", fr: "https://assets.tcgdex.net/fr/xy/xy12/24/high", }, }, evolveFrom: { en: "Poliwag", fr: "Ptitard", }, tags: [ Tag.STAGE1, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.WATER, Type.WATER ], name: { en: "Amnesia", fr: "Amnésie", }, text: { en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez l’une des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.", }, damage: 30 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Double Slap", fr: "Torgnoles", }, text: { en: "Flip 2 coins. This attack does 50 damage times the number of heads.", fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card