1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

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

* Some more changes

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

* u

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

* continuing update

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

* Finished ?

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

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

97 lines
1.5 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 = {
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