1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

82 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Gliscor",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
472,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Gligar",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Bind Eye",
},
effect: {
en: "As long as Gliscor is your Active Pokémon, your opponent can't remove any Special Conditions by evolving or devolving his or her Pokémon. (This also includes putting a Pokémon Level-Up card onto that Pokémon.)",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Cutting Turn",
},
effect: {
en: "Flip a coin. If heads, put damage counters on the Defending Pokémon until it is 10HP away from being Knocked Out. If you do, shuffle Gliscor and all cards attached to it into your deck.",
},
},
{
cost: [
"Fighting",
],
name: {
en: "Friction Heat",
},
effect: {
en: "The Defending Pokémon is now Burned.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card