mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
106
cards/bw/bw3/41.ts
Normal file
106
cards/bw/bw3/41.ts
Normal file
@ -0,0 +1,106 @@
|
||||
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: "bw3-41",
|
||||
localId: 41,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Eelektross",
|
||||
fr: "Ohmassacre",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 604,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw3/41/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw3/41/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/bw/bw3/41/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/bw/bw3/41/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eelektrik",
|
||||
fr: "Lampéroie",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 8,
|
||||
name: "Masakazu Fukuda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Acid",
|
||||
fr: "Acide",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Wild Charge",
|
||||
fr: "Éclair Fou",
|
||||
},
|
||||
text: {
|
||||
en: "This Pokémon does 10 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige 10 dégâts.",
|
||||
},
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Noble Victories",
|
||||
code: "bw3"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user