mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
116
cards/xy/xy5/97.ts
Normal file
116
cards/xy/xy5/97.ts
Normal file
@ -0,0 +1,116 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../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.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy5/97/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy5/97/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy5/97/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Drilbur",
|
||||
fr: "Rototaupe",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 116,
|
||||
name: "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.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Primal Clash",
|
||||
code: "xy5"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user