1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/026.ts

44 lines
702 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Joltik"
},
illustrator: "Kouki Saitou",
rarity: "One Diamond",
category: "Pokemon",
hp: 40,
types: ["Lightning"],
description: {
en: "Joltik can be found clinging to other Pokémon.\nIt's soaking up static electricity because it can't\nproduce a charge on its own."
},
stage: "Basic",
attacks: [{
name: {
en: "Jolt"
},
damage: 10,
cost: ["Lightning"],
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card