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

93 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: "Gyarados",
fr: "Léviator",
es: "Gyarados",
it: "Gyarados",
pt: "Gyarados",
de: "Garados"
},
illustrator: "hatachu",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Magikarp",
fr: "Magicarpe"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wrack Down",
fr: "Réduire en Poussière",
es: "Desmoronar",
it: "Abbattere",
pt: "Desmoronar",
de: "Niederschleudern"
},
damage: 90,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Big Storm",
fr: "Forte Tempête",
es: "Gran Tempestad",
it: "Fortempesta",
pt: "Tempestade Enorme",
de: "Großer Sturm"
},
effect: {
en: "Discard any Stadium in play.",
fr: "Défaussez tout Stade en jeu.",
es: "Descarta cualquier Estadio en juego.",
it: "Scarta una carta Stadio qualsiasi in gioco.",
pt: "Descarte qualquer Estádio em jogo.",
de: "Lege 1 beliebige Stadionkarte im Spiel auf den Ablagestapel."
},
damage: 200,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
hp: 180,
types: ["Water"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card