mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
89 lines
1.5 KiB
TypeScript
89 lines
1.5 KiB
TypeScript
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 opponent's 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
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It excels at digging holes. Using its ears, it can dig a nest 33 feet deep in one night."
|
||
}
|
||
}
|
||
|
||
export default card
|