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

84 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.

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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Wishiwashi",
fr: "Froussardine",
es: "Wishiwashi",
it: "Wishiwashi",
pt: "Wishiwashi",
de: "Lusardin"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 30,
types: [
"Water",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Deep Sea Swirl",
fr: "Remous Abyssal",
es: "Remolino de Alta Mar",
it: "Vortice Abissale",
pt: "Giro em Mar Profundo",
de: "Tiefseewirbel"
},
effect: {
en: "Shuffle your hand into your deck. Then, draw 8 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 8 cartes.",
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 8 cartas.",
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca otto carte.",
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 8 cartas.",
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 8 Karten."
},
},
{
cost: [
"Water",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi dOnda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card