1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

63 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Golbat",
fr: "Nosferalto",
es: "Golbat",
it: "Golbat",
pt: "Golbat",
de: "Golbat"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
stage: "Stage1",
attacks: [{
cost: ["Darkness"],
name: {
en: "Speed Dive",
fr: "Plongée Rapide",
es: "Picado Rápido",
it: "Immersione Rapida",
pt: "Mergulho Veloz",
de: "Tempohechtsprung"
},
damage: 30
}, {
cost: ["Darkness", "Colorless"],
name: {
en: "Pitch-Black Blade",
fr: "Lame Fuligineuse",
es: "Tajo Oscuridad",
it: "Lama Buiopesto",
pt: "Lâmina do Breu",
de: "Pechschwarze Klinge"
},
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 80
}],
retreat: 1,
regulationMark: "H"
}
export default card