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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw1/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw1/34/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw1/34/high.png", }, }, evolveFrom: { en: "Panpour", fr: "Flotajou", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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