mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
79 lines
941 B
TypeScript
79 lines
941 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Bunnelby",
|
||
fr: "Sapereau",
|
||
es: "Bunnelby",
|
||
it: "Bunnelby",
|
||
pt: "Bunnelby",
|
||
de: "Scoppel"
|
||
},
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
659,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Investida",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mud Shot",
|
||
fr: "Tir de Boue",
|
||
es: "Disparo Lodo",
|
||
it: "Colpodifango",
|
||
pt: "Tiro de Lama",
|
||
de: "Lehmschuss"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|