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: "smp-SM207", localId: "SM207", // Card informations name: { en: "Sudowoodo", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 185, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM207/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM207/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Low Kick", }, damage: 20 },{ cost: [ Type.FIGHTING, Type.FIGHTING ], name: { en: "Territorial Strike", }, text: { en: "If you don't have a Stadium card in play, this attack does nothing.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card