1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 18:27:51 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

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

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

33 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Rainbow Energy",
fr: "Énergie multicolore",
},
illustrator: "Kent Kanetsuna",
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
fr: "Attachez une énergie Multicolore à lun de vos Pokémon. En jeu, lénergie multicolore fournit tout type dénergie, mais une seule énergie à la fois. (Fournit uniquement de lénergie.) Lorsque vous attachez cette carte de votre main à lun de vos Pokémon, placez un marqueur de dégâts sur ce Pokémon. (Lorsquelle nest pas en jeu, lénergie multicolore compte comme de lénergie Colorless.)",
en: "Attach Rainbow Energy to 1 of your Pokémon. While in play, Rainbow Energy provides every type of Energy but provides only 1 Energy at a time. (Has no effect other than providing Energy.) When you attach this card from your hand to 1 of your Pokémon, put 1 damage counter on that Pokémon. (While not in play, Rainbow Energy counts as Colorless Energy.)"
},
energyType: "Special",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
hp: 0
}
export default card