1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

70 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [530],
set: Set,
name: {
en: "Excadrill",
fr: "Minotaupe",
es: "Excadrill",
it: "Excadrill",
pt: "Excadrill",
de: "Stalobor"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Metal"],
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
es: "Drilbur",
it: "Drilbur",
pt: "Drilbur",
de: "Rotomurf"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Lee HyunJung",
description: {
en: "Known as the Drill King, this Pokémon can tunnel through the terrain at speeds of over 90 mph."
},
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Metal Claw"
},
damage: 50
}, {
cost: ["Metal", "Metal", "Colorless"],
name: {
en: "Rock Tomb"
},
damage: 120,
effect: {
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card