1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 14:49:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

79 lines
1.2 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Liepard",
fr: "Léopardus",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
510,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Purrloin",
fr: "Chacripan",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Tail Trickery",
fr: "Queue Étourdissante",
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
},
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Assist",
fr: "Assistance",
},
effect: {
en: "Flip a coin. If heads, choose 1 of your Benched Pokémon's attacks and use it as this attack.",
fr: "Lancez une pièce. Si c'est face, choisissez une attaque de l'un de vos Pokémon de Banc et utilisez-la en tant que cette attaque.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card