1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

101 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "bw4-57",
localId: 57,
// Card informations
name: {
en: "Gardevoir",
fr: "Gardevoir",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 282,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw4/57/low",
fr: "https://assets.tcgdex.net/fr/bw/bw4/57/low",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw4/57/high",
fr: "https://assets.tcgdex.net/fr/bw/bw4/57/high",
},
},
evolveFrom: {
en: "Kirlia",
fr: "Kirlia",
},
tags: [
Tag.STAGE2,
],
illustrator: "Mizue",
abilities: [{
id: 819,
type: AbilityType.TALENT,
name: {
en: "Psychic Mirage",
fr: "Mirage Psychique",
},
text: {
en: "Each basic Psychic Energy attached to your Psychic Pokémon provides PsychicPsychic Energy. You can't apply more than 1 Psychic Mirage Ability at a time.",
fr: "Chaque Énergie Psychic de base attachée à vos Pokémon Psychic fournit de l'Énergie PsychicPsychic. Vous ne pouvez pas appliquer plus d'une capacité spéciale Mirage Psychique à la fois.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mind Shock",
fr: "Choc Cérébral",
},
text: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Next Destinies",
code: "bw4"
}
}
export default card