1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

96 lines
1.6 KiB
TypeScript
Raw 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 '../Undaunted'
const card: Card = {
name: {
en: "Gliscor",
fr: "Scorvol",
},
illustrator: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
472,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Gligar",
fr: "Scorplane",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Ninja Fang",
fr: "Croc Ninja",
},
effect: {
en: "If, before Gliscor does damage, the Defending Pokémon has no damage counters on it and is then damaged by this attack (after applying Weakness and Resistance), the Defending Pokémon is now Paralyzed.",
fr: "Si, avant que Scorvol ninflige de dégâts, le Pokémon Défenseur na aucun marqueur de dégât et quil subit ensuite des dégâts à cause de cette attaque (après application de la Faiblesse et de la Résistance), il est maintenant Paralysé.",
},
damage: 30,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Poison Jab",
fr: "Direct Toxik",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
description: {
en: "Its flight is soundless. It uses its lengthy tail to carry off its prey… Then its elongated fangs do the rest."
},
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card