1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

98 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 '../Champion\'s Path'
const card: Card = {
dexId: [510],
name: {
en: "Liepard",
fr: "Léopardus",
es: "Liepard",
it: "Liepard",
pt: "Liepard",
de: "Kleoparda"
},
illustrator: "Hasuno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Purrloin",
fr: "Chacripan"
},
abilities: [
{
type: "Ability",
name: {
en: "Limber",
fr: "Échauffement",
es: "Flexibilidad",
it: "Scioltezza",
pt: "Elasticidade",
de: "Flexibilität"
},
effect: {
en: "This Pokémon can't be Paralyzed.",
fr: "Ce Pokémon ne peut pas être Paralysé.",
es: "Este Pokémon no puede pasar a estar Paralizado.",
it: "Questo Pokémon non può venire paralizzato.",
pt: "Este Pokémon não pode ser Paralisado.",
de: "Dieses Pokémon kann nicht paralysiert werden."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Slashing Claw",
fr: "Griffe Taillante",
es: "Garra Cuchillazo",
it: "Artigli Laceranti",
pt: "Garra Cortadora",
de: "Schlitzende Klaue"
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Don't be fooled by its gorgeous fur and elegant figure. This is a moody and vicious Pokémon."
}
}
export default card