1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

94 lines
2.0 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Heliolisk",
fr: "Iguolta",
es: "Heliolisk",
it: "Heliolisk",
pt: "Heliolisk",
de: "Elezard"
},
illustrator: "SATOSHI NAKAI",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Helioptile",
fr: "Galvaran"
},
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Eerie Impulse",
fr: "Ondes Étranges",
es: "Onda Anómala",
it: "Elettromistero",
pt: "Impulso Misterioso",
de: "Mystowellen"
},
effect: {
en: "Flip a coin. If heads, discard an Energy from 1 of your opponents Pokémon.",
fr: "Lancez une pièce. Si cest face, défaussez une Énergie de lun des Pokémon de votre adversaire.",
es: "Lanza 1 moneda. Si sale cara, descarta 1 Energía de 1 de los Pokémon de tu rival.",
it: "Lancia una moneta. Se esce testa, scarta unEnergia da uno dei Pokémon del tuo avversario.",
pt: "Jogue 1 moeda. Se sair cara, descarte 1 Energia de 1 dos Pokémon do seu oponente.",
de: "Wirf 1 Münze. Lege bei Kopf 1 Energie von 1 Pokémon deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thunder",
fr: "Fatal-Foudre",
es: "Trueno",
it: "Tuono",
pt: "Trovão",
de: "Donner"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon sinflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
hp: 110,
types: ["Lightning"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card