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: "pl3-19", localId: 19, // Card informations name: { en: "Camerupt G", fr: "Camerupt ", }, hp: 100, type: [ Type.FIRE, ], dexId: 323, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/19/low", fr: "https://assets.tcgdex.net/fr/pl/pl3/19/low", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/19/high", fr: "https://assets.tcgdex.net/fr/pl/pl3/19/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, Tag.SP, ], illustrator: "Ryota Saito", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Searing Flame", fr: "Flammes calcinantes", }, text: { en: "The Defending Pokémon is now Burned.", fr: "Le Pokémon Défenseur est maintenant Brûlé.", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Earth Power", fr: "Telluriforce", }, text: { en: "Flip 2 coins. This attack does 10 damage times the number of heads to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces à chacun des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, damage: 60 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card