1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Sword & Shield/Darkness Ablaze/85.ts
2021-05-26 20:35:35 +02:00

70 lines
1020 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Dugtrio",
fr: "Triopikeur"
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Diglett",
fr: "Taupiqueur"
},
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Dig",
fr: "Tunnel"
},
effect: {
en: "Flip a coin. If heads, during your opponents next turn, prevent all damage from and effects of attacks done to this Pokémon.",
fr: "Lancez une pièce. Si cest face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets dattaques infligés à ce Pokémon."
},
damage: 30,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Mud Bomb",
fr: "Boue-Bombe"
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card