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: "ecard3-45", localId: 45, // Card informations name: { en: "Wobbuffet", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 202, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/45/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/45/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: 415, type: AbilityType.POKEBODY, name: { en: "Mirror Coat", }, text: { en: "If Wobbuffet becomes Poisoned or Burned by the Defending Pokémon's attack during your opponent's turn, the Defending Pokémon becomes affected by the same Special Condition.", } }], attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Return Attack", }, text: { en: "Flip 2 coins. If either is heads, this attack does 10 damage times the number of damage counters on Wobbuffet.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card