1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-14 13:55:09 +00:00

Most data added (#106)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-18 11:53:03 +02:00
committed by GitHub
parent 6975dd8457
commit 142310c539
364 changed files with 11547 additions and 0 deletions

View File

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