1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +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
1.2 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 '../Unified Minds'
const card: Card = {
name: {
en: "Weakness Guard Energy",
fr: "Énergie Garde Faiblesse",
es: "Energía Guardia Debilidad",
it: "Energia Blocco Debolezza",
pt: "Energia de Proteção de Fraqueza",
de: "Schwächewächter-Energie"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
fr: "Cette carte fournit de lÉnergie Colorless.\n\nLe Pokémon auquel cette carte est attachée na pas de Faiblesse.",
en: "This card provides Colorless Energy.\n\nThe Pokémon this card is attached to has no Weakness.",
es: "Esta carta proporciona 1 Energía Colorless.\n\nEl Pokémon al que esté unida esta carta no tiene ninguna Debilidad.",
it: "Questa carta fornisce Energia Colorless.\n\nIl Pokémon a cui è assegnata questa carta non ha debolezza.",
pt: "Esta carta fornece Energia Colorless.\n\nO Pokémon ao qual esta carta está ligada não possui Fraqueza.",
de: "Diese Karte liefert Colorless-Energie.\n\nDas Pokémon, an das diese Karte angelegt ist, hat keine Schwäche."
},
energyType: "Special",
}
export default card