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: "ecard1-56", localId: 56, // Card informations name: { en: "Mewtwo", }, hp: 70, type: [ Type.PSYCHIC, ], dexId: 150, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard1/56/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard1/56/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 120, name: "Kimiya Masago" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hypnosis", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.", }, },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Psychic", }, text: { en: "This attack does 20 damage plus 10 more damage for each Energy card attached to the Defending Pokémon.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Expedition Base Set", code: "ecard1" } } export default card