mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
97 lines
1.4 KiB
TypeScript
97 lines
1.4 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "pl1-93",
|
|
localId: 93,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Skitty",
|
|
fr: "Skitty",
|
|
},
|
|
|
|
hp: 60,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 300,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/93/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/93/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/93/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/93/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 8,
|
|
name: "Masakazu Fukuda"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Heal Bell",
|
|
fr: "Glas de soin",
|
|
},
|
|
text: {
|
|
en: "Remove 1 damage counter from each of your Pokémon.",
|
|
fr: "Retirez à chacun de vos Pokémon 1 marqueur de dégât.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Take Down",
|
|
fr: "Bélier",
|
|
},
|
|
text: {
|
|
en: "Skitty does 10 damage to itself.",
|
|
fr: "Skitty s'inflige 10 dégâts.",
|
|
},
|
|
damage: 20
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIGHTING,
|
|
value: "+10"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Common,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|