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: "ex2-54", localId: 54, // Card informations name: { en: "Wynaut", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 360, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/54/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/54/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, abilities: [{ id: 23, type: AbilityType.POKEPOWER, name: { en: "Baby Evolution", }, text: { en: "Once during your turn (before your attack), you may put Wobbuffet from your hand onto Wynaut (this counts as evolving Wynaut), and remove all damage counters from Wynaut.", } }], attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Alluring Smile", }, text: { en: "Search your deck for a Basic Pokémon card or Evolution card for each Energy attached to Wynaut, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card