mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
79
data/Black & White/Emerging Powers/65.ts
Normal file
79
data/Black & White/Emerging Powers/65.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Emerging Powers'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Liepard",
|
||||
fr: "Léopardus",
|
||||
},
|
||||
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: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user