mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
114 lines
2.2 KiB
TypeScript
114 lines
2.2 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: "smp-SM173",
|
||
localId: "SM173",
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Jolteon-GX",
|
||
fr: "Voltali-GX",
|
||
},
|
||
|
||
hp: 200,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 135,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM173/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM173/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/smp/SM173/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/smp/SM173/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Eevee",
|
||
fr: "Évoli",
|
||
},
|
||
|
||
tags: [
|
||
Tag.GX,
|
||
],
|
||
|
||
illustrator: "PLANETA Otani",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Electrobullet",
|
||
fr: "Électrojectile",
|
||
},
|
||
text: {
|
||
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige 30 dégâts à l’un des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Head Bolt",
|
||
fr: "Éclair Frontal",
|
||
},
|
||
damage: 110
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Swift Run GX",
|
||
fr: "Course Rapide-GX",
|
||
},
|
||
text: {
|
||
en: "Prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn. (You can't use more than 1 GX attack in a game.)",
|
||
fr: "Évitez tous les effets d’attaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
},
|
||
damage: 110
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.COMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "SM Black Star Promos",
|
||
code: "smp"
|
||
}
|
||
}
|
||
|
||
export default card
|