1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

93 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Voltorb",
fr: "Voltorb (different color)",
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
100,
],
hp: 60,
types: [
"Lightning",
],
evolveFrom: {
fr: "Voltorbe",
},
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fastball",
fr: "Balle rapide",
},
effect: {
en: "Choose 1 of your opponent's Pokémon.  Flip a coin.  If heads, this attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire. Lancez une pièce. Si c'est face, cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},
{
cost: [
"Lightning",
],
name: {
en: "Charge Beam",
fr: "Rayon chargé",
},
effect: {
en: "Search your discard pile for a lightning Energy card and attach it to Voltorb.",
fr: "Choisissez dans votre pile de défausse une carte Énergie Lightning et attachez-la à Voltorbe.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thundershock",
fr: "Éclair",
},
effect: {
en: "Flip a coin.  If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card