1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

103 lines
1.7 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",
es: "Magikarp",
it: "Magikarp",
pt: "Magikarp",
de: "Karpador"
},
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
},
stage: "Stage1",
description: {
en: "It has an extremely aggressive nature. The Hyper Beam it shoots from its mouth totally incinerates all targets."
}
}
export default card