1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

82 lines
2.0 KiB
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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Latias-EX",
fr: "Latias-EX",
es: "Latias-EX",
it: "Latias-EX",
pt: "Latias-EX",
de: "Latias-EX"
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
380,
],
hp: 160,
types: [
"Dragon",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Bright Down",
fr: "Bouclier Lumineux",
es: "Plumón Reluciente",
it: "Splendipiume",
pt: "Desabrilhantar",
de: "Strahlender Schild"
},
effect: {
en: "Prevent all effects of attacks, including damage, done to this Pokémon by your opponents Pokémon with Abilities.",
fr: "Évitez tous les effets d'attaques (y compris les dégâts) infligés à ce Pokémon par les Pokémon de votre adversaire dotés de capacités spéciales.",
es: "Evita todos los efectos de los ataques, incluido el daño, infligidos a este Pokémon por los Pokémon con habilidades de tu rival.",
it: "Previeni tutti gli effetti degli attacchi, inclusi i danni, inflitti a questo Pokémon dai Pokémon con abilità del tuo avversario.",
pt: "Impede todos os efeitos de ataques, inclusive danos, causados neste Pokémon pelo Pokémon do seu oponente com Habilidades.",
de: "Verhindere alle Effekte von Angriffen, einschließlich Schaden, die diesem Pokémon durch gegnerische Pokémon mit Fähigkeiten zugefügt werden."
},
},
],
attacks: [
{
cost: [
"Fire",
"Psychic",
"Colorless",
],
name: {
en: "Barrier Break",
fr: "Brise Barrière",
},
effect: {
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on the Defending Pokémon.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Défenseur.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card