1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

65 lines
947 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Diglett",
fr: "Taupiqueur",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
50,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Underground Work",
fr: "Travail Souterrain",
},
effect: {
en: "If you discard this Pokémon with the effect of Giovanni's Exile, discard the top card of your opponent's deck.",
fr: "Si vous défaussez ce Pokémon du fait de leffet dExil de Giovanni, défaussez la carte du dessus du deck de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Hook",
fr: "Crochet",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card