import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Xatu", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 178, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Natu", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Prophecy", }, effect: { en: "Look at the top 3 cards of either player's deck and rearrange them as you like.", }, }, { cost: [ "Psychic", "Psychic", "Psychic", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card