mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-15 21:19:55 +00:00
36 lines
493 B
TypeScript
36 lines
493 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit (Latias)'
|
|
|
|
const card: Card = {
|
|
dexId: [322],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Numel"
|
|
},
|
|
|
|
illustrator: "Yuka Morii",
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Firebreathing"
|
|
},
|
|
|
|
damage: "10+",
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage."
|
|
}
|
|
}, {
|
|
name: {
|
|
en: "Tackle"
|
|
},
|
|
|
|
damage: 20
|
|
}]
|
|
}
|
|
|
|
export default card |