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: "pl4-42", localId: 42, // Card informations name: { en: "Haunter", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 93, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl4/42/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl4/42/high.png", }, }, evolveFrom: { en: "Gastly", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Psyshot", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Shadow Bind", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 30 }], weaknesses: [{ type: Type.DARKNESS, value: "+20" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Arceus", code: "pl4" } } export default card