mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
109 lines
2.4 KiB
TypeScript
109 lines
2.4 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm2-155",
|
||
localId: 155,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Tapu Lele-GX",
|
||
fr: "Tokopiyon-GX",
|
||
},
|
||
|
||
hp: 170,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 786,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm2/155/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm2/155/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm2/155/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm2/155/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.GX,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 4,
|
||
name: "5ban Graphics"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 925,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Wonder Tag",
|
||
fr: "Relais Miracle",
|
||
},
|
||
text: {
|
||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez chercher une carte Supporter dans votre deck, la montrer et l’ajouter à votre main. Mélangez ensuite votre deck.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Energy Drive",
|
||
fr: "Propulsion d’Énergie",
|
||
},
|
||
text: {
|
||
en: "This attack does 20 damage times the amount of Energy attached to both Active Pokémon. This damage isn't affected by Weakness or Resistance.",
|
||
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre d’Énergies attachées aux deux Pokémon Actifs. Ces dégâts ne sont pas affectés par la Faiblesse ou la Résistance.",
|
||
},
|
||
damage: 20
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC
|
||
],
|
||
name: {
|
||
en: "Tapu Cure-GX",
|
||
fr: "Toko Soins-GX",
|
||
},
|
||
text: {
|
||
en: "Heal all damage from 2 of your Benched Pokémon. (You can't use more than 1 GX attack in a game.)",
|
||
fr: "Soignez tous les dégâts de 2 de vos Pokémon de Banc. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
},
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Rare,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Guardians Rising",
|
||
code: "sm2"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|