1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

75 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.

This file contains Unicode characters that might be confused with other characters. 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 '../Unified Minds'
const card: Card = {
name: {
en: "Galvantula",
fr: "Mygavolt",
es: "Galvantula",
it: "Galvantula",
pt: "Galvantula",
de: "Voltula"
},
illustrator: "Yumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
596,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Joltik",
fr: "Statitik",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Live Wire",
fr: "Fil Sous Tension",
es: "Cable Conectado",
it: "Filo Elettrificato",
pt: "Fio Sob Tensão",
de: "Unter Strom stehen"
},
effect: {
en: "This attack does 50 damage to 1 of your opponents Pokémon. Also apply Weakness and Resistance for Benched Pokémon.",
fr: "Cette attaque inflige 50 dégâts à lun des Pokémon de votre adversaire. Appliquez aussi la Faiblesse et la Résistance aux Pokémon de Banc.",
es: "Este ataque hace 50 puntos de daño a 1 de los Pokémon de tu rival. Aplica también Debilidad y Resistencia para los Pokémon en Banca.",
it: "Questo attacco infligge 50 danni a uno dei Pokémon del tuo avversario. Dovrai applicare debolezza e resistenza anche ai Pokémon in panchina.",
pt: "Este ataque causa 50 pontos de dano a 1 dos Pokémon do seu oponente. Também aplique Fraqueza e Resistência aos Pokémon no Banco.",
de: "Diese Attacke fügt 1 Pokémon deines Gegners 50 Schadenspunkte zu. Wende Schwäche und Resistenz auch bei Pokémon auf der Bank an."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card