1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sword & Shield/Darkness Ablaze/84.ts

68 lines
906 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Diglett",
fr: "Taupiqueur",
es: "Diglett",
it: "Diglett",
pt: "Diglett",
de: "Digda"
},
illustrator: "Hideki Ishikawa",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 50,
types: [
"Fighting",
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "If a Diglett digs through a field, it leaves the soil perfectly tilled and ideal for planting crops."
}
}
export default card