mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
102 lines
1.9 KiB
TypeScript
102 lines
1.9 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: "g1-28",
|
||
localId: 28,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Jolteon-EX",
|
||
fr: "Voltali-EX",
|
||
},
|
||
|
||
hp: 160,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 135,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/g1/28/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/g1/28/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/g1/28/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/g1/28/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.EX,
|
||
],
|
||
|
||
illustrator: "Naoki Saito",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Swift",
|
||
fr: "Météores",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flash Ray",
|
||
fr: "Rayon Flash",
|
||
},
|
||
text: {
|
||
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
||
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.",
|
||
},
|
||
damage: 70
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Generations",
|
||
code: "g1"
|
||
}
|
||
}
|
||
|
||
export default card
|