mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
41 lines
582 B
TypeScript
41 lines
582 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Diglett"
|
|
},
|
|
|
|
illustrator: "Masako Yamashita",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Mud Slap"
|
|
},
|
|
|
|
damage: "20"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "It lives about one yard underground, where it feeds on plant roots. It sometimes appears aboveground.",
|
|
}
|
|
}
|
|
|
|
export default card
|