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: "bw11-56", localId: 56, // Card informations name: { en: "Xatu", }, hp: 90, type: [ Type.PSYCHIC, ], dexId: 178, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/56/high.png", }, }, evolveFrom: { en: "Natu", }, tags: [ Tag.STAGE1, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Fortunate Draw", }, text: { en: "You and your opponent play Rock-Paper-Scissors. The player who wins draws 3 cards. The player who loses discards the top 3 cards of his or her deck.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Miracle Wing", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 60 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card