import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex13-29", localId: 29, // Card informations name: { en: "Registeel", }, hp: 80, type: [ Type.METAL, ], dexId: 379, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex13/29/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/29/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ken Sugimori", abilities: [{ id: 8, type: AbilityType.POKEBODY, name: { en: "Clear Body", }, text: { en: "Registeel can't be affected by any Special Conditions.", } }], attacks: [{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS ], name: { en: "Hyper Beam", }, text: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Holon Phantoms", code: "ex13" } } export default card