1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +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

87 lines
1.7 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: "Barraskewda",
fr: "Hastacuda",
es: "Barraskewda",
it: "Barraskewda",
pt: "Barraskewda",
de: "Barrakiefa"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Arrokuda",
fr: "Embrochet"
},
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Peck",
fr: "Picpic",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Pikser"
},
damage: 30,
},
{
cost: [
"Water",
],
name: {
en: "Spiral Jet",
fr: "Jet en Spirale",
es: "Chorro en Espiral",
it: "Spirale Jet",
pt: "Jato Espiral",
de: "Spiralstrahl"
},
effect: {
en: "Discard 2 Water Energy cards from your hand. If you dont, this attack does nothing.",
fr: "Défaussez 2 cartes Énergie Water de votre main. Sinon, cette attaque ne fait rien.",
es: "Descarta 2 cartas de Energía Water de tu mano. Si no lo haces, este ataque no hace nada.",
it: "Scarta due carte Energia Water che hai in mano. Se non lo fai, questo attacco non ha effetto.",
pt: "Descarte 2 cartas de Energia Water da sua mão. Se não fizer isto, este ataque não fará nada.",
de: "Lege 2 Water-Energiekarten aus deiner Hand auf deinen Ablagestapel. Wenn du das nicht machst, hat diese Attacke keine Auswirkungen."
},
damage: 130,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
hp: 120,
types: ["Water"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card