1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

59 lines
810 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Dugtrio",
fr: "Triopikeur",
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 90,
types: [
"Fightning",
],
evolveFrom: {
en: "Diglett",
fr: "Taupiqueur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Home Ground",
fr: "À Domicile",
},
effect: {
en: "If you have any Stadium card in play, this attack does 60 more damage.",
fr: "Si vous avez une carte Stade en jeu, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card