1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
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