import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Camerupt", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 323, ], hp: 80, types: [ "Fire", ], evolveFrom: { en: "Numel", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Delta Protection", }, effect: { en: "Any damage done to Camerupt by attacks from your opponent's Pokémon that has δ on its card is reduced by 40 (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Fire", "Colorless", ], name: { en: "Linear Attack", }, effect: { en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Combustion", }, damage: 50, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card