1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

73 lines
1.1 KiB
TypeScript
Raw Permalink 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 '../Unseen Forces'
const card: Card = {
name: {
en: "Gligar",
fr: "Scorplane",
de: "Skorgla"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
207,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Free Flight",
fr: "Vol gratuit",
de: "Free Flight"
},
effect: {
en: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0.",
fr: "Si Scorplane ne possède pas d'Énergie, son Coût de retraite est de 0.",
de: "If Gligar has no Energy attached to it, Gligar's Retreat Cost is 0."
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Toxic Grip",
fr: "Pince empoisonnée",
de: "Toxic Grip"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
de: "The Defending Pokémon is now Poisoned."
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card