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

94 lines
1.9 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: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
380,
],
hp: 110,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
es: "Hipnorrayo",
it: "Ipnobomba",
pt: "Borrifada Hipnótica",
de: "Hypnoschuss"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
es: "El Pokémon Defensor pasa a estar Dormido.",
it: "Il Pokémon Difensore è Addormentato.",
pt: "O Pokémon Defensor agora está Adormecido.",
de: "Das Verteidigende Pokémon schläft jetzt."
},
damage: 30,
},
{
cost: [
"Fire",
"Psychic",
"Colorless",
],
name: {
en: "Mist Ball",
fr: "BallBrume",
es: "Bola Neblina",
it: "Foschisfera",
pt: "Bola de Névoa",
de: "Nebelball"
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy and a Psychic Energy from this Pokémon.",
fr: "Lancez une pièce. Si cest pile, défaussez une Énergie Fire et une Énergie Psychic de ce Pokémon.",
es: "Lanza 1 moneda. Si sale cruz, descarta 1 Energía Fire y 1 Energía Psychic de este Pokémon.",
it: "Lancia una moneta. Se esce croce, scarta unEnergia Fire e unEnergia Psychic assegnate a questo Pokémon.",
pt: "Jogue 1 moeda. Se sair coroa, descarte 1 Energia Fire e 1 Energia Psychic deste Pokémon.",
de: "Wirf 1 Münze. Lege bei Zahl 1 Fire-Energie und 1 Psychic-Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 110,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 1,
}
export default card