mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
69
data/Sword & Shield/Fusion Strike/215.ts
Normal file
69
data/Sword & Shield/Fusion Strike/215.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user