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

31 lines
2.3 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: "Super Boost Energy ◇",
fr: "Énergie Super Boost ◇",
es: "Energía Superimpulso ◇",
it: "Super Energia Extra ◇",
pt: "Energia Superimpulso ◇",
de: "Super-Antriebs-Energie ◇"
},
illustrator: undefined,
rarity: "Rare",
category: "Energy",
set: Set,
energyType: "Special",
effect: {
en: "This card provides Colorless Energy. \n\nWhile this card is attached to a Stage 2 Pokémon, it provides every type of Energy but provides only 1 Energy at a time. If you have 3 or more Stage 2 Pokémon in play, it provides every type of Energy but provides 4 Energy at a time.",
fr: "Cette carte fournit de lÉnergie Colorless. \n\nLorsque cette carte est attachée à un Pokémon de Niveau 2, elle fournit nimporte quel type dÉnergie mais ne fournit quune Énergie à la fois. Si vous avez au moins 3 Pokémon de Niveau 2 en jeu, elle fournit nimporte quel type dÉnergie mais elle fournit 4 Énergies à la fois.",
es: "Esta carta proporciona 1 Energía Colorless.\n\nMientras esta carta esté unida a un Pokémon de Fase 2, proporciona cualquier tipo de Energía, pero proporciona solo 1 Energía a la vez. Si tienes 3 o más Pokémon de Fase 2 en juego, proporciona cualquier tipo de Energía, pero proporciona 4 Energías a la vez.",
it: "Questa carta fornisce Energia Colorless.\n\nQuando è assegnata a un Pokémon di Fase 2, questa carta fornisce unEnergia di qualsiasi tipo, ma solo una alla volta. Se hai tre o più Pokémon di Fase 2 in gioco, questa carta fornisce Energia di qualsiasi tipo, ma quattro alla volta.",
pt: "Esta carta fornece Energia Colorless.\n\nEnquanto esta carta estiver ligada a um Pokémon Estágio 2, ela fornecerá todo tipo de Energia, mas só fornecerá 1 Energia por vez. Se você tiver 3 ou mais Pokémon Estágio 2 em jogo, ela fornecerá todo tipo de Energia, mas fornecerá 4 Energias por vez.",
de: "Diese Karte liefert Colorless-Energie.\n\nIst sie an ein Phase-2-Pokémon angelegt, liefert diese Karte jeden beliebigen Energietyp, aber immer nur jeweils 1 Energie. Wenn du 3 oder mehr Phase-2-Pokémon im Spiel hast, liefert sie jeden beliebigen Energietyp, aber immer jeweils 4 Energien."
}
}
export default card