1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
2025-05-04 00:37:30 +02:00

57 lines
662 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",
hp: 70,
types: [
"Colorless",
],
attacks: [{
cost: [
"Fire",
],
name: {
en: "Dragon Dew"
},
effect: {
en: "Remove 1 damage counter from 1 of your Pokémon."
},
damage: 10
}, {
cost: [
"Fire",
"Fire",
"Colorless"
],
name: {
en: "Heat Blast"
},
damage: 40
}],
weaknesses: [
{
type: "Psychic",
value: "2x"
},
],
retreat: 1,
}
export default card