1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

78 lines
1.1 KiB
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 '../Deoxys'
const card: Card = {
name: {
en: "Golbat",
fr: "Nosferalto",
de: "Golbat"
},
illustrator: "Sachiko Adachi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Zubat",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Self-control",
fr: "Sang-froid",
de: "Self-control"
},
effect: {
en: "Golbat can't be Paralyzed.",
fr: "Nosferalto ne peut pas être Paralysé.",
de: "Golbat can't be Paralyzed."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Spiral Drain",
fr: "Spirale équisante",
de: "Spiral Drain"
},
effect: {
en: "Remove 1 damage counter from Golbat.",
fr: "Retirez à Nosferalto 1 marqueur de dégât.",
de: "Remove 1 damage counter from Golbat."
},
damage: 20
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card