1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Excadrill",
fr: "Minotaupe",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
530,
],
hp: 140,
types: [
"Fightning",
],
evolveFrom: {
en: "Drilbur",
fr: "Rototaupe",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
],
name: {
en: "Eleventh Hour Tackle",
fr: "Tacle Désespéré",
},
effect: {
en: "If there are 3 or fewer cards in your deck, this attack does 150 more damage.",
fr: "Sil y a 3 cartes ou moins dans votre deck, cette attaque inflige 150 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Fightning",
],
name: {
en: "Drill Bazooka",
fr: "Perceuse Bazooka",
},
effect: {
en: "Discard the top 4 cards of your deck.",
fr: "Défaussez les 4 cartes du dessus de votre deck.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card