mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
104 lines
2.6 KiB
TypeScript
104 lines
2.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galvantula",
|
||
fr: "Mygavolt",
|
||
es: "Galvantula",
|
||
it: "Galvantula",
|
||
pt: "Galvantula",
|
||
de: "Voltula"
|
||
},
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
596,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Joltik",
|
||
fr: "Statitik",
|
||
es: "Joltik",
|
||
it: "Joltik",
|
||
pt: "Joltik",
|
||
de: "Wattzapf"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Cobweb Trip",
|
||
fr: "Toile Entrave",
|
||
es: "Paseo Telaraña",
|
||
it: "Inciampatela",
|
||
pt: "Armadilha de Teia de Aranha",
|
||
de: "Netzfalle"
|
||
},
|
||
effect: {
|
||
en: "Switch 1 of your opponent's Benched Pokémon with your opponent's Active Pokémon. The new Active Pokémon is now Confused.",
|
||
fr: "Échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Confus.",
|
||
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. El nuevo Pokémon Activo pasa a estar Confundido.",
|
||
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Il nuovo Pokémon attivo viene confuso.",
|
||
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo desse oponente. O novo Pokémon Ativo agora está confuso.",
|
||
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen das Aktive Pokémon deines Gegners aus. Das neue Aktive Pokémon ist jetzt verwirrt."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Electroweb",
|
||
fr: "Toile Élek",
|
||
es: "Electrotela",
|
||
it: "Elettrotela",
|
||
pt: "Teia Elétrica",
|
||
de: "Elektronetz"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
|
||
es: "El Pokémon Defensor no puede retirarse durante el próximo turno de tu rival.",
|
||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
||
pt: "O Pokémon Defensor não poderá recuar durante a próxima vez de jogar do seu oponente.",
|
||
de: "Das Verteidigende Pokémon kann sich während des nächsten Zuges deines Gegners nicht zurückziehen."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|