mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
113 lines
2.1 KiB
TypeScript
113 lines
2.1 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xy5-97",
|
||
localId: 97,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Excadrill",
|
||
fr: "Minotaupe",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 530,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy5/97/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy5/97/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy5/97/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy5/97/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Drilbur",
|
||
fr: "Rototaupe",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "PLANETA",
|
||
|
||
abilities: [{
|
||
id: -1,
|
||
type: AbilityType.ANCIENTTRAIT,
|
||
name: {
|
||
fr: "Offensive Ω",
|
||
},
|
||
text: {
|
||
fr: "Ce Pokémon peut attaquer deux fois par tour. (Si la première attaque met K.O. le Pokémon Actif de votre adversaire, vous pouvez encore attaquer après que votre adversaire a choisi un nouveau Pokémon Actif.)",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Dredge",
|
||
fr: "Débourbage",
|
||
},
|
||
text: {
|
||
en: "Search your deck for 2 Energy cards and attach them to this Pokémon. Shuffle your deck afterward.",
|
||
fr: "Cherchez 2 cartes Énergie dans votre deck et attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Mach Claw",
|
||
fr: "Instagriffe",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Resistance.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Primal Clash",
|
||
code: "xy5"
|
||
}
|
||
}
|
||
|
||
export default card
|