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: "bw7-22", localId: 22, // Card informations name: { en: "Camerupt", fr: "Camérupt", }, hp: 130, type: [ Type.FIRE, ], dexId: 323, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/22/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/22/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/22/high.png", }, }, evolveFrom: { en: "Numel", fr: "Chamallot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 48, name: "Akira Komayama" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Fire Shard", fr: "Écharde de Feu", }, text: { en: "The Defending Pokémon is now Burned. Flip a coin. If heads, the Defending Pokémon is also Paralyzed.", fr: "Le Pokémon Défenseur est maintenant Brûlé. Lancez une pièce. Si c'est face, le Pokémon Défenseur est aussi Paralysé.", }, damage: 60 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flamethrower", fr: "Lance-Flamme", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 4, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card