1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

81 lines
1.3 KiB
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 '../Expedition Base Set'
const card: Card = {
name: {
en: "Dugtrio",
fr: "Triopikeur",
de: "Digdri"
},
illustrator: "Masako Yamashita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 70,
types: [
"Fighting",
],
evolveFrom: {
en: "Diglett",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Mud Slap",
fr: "Coud'boue",
de: "Mud Slap"
},
damage: 20,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Magnitude",
fr: "Ampleur",
de: "Magnitude"
},
effect: {
en: "Does 10 damage to each Benched Pokémon (yours and your opponent's). (Don't apply Weakness and resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chaque Pokémon du Banc (le vôtre et celui de votre adversaire). (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
de: "Does 10 damage to each Benched Pokémon (yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
}
export default card