mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
95 lines
1.4 KiB
TypeScript
95 lines
1.4 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",
|
||
},
|
||
|
||
hp: 160,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 135,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/g1/28a/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/g1/28a/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.EX,
|
||
],
|
||
|
||
illustrator: "Naoki Saito",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING
|
||
],
|
||
name: {
|
||
en: "Swift",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Flash Ray",
|
||
},
|
||
text: {
|
||
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
||
},
|
||
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
|