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:
78
data/Trainer kits/BW trainer Kit (Excadrill)/30.ts
Normal file
78
data/Trainer kits/BW trainer Kit (Excadrill)/30.ts
Normal 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
|
Reference in New Issue
Block a user