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-78", localId: 78, // Card informations name: { en: "Meloetta", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 648, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/78/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/78/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 27, name: "kawayoo" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psychic", }, text: { en: "Does 20 more damage for each Energy attached to the Defending Pokémon.", }, damage: 10 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Echoed Voice", }, text: { en: "During your next turn, this Pokémon's Echoed Voice attack does 50 more damage (before applying Weakness and Resistance).", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card