1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

78 lines
982 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Excadrill",
fr: "Minotaupe",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
530,
],
hp: 110,
types: [
"Fightning",
],
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Metal Claw",
fr: "Griffe Acier",
},
damage: 30,
},
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Drill Run",
fr: "Tunnelier",
},
effect: {
en: "Discard an Energy attached to the Defending Pokémon.",
fr: "Défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 2,
}
export default card