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

73 lines
969 B
TypeScript
Raw Permalink 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 '../Gym Challenge'
const card: Card = {
name: {
en: "Brock's Dugtrio",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
51,
],
hp: 60,
types: [
"Fighting",
],
evolveFrom: {
en: "Diglett",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Lie Low",
},
effect: {
en: "All damage done to Brock's Dugtrio during your opponent's next turn is reduced by 20 (after applying Weakness and Resistance).",
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Earthdrill",
},
effect: {
en: "This attack can't be used unless Brock's Dugtrio used its Lie Low attack last turn.",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
}
export default card