1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

67 lines
842 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Skyridge'
const card: Card = {
name: {
en: "Xatu",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
178,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Natu",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Synchronicity",
},
effect: {
en: "You may attach any Technical Machine to Xatu.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Warp Hole",
},
effect: {
en: "Flip a coin. If heads, choose a card from your discard pile and put it on top of your deck.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card