1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

89 lines
1.9 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Gliscor",
fr: "Scorvol",
es: "Gliscor",
it: "Gliscor",
pt: "Gliscor",
de: "Skorgro"
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
472,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Gligar",
fr: "Scorplane",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Finishing Stinger",
fr: "Dard Final",
es: "Aguijón Definitivo",
it: "Puntura Finale",
pt: "Ferrão Final",
de: "Finalstachel"
},
effect: {
en: "If your opponents Active Pokémon has no damage counters on it before this attack does damage, this attack does nothing.",
fr: "Si le Pokémon Actif de votre adversaire na aucun marqueur de dégâts avant que cette attaque ninflige des dégâts, cette attaque ne fait rien.",
es: "Si el Pokémon Activo de tu rival no tiene ningún contador de daño sobre él antes de que este ataque inflija daño, este ataque no hace nada.",
it: "Se il Pokémon attivo del tuo avversario non ha segnalini danno prima che questo attacco infligga danni, questo attacco non ha effetto.",
pt: "Se o Pokémon Ativo do seu oponente não tiver nenhum contador de dano nele antes deste ataque causar dano, este ataque não fará nada.",
de: "Wenn auf dem Aktiven Pokémon deines Gegners keine Schadensmarken liegen, bevor diese Attacke Schaden zufügt, hat diese Attacke keine Auswirkungen."
},
damage: 70,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Guillotine",
fr: "Guillotine",
es: "Guillotina",
it: "Ghigliottina",
pt: "Guilhotina",
de: "Guillotine"
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card