1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

69 lines
764 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Promos'
const card: Card = {
name: {
en: "Latios",
fr: "Latios",
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
381,
],
hp: 100,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Glide",
fr: "Glissement",
},
damage: 20,
},
{
cost: [
"Water",
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Sky Blade",
},
effect: {
en: "If Latias is on your Bench, this attack does 50 more damage.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card