1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-17 22:09:54 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

84 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Liepard",
fr: "Léopardus",
es: "Liepard",
it: "Liepard",
pt: "Liepard",
de: "Kleoparda"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
510,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Purrloin",
fr: "Chacripan",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Feint Attack",
fr: "Feinte",
},
effect: {
en: "Does 30 damage to 1 of your opponent's Pokémon. This attack's damage isn't affected by Weakness, Resistance, or any other effects on that Pokémon.",
fr: "Inflige 30 dégâts à 1 des Pokémon de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon ciblé.",
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Claw Rend",
fr: "Déchirure",
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 30 more damage.",
fr: "Si le Pokémon Défenseur a déjà des marqueurs de dégâts, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card