1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/176.ts

40 lines
576 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Gligar"
},
illustrator: "HYOGONOSUKE",
rarity: "One Star",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
en: "It usually clings to cliffs. When it spots its prey,\nit spreads its wings and glides down to attack."
},
stage: "Basic",
attacks: [{
name: {
en: "Glide"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card