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

60 lines
744 B
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: "Numel",
fr: "Chamallot",
de: "Camaub"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
322,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Bodycheck"
},
effect: {
en: "Numel does 10 damage to itself.",
fr: "Chamallot s'inflige 10 dégâts.",
de: "Camaub fügt sich selbst 10 Schadenspunkte zu."
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card