mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
79 lines
892 B
TypeScript
79 lines
892 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Numel",
|
||
fr: "Chamallot",
|
||
es: "Numel",
|
||
it: "Numel",
|
||
pt: "Numel",
|
||
de: "Camaub"
|
||
},
|
||
illustrator: "MAHOU",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
322,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Investida",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Combustion",
|
||
fr: "Fournaise",
|
||
es: "Combustión",
|
||
it: "Vulcanpestone",
|
||
pt: "Combustão",
|
||
de: "Glühen"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|