1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

82 lines
1.2 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 '../Unleashed'
const card: Card = {
name: {
en: "Golbat",
fr: "Nosferalto",
de: "Golbat"
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Zubat",
fr: "Nosferapti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Mean Look",
fr: "Regard noir",
de: "Horrorblick"
},
effect: {
en: "The Defending Pokémon cant retreat during your opponents next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite durant le prochain tour de votre adversaire.",
de: "Das Verteidigende Pokémon kann sich im nächsten Zug deines Gegners nicht zurückziehen."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0,
description: {
en: "It can drink more than 10 ounces of blood at once. If it has too much, it gets heavy and flies clumsily."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card