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: "bw1-34", localId: 34, // Card informations name: { en: "Simipour", fr: "Flotoutan", }, hp: 90, type: [ Type.WATER, ], dexId: 516, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw1/34/low", fr: "https://assets.tcgdex.net/fr/bw/bw1/34/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/34/high", fr: "https://assets.tcgdex.net/fr/bw/bw1/34/high", }, }, evolveFrom: { en: "Panpour", fr: "Flotajou", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", attacks: [{ cost: [ Type.WATER ], name: { en: "Scald", fr: "Ébullition", }, text: { en: "The Defending Pokémon is now Burned.", fr: "Le Pokémon Défenseur est maintenant Brûlé.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fury Swipes", fr: "Combo-Griffe", }, text: { en: "Flip 3 coins. This attack does 40 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Black & White", code: "bw1" } } export default card