1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

99 lines
2.1 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: "Zacian",
fr: "Zacian",
es: "Zacian",
it: "Zacian",
pt: "Zacian",
de: "Zacian"
},
illustrator: "Hideki Ishikawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Energy Stream",
fr: "Courant dÉnergie",
es: "Torrente de Energía",
it: "Getto dEnergia",
pt: "Fluxo de Energia",
de: "Energiestrom"
},
effect: {
en: "Attach a Metal Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie Metal de votre pile de défausse à ce Pokémon.",
es: "Une 1 carta de Energía Metal de tu pila de descartes a este Pokémon.",
it: "Assegna a questo Pokémon una carta Energia Metal dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia Metal da sua pilha de descarte a este Pokémon.",
de: "Lege 1 Metal-Energiekarte aus deinem Ablagestapel an dieses Pokémon an."
},
damage: 30,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Smashing Edge",
fr: "Tranchant Fracassant",
es: "Filo Devastador",
it: "Schiaccialama",
pt: "Gume Esmagador",
de: "Schmetterklinge"
},
effect: {
en: "Flip a coin. If tails, discard 2 Energy from this Pokémon.",
fr: "Lancez une pièce. Si cest pile, défaussez 2 Énergies de ce Pokémon.",
es: "Lanza 1 moneda. Si sale cruz, descarta 2 Energías de este Pokémon.",
it: "Lancia una moneta. Se esce croce, scarta due Energie da questo Pokémon.",
pt: "Jogue 1 moeda. Se sair coroa, descarte 2 Energias deste Pokémon.",
de: "Wirf 1 Münze. Lege bei Zahl 2 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
hp: 120,
types: ["Metal"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card