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: "hgss3-43", localId: 43, // Card informations name: { en: "Beldum", fr: "Terhal", }, hp: 50, type: [ Type.METAL, ], dexId: 374, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss3/43/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss3/43/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/43/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 20, name: "TOKIYA" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Lunge Out", fr: "Allonger", }, damage: 10 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS ], name: { en: "Single Smash", fr: "Simplécrasement", }, text: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Undaunted", code: "hgss3" } } export default card