1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
826 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 '../Deoxys'
const card: Card = {
name: {
en: "Zubat",
fr: "Nosferapti",
de: "Zubat"
},
illustrator: "Sachiko Adachi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
41,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Self-control",
fr: "Sang-froid",
de: "Self-control"
},
effect: {
en: "Zubat can't be Paralyzed.",
fr: "Nosferapti ne peut pas être Paralysé.",
de: "Zubat can't be Paralyzed."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
de: "Bite"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card