1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

81 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Emerald'
const card: Card = {
name: {
en: "Camerupt",
fr: "Camerupt",
de: "Camerupt"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
323,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Numel",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Extra Flame",
fr: "Flamme supplémentaire",
de: "Extra Flame"
},
effect: {
en: "If the Defending Pokémon is Pokémon-ex, this attack does 20 damage plus 30 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 20 dégâts plus 30 dégâts supplémentaires.",
de: "If the Defending Pokémon is Pokémon-ex, this attack does 20 plus 30 more damage."
},
damage: "20+",
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Super Singe",
fr: "Ça sent le roussi !",
de: "Super Singe"
},
effect: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
de: "The Defending Pokémon is now Burned."
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card