1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

77 lines
1004 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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Latios ex δ",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
381,
],
hp: 100,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Link Wing",
},
effect: {
en: "The Retreat Cost for each of your Latias, Latias ex, Latios, and Latios ex is 0.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Ice Barrier",
},
effect: {
en: "Prevent all effects of an attack, including damage, done to Latios ex by your opponent's Pokémon-ex during your opponent's next turn.",
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Splash",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card