mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
103 lines
1.7 KiB
TypeScript
103 lines
1.7 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: "dp4-50",
|
|
localId: 50,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Purugly",
|
|
fr: "Chaffreux",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 432,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/50/low",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/50/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp4/50/high",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp4/50/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Glameow",
|
|
fr: "Chaglam",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Ken Sugimori",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Swagger",
|
|
fr: "Vantardise",
|
|
},
|
|
text: {
|
|
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
|
|
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Fury Swipes",
|
|
fr: "Combo-griffe",
|
|
},
|
|
text: {
|
|
en: "Flip 3 coins. This attack does 40 damage times the number of heads.",
|
|
fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces.",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Great Encounters",
|
|
code: "dp4"
|
|
}
|
|
}
|
|
|
|
export default card
|