1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.1 KiB
TypeScript

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