1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

88 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../SM Black Star Promos'
const card: Card = {
name: {
en: "Latias",
fr: "Latias",
es: "Latias",
it: "Latias",
pt: "Latias",
de: "Latias"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
380,
],
hp: 100,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Flight Support",
fr: "Soutien Aérien",
es: "Asistencia en Vuelo",
it: "Assistenza Volo",
pt: "Suporte de Voo",
de: "Begleitflug"
},
effect: {
en: "Your Latios in play have no Retreat Cost.",
fr: "Vos Latios en jeu nont pas de Coût de Retraite.",
es: "Tus Latios en juego no tienen ningún Coste de Retirada.",
it: "I tuoi Latios in gioco non hanno costo di ritirata.",
pt: "Seus Latios em jogo não têm custo de Recuo.",
de: "Deine Latios im Spiel haben keine Rückzugskosten."
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Misty Gale",
fr: "Bourrasque Brumeuse",
es: "Vendaval Nebuloso",
it: "Raffica di Nebbia",
pt: "Vendaval Nebuloso",
de: "Nebelsturm"
},
effect: {
en: "Heal 30 damage from each of your Benched Pokémon.",
fr: "Soignez 30 dégâts à chacun de vos Pokémon de Banc.",
es: "Cura 30 puntos de daño a cada uno de tus Pokémon en Banca.",
it: "Cura ciascuno dei tuoi Pokémon in panchina da 30 danni.",
pt: "Cure 30 pontos de dano de cada um dos seus Pokémon no Banco.",
de: "Heile 30 Schadenspunkte bei jedem Pokémon auf deiner Bank."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card