mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
80 lines
1.1 KiB
TypeScript
80 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Gliscor",
|
|
fr: "Scorvol",
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
472,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
evolveFrom: {
|
|
en: "Gligar",
|
|
fr: "Skorgla",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
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: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Sharp Tail",
|
|
fr: "Queue tranchante",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 30 damage plus 40 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 40 dégâts supplémentaires.",
|
|
},
|
|
damage: 30,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|