1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

78 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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