mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 04:17:49 +00:00
36 lines
467 B
TypeScript
36 lines
467 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../EX trainer Kit (Latias)'
|
|
|
|
const card: Card = {
|
|
dexId: [380],
|
|
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 |