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: "bw7-40", localId: 40, // Card informations name: { en: "Dewott", fr: "Mateloutre", }, hp: 90, type: [ Type.WATER, ], dexId: 502, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/40/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/40/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/40/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/40/high.png", }, }, evolveFrom: { en: "Oshawott", fr: "Moustillon", }, tags: [ Tag.STAGE1, ], illustrator: { id: 28, name: "match" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Rain Splash", fr: "Pluie Éclaboussante", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS ], name: { en: "Waterfall", fr: "Cascade", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card