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: "swsh1-34", localId: 34, // Card informations name: { en: "Cinderace", }, hp: 170, type: [ Type.FIRE, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/34/low.png", }, high: { en: "https://assets.tcgdex.net/en/swsh/swsh1/34/high.png", }, }, evolveFrom: { en: "Raboot", }, tags: [ Tag.STAGE2, ], abilities: [{ id: -1, type: AbilityType.TALENT, name: { en: "Libero", }, text: { en: "Once during your turn, when this Pokémon moves from your Bench to the Active Spot, you may attach up to 2 Fire Energy cards from your discard pile to it.", } }], attacks: [{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Flare Striker", }, text: { en: "Discard 2 Energy from this Pokémon.", }, damage: 190 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card