mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
104 lines
1.9 KiB
TypeScript
104 lines
1.9 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "xy4-57",
|
||
localId: 57,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Liepard",
|
||
fr: "Léopardus",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.DARKNESS,
|
||
],
|
||
|
||
dexId: 510,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy4/57/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy4/57/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy4/57/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy4/57/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Purrloin",
|
||
fr: "Chacripan",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "TOKIYA",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Gentle Bite",
|
||
fr: "Morsure Douce",
|
||
},
|
||
text: {
|
||
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 60 (before applying Weakness and Resistance).",
|
||
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 60 (avant application de la Faiblesse et de la Résistance).",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.DARKNESS,
|
||
Type.DARKNESS
|
||
],
|
||
name: {
|
||
en: "Mach Claw",
|
||
fr: "Instagriffe",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Resistance.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
||
},
|
||
damage: 40
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIGHTING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Phantom Forces",
|
||
code: "xy4"
|
||
}
|
||
}
|
||
|
||
export default card
|