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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex13/29/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "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