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: "xyp-XY193", localId: "XY193", // Card informations name: { en: "Meloetta", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 648, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY193/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY193/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 64, name: "Megumi Mizutani" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Soprano Wave", }, text: { en: "Flip 3 coins. This attack does 10 damage times the number of heads to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC ], name: { en: "Entrancing Melody", }, text: { en: "Your opponent's Active Pokémon is now Confused.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card