1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
956 B
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 '../Sword & Shield'
const card: Card = {
name: {
en: "Energy Switch",
fr: "Échange dÉnergie",
es: "Interruptor de Energía",
it: "Scambio di Energia",
pt: "Substituição de Energia",
de: "Energie-Umschalter"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Move a basic Energy from 1 of your Pokémon to another of your Pokémon.",
fr: "Déplacez une Énergie de base de lun de vos Pokémon vers un autre de vos Pokémon.",
es: "Mueve 1 Energía Básica de 1 de tus Pokémon a otro de tus Pokémon.",
it: "Sposta unEnergia base da uno dei tuoi Pokémon a un altro.",
pt: "Mova 1 Energia básica de 1 dos seus Pokémon para outro Pokémon seu.",
de: "Verschiebe 1 Basis-Energie von 1 deiner Pokémon auf 1 anderes deiner Pokémon."
},
trainerType: "Item",
regulationMark: "D"
}
export default card