mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
73 lines
1.4 KiB
TypeScript
73 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Up'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Joltik",
|
||
fr: "Statitik",
|
||
es: "Joltik",
|
||
it: "Joltik",
|
||
pt: "Joltik",
|
||
de: "Wattzapf"
|
||
},
|
||
illustrator: "Yuka Morii",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
595,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Leech Life",
|
||
fr: "Vampirisme",
|
||
es: "Chupavidas",
|
||
it: "Sanguisuga",
|
||
pt: "Suga-vidas",
|
||
de: "Blutsauger"
|
||
},
|
||
effect: {
|
||
en: "Heal from this Pokémon the same amount of damage you did to your opponent’s Active Pokémon.",
|
||
fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligés au Pokémon Actif de votre adversaire.",
|
||
es: "Cura a este Pokémon el mismo número de puntos de daño que hayas infligido al Pokémon Activo de tu rival.",
|
||
it: "Cura questo Pokémon da una quantità di danni pari a quelli inflitti al Pokémon attivo del tuo avversario.",
|
||
pt: "Cure deste Pokémon a mesma quantidade de dano que você causou ao Pokémon Ativo do seu oponente.",
|
||
de: "Heile bei diesem Pokémon genauso viel Schaden, wie du dem Aktiven Pokémon deines Gegners zugefügt hast."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|