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

92 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Diggersby",
fr: "Excavarenne",
es: "Diggersby",
it: "Diggersby",
pt: "Diggersby",
de: "Grebbit"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Bunnelby",
fr: "Sapereau"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mining Rush",
fr: "Excavation Hâtive",
es: "Fiebre Minera",
it: "Scavo Alacre",
pt: "Mineração Acelerada",
de: "Schaufelansturm"
},
effect: {
en: "Discard up to 6 cards from the top of your deck. If you do, this attack does 30 damage for each card you discarded in this way.",
fr: "Défaussez jusquà 6 cartes du dessus de votre deck. Dans ce cas, cette attaque inflige 30 dégâts pour chaque carte défaussée de cette façon.",
es: "Descarta hasta 6 cartas de la parte superior de tu baraja. Si lo haces, este ataque hace 30 puntos de daño por cada carta que hayas descartado de esta manera.",
it: "Scarta fino a sei carte dalla cima del tuo mazzo. Se lo fai, questo attacco infligge 30 danni per ogni carta che hai scartato in questo modo.",
pt: "Descarte até 6 cartas de cima do seu baralho. Se fizer isto, este ataque causará 30 pontos de dano para cada carta descartada desta forma.",
de: "Lege bis zu 6 Karten von deinem Deck auf deinen Ablagestapel. Wenn du das machst, fügt diese Attacke für jede auf diese Weise auf deinen Ablagestapel gelegte Karte 30 Schadenspunkte zu."
},
damage: "30×",
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Headbutt Bounce",
fr: "Culbute Surprise",
es: "Bote Cabezazo",
it: "Rimbalzo Bottintesta",
pt: "Cabeçada Ricochete",
de: "Abrupter Kopfstoß"
},
damage: 110,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
hp: 130,
types: ["Colorless"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card