1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

68 lines
927 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sword & Shield'
const card: Card = {
name: {
en: "Joltik",
fr: "Statitik",
es: "Joltik",
it: "Joltik",
pt: "Joltik",
de: "Wattzapf"
},
illustrator: "Motofumi Fujiwara",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Flop",
fr: "Flop",
es: "Vuelta",
it: "Tonfo",
pt: "Baque",
de: "Plumps"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "Joltik can be found clinging to other Pokémon. Its soaking up static electricity because it cant produce a charge on its own."
}
}
export default card