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

35 lines
452 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit (Latias)'
const card: Card = {
set: Set,
name: {
en: "Latias"
},
illustrator: "Nakaoka",
rarity: "None",
category: "Pokemon",
stage: "Basic",
attacks: [{
name: {
en: "Dragon Dew"
},
damage: 10,
effect: {
en: "Remove 1 damage counter from 1 of your Pokémon."
}
}, {
name: {
en: "Heat Blast"
},
damage: 40
}]
}
export default card