1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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.5 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.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Heat Fire Energy",
fr: "Énergie Fire Chaleur",
es: "Energía Fire Calor",
it: "Energia Fire Calore",
pt: "Energia Fire Incandescente",
de: "Hitze-Fire-Energie"
},
illustrator: undefined,
rarity: "Uncommon",
category: "Energy",
set: Set,
effect: {
en: "As long as this card is attached to a Pokémon, it provides Fire Energy.\n\n \n\nThe Fire Pokémon this card is attached to gets +20 HP.",
fr: "Tant que cette carte est attachée à un Pokémon, elle fournit une Énergie Fire.\n\n \n\n\nCette carte ajoute 20 PV au Pokémon Fire auquel elle est attachée.",
es: "Mientras esta carta esté unida a 1 Pokémon, proporciona 1 Energía Fire.\n\n\n\n \n\n\n\nEl Pokémon Fire al que esté unida esta carta obtiene 20 PS más.",
it: "Fintanto che questa carta è assegnata a un Pokémon, fornisce Energia Fire.\n\n\n\n \n\n\n\nIl Pokémon Fire a cui è assegnata questa carta ha 20 PS in più.",
pt: "Enquanto esta carta estiver ligada a um Pokémon, ela fornecerá Energia Fire.\n\n\n\n \n\n\n\nO Pokémon Fire ao qual esta carta está ligada recebe 20 PS a mais.",
de: "Solange diese Karte an ein Pokémon angelegt ist, liefert sie Fire-Energie.\n\n\n\nDas Fire-Pokémon, an das diese Karte anlegt ist, erhält +20 KP."
},
energyType: "Special",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card