mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 23:29:55 +00:00
44 lines
663 B
TypeScript
44 lines
663 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Golbat"
|
|
},
|
|
|
|
illustrator: "Tomokazu Komiya",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Darkness"],
|
|
stage: "Stage1",
|
|
evolveFrom: {
|
|
en: "Zubat"
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Wing Attack"
|
|
},
|
|
|
|
damage: "40"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Star",
|
|
|
|
description: {
|
|
en: "It loves to drink other creatures' blood. It's said that if it finds others of its kind going hungry, it sometimes shares the blood it's gathered.",
|
|
}
|
|
}
|
|
|
|
export default card
|