mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
97 lines
1.7 KiB
TypeScript
97 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: "bw6-52",
|
||
localId: 52,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Sigilyph",
|
||
fr: "Cryptéro",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 561,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw6/52/low",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw6/52/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw6/52/high",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw6/52/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Ryo Ueda",
|
||
|
||
abilities: [{
|
||
id: 148,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Safeguard",
|
||
fr: "Rune Protect",
|
||
},
|
||
text: {
|
||
en: "Prevent all effects of attacks, including damage, done to this Pokémon by Pokémon-EX.",
|
||
fr: "Évitez tous les effets d'attaques (y compris les dégâts) infligés à ce Pokémon par des Pokémon-EX.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Psychic",
|
||
fr: "Psyko",
|
||
},
|
||
text: {
|
||
en: "Does 10 more damage for each Energy attached to the Defending Pokémon.",
|
||
fr: "Inflige 10 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Défenseur.",
|
||
},
|
||
damage: 50
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Dragons Exalted",
|
||
code: "bw6"
|
||
}
|
||
}
|
||
|
||
export default card
|