1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00:49:19 +00:00

fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)

Co-authored-by: Avior <github@avior.me>
This commit is contained in:
yugi-classic
2025-05-04 00:37:30 +02:00
committed by GitHub
parent d0c43e5ce6
commit d169a67833
128 changed files with 2709 additions and 1068 deletions

View File

@ -0,0 +1,78 @@
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