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

74 lines
926 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Golbat",
fr: "Nosferalto",
de: "Golbat"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Zubat",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Supersonic",
fr: "Ultrason",
de: "Supersonic"
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
de: "The Defending Pokémon is now Confused."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Sharp Fang",
fr: "Croc aiguisé",
de: "Sharp Fang"
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card