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 '../../../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: "dp7-81",
|
|
localId: 81,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Voltorb",
|
|
fr: "Voltorb",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.LIGHTNING,
|
|
],
|
|
|
|
dexId: 100,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/81/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/81/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp7/81/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp7/81/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
fr: "Voltorbe",
|
|
},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 37,
|
|
name: "Miki Tanaka"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Outlet",
|
|
fr: "Exutoire",
|
|
},
|
|
text: {
|
|
en: "Search your deck for a Lightning Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
|
fr: "Choisissez dans votre deck une carte Énergie Lightning, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.LIGHTNING
|
|
],
|
|
name: {
|
|
en: "Bouncing Ball",
|
|
fr: "Balle rebondissante",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If tails, Voltorb does 10 damage to itself.",
|
|
fr: "Lancez une pièce. Si c'est pile, Voltorbe s'inflige 10 dégâts.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+10"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.METAL,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Stormfront",
|
|
code: "dp7"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|