1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/107.ts

44 lines
690 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Zubat"
},
illustrator: "Shigenori Negishi",
rarity: "One Diamond",
category: "Pokemon",
hp: 50,
types: ["Darkness"],
description: {
en: "It emits ultrasonic waves from its mouth to check\nits surroundings. Even in tight caves, Zubat flies\naround with skill."
},
stage: "Basic",
attacks: [{
name: {
en: "Venomous Fang"
},
damage: 10,
cost: ["Darkness"],
effect: {
en: "Your opponent's Active Pokémon is now Poisoned."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card