1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +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.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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Wailord V",
fr: "Wailord V",
es: "Wailord V",
it: "Wailord V",
pt: "Wailord V",
de: "Wailord V"
},
illustrator: "PLANETA Mochizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 280,
types: [
"Water",
],
attacks: [
{
cost: [
"Water",
],
name: {
en: "Draw Up",
fr: "Puiser",
es: "Alzar",
it: "Pesca Alta",
pt: "Erguer",
de: "Schöpfen"
},
effect: {
en: "Attach up to 3 Water Energy cards from your discard pile to this Pokémon.",
fr: "Attachez jusquà 3 cartes Énergie Water de votre pile de défausse à ce Pokémon.",
es: "Une hasta 3 cartas de Energía Water de tu pila de descartes a este Pokémon.",
it: "Assegna a questo Pokémon fino a tre carte Energia Water dalla tua pila degli scarti.",
pt: "Ligue até 3 cartas de Energia Water da sua pilha de descarte a este Pokémon.",
de: "Lege bis zu 3 Water-Energiekarten aus deinem Ablagestapel an dieses Pokémon an."
},
},
{
cost: [
"Water",
"Water",
"Water",
"Water",
],
name: {
en: "Ocean Waves",
fr: "Vagues Océaniques",
es: "Olas Oceánicas",
it: "Onde Oceaniche",
pt: "Ondas Oceânicas",
de: "Ozeanwellen"
},
effect: {
en: "Flip 3 coins. This attack does 120 damage for each heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 120 dégâts pour chaque côté face.",
es: "Lanza 3 monedas. Este ataque hace 120 puntos de daño por cada cara.",
it: "Lancia tre volte una moneta. Questo attacco infligge 120 danni ogni volta che esce testa.",
pt: "Jogue 3 moedas. Este ataque causa 120 pontos de dano para cada cara.",
de: "Wirf 3 Münzen. Diese Attacke fügt 120 Schadenspunkte pro Kopf zu."
},
damage: "120×",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 4,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card