import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Xatu δ", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 178, ], hp: 70, types: [ "Darkness", ], evolveFrom: { en: "Natu", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Extra Feather", }, effect: { en: "Each of your Stage 2 Pokémon-ex does 10 more damage to the Defending Pokémon (before applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Darkness", "Colorless", ], name: { en: "Confuse Ray", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is Confused.", }, damage: 20, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card