1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 00:29:55 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

84 lines
1.3 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 cant 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"
}
export default card