1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,92 @@
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: "Fightning",
value: "+10"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card