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: "sm1-31", localId: 31, // Card informations name: { en: "Poliwhirl", fr: "Têtarte", }, hp: 90, type: [ Type.WATER, ], dexId: 61, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm1/31/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm1/31/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm1/31/high.png", }, }, evolveFrom: { en: "Poliwag", fr: "Ptitard", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Slap", fr: "Torgnoles", }, text: { en: "Flip 2 coins. This attack does 30 damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wave Splash", fr: "Grosse Vague", }, damage: 60 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sun & Moon", code: "sm1" } } export default card