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: "ex3-24", localId: 24, // Card informations name: { en: "Camerupt", }, hp: 80, type: [ Type.FIRE, ], dexId: 323, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex3/24/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex3/24/high.png", }, }, evolveFrom: { en: "Numel", }, tags: [ Tag.STAGE1, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Super Singe", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Burned.", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Ram", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Dragon", code: "ex3" } } export default card