1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

99 lines
2.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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Solgaleo",
fr: "Solgaleo",
es: "Solgaleo",
it: "Solgaleo",
pt: "Solgaleo",
de: "Solgaleo"
},
illustrator: "Misa Tsutsui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
791,
],
hp: 170,
types: [
"Metal",
],
evolveFrom: {
en: "Cosmoem",
fr: "Cosmovum",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Armor of the Sunne",
fr: "Armure du Halo Solaire",
es: "Armadura de la Corona Solar",
it: "Armatura Solare",
pt: "Armadura Solar",
de: "Sonnenkreis-Rüstung"
},
effect: {
en: "If you have Lunala in play, your Solgaleo and Lunala take 50 less damage from your opponents attacks (after applying Weakness and Resistance). You cant apply more than 1 Armor of the Sunne Ability at a time.",
fr: "Si vous avez Lunala en jeu, vos Solgaleo et Lunala subissent 50 dégâts de moins provenant des attaques de votre adversaire (après application de la Faiblesse et de la Résistance). Vous ne pouvez pas utiliser plus dun talent Armure du Halo Solaire à la fois.",
es: "Si tienes a Lunala en juego, los ataques de tu rival hacen 50 puntos de daño menos a tus Solgaleo y Lunala (después de aplicar Debilidad y Resistencia). No puedes aplicar más de 1 habilidad Armadura de la Corona Solar a la vez.",
it: "Se hai Lunala in gioco, i tuoi Solgaleo e Lunala subiscono 50 danni in meno dagli attacchi del tuo avversario, dopo aver applicato debolezza e resistenza. Può essere applicata solo unabilità Armatura Solare alla volta.",
pt: "Se você tiver Lunala em jogo, seus Solgaleo e Lunala receberão 50 pontos de dano a menos dos ataques do seu oponente (após a aplicação de Fraqueza e Resistência). Você não pode usar mais de 1 Habilidade Armadura Solar por vez.",
de: "Wenn du Lunala im Spiel hast, werden deinen Solgaleo und Lunala durch Attacken deines Gegners 50 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden). Du kannst immer nur jeweils 1 Fähigkeit Sonnenkreis-Rüstung einsetzen."
},
},
],
attacks: [
{
cost: [
"Metal",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Sol Fangs",
fr: "Crocs Solaires",
es: "Colmillos Solares",
it: "Zanne del Sole",
pt: "Caninos do Sol",
de: "Sonnenfänge"
},
effect: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
es: "Descarta 2 Energías de este Pokémon.",
it: "Scarta due Energie assegnate a questo Pokémon.",
pt: "Descarte 2 Energias deste Pokémon.",
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 180,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card