1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

51 lines
822 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Crobat",
fr: "Nostenfer",
},
illustrator: "DemizuPosuka",
rarity: "Rare",
category: "Trainer",
set: Set,
dexId: [
169,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Golbat",
fr: "Nosferalto",
},
stage: "Stage2",
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
effect: {
en: "Your opponent's Active Pokémon is now Poisoned. Put 3 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Placez 3 marqueurs de dégâts au lieu dun sur le Pokémon ciblé entre chaque tour.",
},
}
export default card