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/095.ts

44 lines
635 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Gliscor"
},
illustrator: "Shiburingaru",
rarity: "Two Diamond",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
evolveFrom: {
en: "Gligar"
},
description: {
en: "It observes prey while hanging inverted from\nbranches. When the chance presents itself,\nit swoops!"
},
stage: "Stage1",
attacks: [{
name: {
en: "Sharp Fang"
},
damage: 60,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 1
}
export default card