1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

85 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Voltorb",
fr: "Voltorbe"
},
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,
description: {
fr: "Il ressemble à une Poké Ball. Ce Pokémon dangereux peut exploser ou s'électrifier au toucher."
}
}
export default card