1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-26 01:49:54 +00:00

62 lines
997 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Alolan Dugtrio",
fr: "Triopikeur dAlola",
},
illustrator: "Megumi Mizutani",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 60,
types: [
"Metal",
],
evolveFrom: {
en: "Alolan Diglett",
fr: "Taupiqueur dAlola",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Gold Rush",
fr: "Ruée Vers lOr",
},
effect: {
en: "Discard any number of Metal Energy cards from your hand. This attack does 30 damage for each card you discarded in this way.",
fr: "Défaussez autant de cartes Énergie Metal que vous voulez de votre main. Cette attaque inflige 30 dégâts pour chaque carte défaussée de cette façon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card