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

79 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 '../BW trainer Kit (Excadrill).ts'
const card: Card = {
dexId: [530],
set: Set,
name: {
en: "Excadrill",
fr: "Minotaupe",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
rarity: "None",
category: "Pokemon",
illustrator: "5ban Graphics",
stage: "Stage1",
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
hp: 110,
types: [
"Fighting"
],
attacks: [{
cost: [
"Colorless",
],
name: {
en: "Metal Claw"
},
damage: 30
}, {
cost: [
"Fighting",
"Fighting",
"Fighting"
],
name: {
en: "Drill Run"
},
effect: {
en: "Discard an Energy attached to the Defending Pokémon."
},
damage: 80,
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
resistances: [{
type: "Lightning",
value: "-20"
}],
description: {
en: "It can help in tunnel construction. Its drill has evolved into steel strong enough to bore through iron plates."
},
retreat: 2,
}
export default card