1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

40 lines
1.6 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Hiding Darkness Energy",
fr: "Énergie Darkness Repaire",
es: "Energía Darkness Escondida",
it: "Energia Darkness Nascosta",
pt: "Energia Darkness Oculta",
de: "Versteck-Darkness-Energie"
},
illustrator: undefined,
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
en: "As long as this card is attached to a Pokémon, it provides Darkness Energy.\n\n \n\nThe Darkness Pokémon this card is attached to has no Retreat Cost.",
fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Darkness.\n\n \n\n\nLe Pokémon Darkness auquel cette carte est attachée na pas de Coût de Retraite.",
es: "Mientras esta carta esté unida a 1 Pokémon, proporciona 1 Energía Darkness.\n\n\n\n \n\n\n\nEl Pokémon Darkness al que esté unida esta carta no tiene ningún Coste de Retirada.",
it: "Fintanto che questa carta è assegnata a un Pokémon, fornisce Energia Darkness.\n\n\n\n \n\n\n\nIl Pokémon Darkness a cui è assegnata questa carta non ha costo di ritirata.",
pt: "Enquanto esta carta estiver ligada a um Pokémon, ela fornecerá Energia Darkness.\n\n\n\n \n\n\n\nO Pokémon Darkness ao qual esta carta está ligada não tem custo de Recuo.",
de: "Solange diese Karte an ein Pokémon angelegt ist, liefert sie Darkness-Energie.\n\n\n\nDas Darkness-Pokémon, an das diese Karte anlegt ist, hat keine Rückzugskosten."
},
energyType: "Special",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card