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

42 lines
891 B
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.

import { Card } from '../../../interfaces'
import Set from '../Crimson Invasion'
const card: Card = {
name: {
en: "Psychic Memory",
fr: "ROM Psy",
es: "Disco Psíquico",
it: "ROM Psico",
pt: "Memória Psíquica",
de: "Psycho-Disc"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Silvallié-GX auquel cette carte est attachée est un Pokémon Psychic.",
en: "The Silvally-GX this card is attached to is a Psychic Pokémon.",
es: "El Silvally-GX al que está unida esta carta es un Pokémon Psychic.",
it: "Il Silvally-GX a cui è assegnata questa carta è di tipo Psychic.",
pt: "O Pokémon Silvally-GX ao qual esta carta está ligada é um Pokémon Psychic.",
de: "Das Amigento-GX, an das diese Karte angelegt ist, ist ein Psychic-Pokémon."
},
trainerType: "Tool",
}
export default card