mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
77 lines
1.2 KiB
TypeScript
77 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Voltorb",
|
|
fr: "Voltorb",
|
|
},
|
|
illustrator: "Miki Tanaka",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
100,
|
|
],
|
|
hp: 60,
|
|
types: [
|
|
"Lightning",
|
|
],
|
|
evolveFrom: {
|
|
fr: "Voltorbe",
|
|
},
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Outlet",
|
|
fr: "Exutoire",
|
|
},
|
|
effect: {
|
|
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: [
|
|
"Lightning",
|
|
],
|
|
name: {
|
|
en: "Bouncing Ball",
|
|
fr: "Balle rebondissante",
|
|
},
|
|
effect: {
|
|
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: "Fighting",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Metal",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|