mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
102 lines
1.6 KiB
TypeScript
102 lines
1.6 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: "sm11-87",
|
||
localId: 87,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Cresselia",
|
||
fr: "Cresselia",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 488,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/87/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/87/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm11/87/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm11/87/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Aurora Gain",
|
||
fr: "Puissance Boréale",
|
||
},
|
||
text: {
|
||
en: "Heal 30 damage from this Pokémon.",
|
||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||
},
|
||
damage: 60
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Luminous Blade",
|
||
fr: "Lame Lumineuse",
|
||
},
|
||
text: {
|
||
en: "Discard a Psychic Energy from this Pokémon.",
|
||
fr: "Défaussez une Énergie Psychic de ce Pokémon.",
|
||
},
|
||
damage: 130
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.UNCOMMON,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Unified Minds",
|
||
code: "sm11"
|
||
}
|
||
}
|
||
|
||
export default card
|