1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

35 lines
443 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Ninun)'
const card: Card = {
set: Set,
name: {
en: "Arcanine"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
stage: "Stage1",
attacks: [{
name: {
en: "Flare"
},
damage: 20
}, {
name: {
en: "Heat Tackle"
},
damage: 70,
effect: {
en: "Arcanine does 10 damage to itself."
}
}]
}
export default card