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

29 lines
435 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latias)'
const card: Card = {
set: Set,
name: {
en: "Torchic"
},
illustrator: "Hironobu Yoshida",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
name: {
en: "Firebreathing"
},
damage: "20+",
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage."
}
}]
}
export default card