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

83 lines
1.4 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: "Bunnelby",
fr: "Sapereau",
es: "Bunnelby",
it: "Bunnelby",
pt: "Bunnelby",
de: "Scoppel"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Burrow",
fr: "Terrier",
es: "Escarbar",
it: "Buca",
pt: "Toca",
de: "Verbuddeln"
},
effect: {
en: "Discard the top card of your opponents deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
es: "Descarta la primera carta de la baraja de tu rival.",
it: "Scarta la prima carta del mazzo del tuo avversario.",
pt: "Descarte a carta de cima do baralho do seu oponente.",
de: "Lege die oberste Karte des Decks deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Headbutt Bounce",
fr: "Culbute Surprise",
es: "Bote Cabezazo",
it: "Rimbalzo Bottintesta",
pt: "Cabeçada Ricochete",
de: "Abrupter Kopfstoß"
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
hp: 70,
types: ["Colorless"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card