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

71 lines
1.1 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 '../Team Rocket'
const card: Card = {
name: {
en: "Dark Dugtrio",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 50,
types: [
"Fighting",
],
evolveFrom: {
en: "Diglett",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Sinkhole",
},
effect: {
en: "Whenever your opponent's Active Pokémon retreats, your opponent flips a coin. If tails, this power does 20 damage to that Pokémon. (Don't apply Weakness and Resistance.) This power stops working while Dark Dugtrio is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Knock Down",
},
effect: {
en: "Your opponent flips a coin. If tails, this attack does 20 damage plus 20 more damage; if heads, this attack does 20 damage.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
}
export default card