1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
2021-11-12 17:24:19 +01:00

76 lines
930 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 '../Neo Revelation'
const card: Card = {
name: {
en: "Zubat",
fr: "Nosferapti"
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
41,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure"
},
damage: 10,
},
{
cost: [
"Grass",
],
name: {
en: "Poison Spray",
fr: "Jet-venin"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné."
}
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
description: {
fr: "Quand il vole, il émet des ondes ultrasoniques pour déterminer ce qui l'entoure."
}
}
export default card