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: "bw6-36", localId: 36, // Card informations name: { en: "Seismitoad", fr: "Crapustule", }, hp: 140, type: [ Type.WATER, ], dexId: 537, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw6/36/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/36/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw6/36/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw6/36/high.png", }, }, evolveFrom: { en: "Palpitoad", fr: "Batracné", }, tags: [ Tag.STAGE2, ], illustrator: { id: 27, name: "kawayoo" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Echoed Voice", fr: "Écho", }, text: { en: "During your next turn, this Pokémon's Echoed Voice attack does 50 more damage (before applying Weakness and Resistance).", fr: "Pendant votre prochain tour, l'attaque Écho de ce Pokémon inflige 50 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).", }, damage: 50 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Drain Punch", fr: "Vampipoing", }, text: { en: "Heal 20 damage from this Pokémon.", fr: "Soignez 20 dégâts à ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Dragons Exalted", code: "bw6" } } export default card