mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 17:57:51 +00:00
99 lines
1.5 KiB
TypeScript
99 lines
1.5 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: "pl1-51",
|
|
localId: 51,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Kirlia",
|
|
fr: "Kirlia",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.PSYCHIC,
|
|
],
|
|
|
|
dexId: 281,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/51/low",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/51/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/51/high",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/51/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Ralts",
|
|
fr: "Tarsal",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: "Naoyo Kimura",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Teleportation Burst",
|
|
fr: "Téléportation explosive",
|
|
},
|
|
text: {
|
|
en: "You may switch Kirlia with 1 of your Benched Pokémon.",
|
|
fr: "Vous pouvez échanger Kirlia avec 1 des Pokémon de Banc de votre adversaire.",
|
|
},
|
|
damage: 30
|
|
},{
|
|
cost: [
|
|
Type.PSYCHIC,
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Super Psy Bolt",
|
|
fr: "Super psy",
|
|
},
|
|
damage: 60
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.PSYCHIC,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.UNCOMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|