mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
102 lines
1.9 KiB
TypeScript
102 lines
1.9 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: "xy7-54",
|
||
localId: 54,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Gardevoir",
|
||
fr: "Gardevoir",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.FAIRY,
|
||
],
|
||
|
||
dexId: 282,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy7/54/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy7/54/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy7/54/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy7/54/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Kirlia",
|
||
fr: "Kirlia",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "TOKIYA",
|
||
|
||
abilities: [{
|
||
id: 1286,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Bright Heal",
|
||
fr: "Soin Lumineux",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), you may heal 20 damage from each of your Pokémon.",
|
||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 20 dégâts à chacun de vos Pokémon.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Telekinesis",
|
||
fr: "Lévikinésie",
|
||
},
|
||
text: {
|
||
en: "This attack does 50 damage to 1 of your opponent's Pokémon. This attack's damage isn't affected by Weakness or Resistance.",
|
||
fr: "Cette attaque inflige 50 dégâts à l'un des Pokémon de votre adversaire. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||
},
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.METAL,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.DARKNESS,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Ancient Origins",
|
||
code: "xy7"
|
||
}
|
||
}
|
||
|
||
export default card
|