mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
70 lines
1.1 KiB
TypeScript
70 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [660],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Diggersby",
|
|
fr: "Excavarenne",
|
|
es: "Diggersby",
|
|
it: "Diggersby",
|
|
pt: "Diggersby",
|
|
de: "Grebbit"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Bunnelby",
|
|
fr: "Sapereau",
|
|
es: "Bunnelby",
|
|
it: "Bunnelby",
|
|
pt: "Bunnelby",
|
|
de: "Scoppel"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
retreat: 4,
|
|
regulationMark: "E",
|
|
illustrator: "MAHOU",
|
|
|
|
description: {
|
|
en: "The fur on its belly retains heat exceptionally well. People used to make heavy winter clothing from fur shed by this Pokémon."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Hammer In"
|
|
},
|
|
|
|
damage: 80
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Take Down"
|
|
},
|
|
|
|
damage: 150,
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 30 damage to itself."
|
|
}
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |