1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

60 lines
663 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Golbat",
},
illustrator: "Kazuyuki Kano",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Zubat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Pulse Search",
},
effect: {
en: "Look at your opponent's hand.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card