1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 07:55:13 +00:00
Files
cards-database/data/Base/Base Set/67.ts
2021-11-12 17:07:41 +01:00

55 lines
645 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 '../Base Set'
const card: Card = {
name: {
en: "Voltorb",
fr: "Voltorbe"
},
illustrator: "Keiji Kinebuchi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
100,
],
hp: 40,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "Vivant dans les centrales, ce Pokémon survolté est souvent confondu avec une Poké Ball."
}
}
export default card