1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 00:11:58 +00:00
Files
cards-database/data/Black & White/Black & White/67.ts
2021-05-26 14:51:02 +02:00

79 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Black & White'
const card: Card = {
name: {
en: "Liepard",
fr: "Léopardus",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
510,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Purrloin",
fr: "Chacripan",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Taunt",
fr: "Provoc",
},
effect: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.",
fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Sucker Punch",
fr: "Coup Bas",
},
effect: {
en: "If this Pokémon has any Darkness Energy attached to it, this attack does 30 more damage.",
fr: "Si de l'Énergie Darkness est attachée à ce Pokémon, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card