mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
105 lines
1.8 KiB
TypeScript
105 lines
1.8 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: "dp5-23",
|
|
localId: 23,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Jolteon",
|
|
fr: "Voltali",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.LIGHTNING,
|
|
],
|
|
|
|
dexId: 135,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/23/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/23/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp5/23/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp5/23/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Eevee",
|
|
fr: "Evoli",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Midori Harada",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.LIGHTNING
|
|
],
|
|
name: {
|
|
en: "Thunder Fang",
|
|
fr: "Crocs Éclair",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.LIGHTNING,
|
|
Type.LIGHTNING,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Lightning Strike",
|
|
fr: "Frap'éclair",
|
|
},
|
|
text: {
|
|
en: "You may discard 2 Energy attached to Jolteon. If you do, this attack's base damage is 90 instead of 50.",
|
|
fr: "Vous pouvez défausser 2 Énergies attachées à Voltali. Les dégâts de base de cette attaque sont alors de 90 au lieu de 50.",
|
|
},
|
|
damage: 50
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+20"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.METAL,
|
|
value: "-20"
|
|
}],
|
|
|
|
|
|
|
|
rarity: Rarity.RARE,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Majestic Dawn",
|
|
code: "dp5"
|
|
}
|
|
}
|
|
|
|
export default card
|