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: "ex5-54", localId: 54, // Card informations name: { en: "Beldum", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 374, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/54/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/54/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 10, name: "Kouki Saitou" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.PSYCHIC ], name: { en: "Metal Ball", }, text: { en: "Put 1 damage counter on the Defending Pokémon.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card