mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
96 lines
1.6 KiB
TypeScript
96 lines
1.6 KiB
TypeScript
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: "dp2-121",
|
||
localId: 121,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Electivire",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.LIGHTNING,
|
||
],
|
||
|
||
dexId: 466,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/dp/dp2/121/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/dp/dp2/121/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.LEVELUP,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 17,
|
||
name: "Shizurow"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 580,
|
||
type: AbilityType.POKEBODY,
|
||
name: {
|
||
en: "Shocking Tail",
|
||
},
|
||
text: {
|
||
en: "As long as Electivire is your Active Pokémon, whenever your opponent attaches an Energy card from his or her hand to 1 of his or her Pokémon, put 2 damage counters on that Pokémon.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.LIGHTNING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Pulse Barrier",
|
||
},
|
||
text: {
|
||
en: "Discard all of your opponent's Pokémon Tool cards and Stadium cards in play. If you do, prevent all effects, including damage, done to Electivire during your opponent's next turn.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.METAL,
|
||
value: "-20"
|
||
}],
|
||
|
||
|
||
|
||
rarity: Rarity.RareHoloLvX,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Mysterious Treasures",
|
||
code: "dp2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|