1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

114 lines
2.8 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Lunala ◇",
fr: "Lunala ◇",
es: "Lunala ◇",
it: "Lunala ◇",
pt: "Lunala ◇",
de: "Lunala ◇"
},
illustrator: "Hitoshi Ariga",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
792,
],
hp: 160,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Full Moon Star",
fr: "Étoile Pleine Lune",
es: "Estrella Luna Llena",
it: "Stella della Luna Piena",
pt: "Estrela Lua Cheia",
de: "Vollmondstern"
},
effect: {
en: "For each of your opponents Pokémon in play, attach a Psychic Energy card from your discard pile to your Pokémon in any way you like.",
fr: "Pour chaque Pokémon de votre adversaire en jeu, attachez une carte Énergie Psychic de votre pile de défausse à vos Pokémon, de la manière que vous voulez.",
es: "Por cada uno de los Pokémon de tu rival en juego, une 1 carta de Energía Psychic de tu pila de descartes a tus Pokémon de la manera que desees.",
it: "Per ogni Pokémon del tuo avversario in gioco, assegna a piacimento ai tuoi Pokémon una carta Energia Psychic dalla tua pila degli scarti.",
pt: "Para cada Pokémon em jogo do seu oponente, ligue 1 carta de Energia Psychic da sua pilha de descarte aos seus Pokémon como desejar.",
de: "Lege für jedes Pokémon deines Gegners im Spiel 1 Psychic-Energiekarte aus deinem Ablagestapel beliebig an deine Pokémon an."
},
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Psystorm",
fr: "Tempête Psy",
es: "Psicotormenta",
it: "Psicotempesta",
pt: "Tempestade Psíquica",
de: "Psisturm"
},
effect: {
en: "This attack does 20 damage times the amount of Energy attached to all Pokémon.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées aux Pokémon.",
es: "Este ataque hace 20 puntos de daño por cada Energía unida a todos los Pokémon.",
it: "Questo attacco infligge 20 danni per ogni Energia assegnata a ciascun Pokémon.",
pt: "Este ataque causa 20 pontos de dano vezes a quantidade de Energia ligada a todos os Pokémon.",
de: "Diese Attacke fügt 20 Schadenspunkte mal der Anzahl der an alle Pokémon angelegten Energien zu."
},
damage: "20×",
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
"Psychic",
],
name: {
fr: "Tempête Psy",
},
effect: {
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies attachées aux Pokémon.",
},
damage: "20×",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 3,
}
export default card