1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 142310c539
Most data added (#106)
Signed-off-by: Avior <github@avior.me>
2021-10-18 11:53:03 +02:00

69 lines
989 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 '../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