1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

115 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm12-254",
localId: 254,
// Card informations
name: {
en: "Solgaleo & Lunala-GX",
fr: "Solgaleo et Lunala-GX",
},
hp: 270,
type: [
Type.PSYCHIC,
],
dexId: 791,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/254/low",
fr: "https://assets.tcgdex.net/fr/sm/sm12/254/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/254/high",
fr: "https://assets.tcgdex.net/fr/sm/sm12/254/high",
},
},
evolveFrom: {},
tags: [
Tag.TAGTEAM,
Tag.BASIC,
],
illustrator: "Hideki Ishikawa",
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Cosmic Burn",
fr: "Règle des ESCOUADES",
},
text: {
en: "This Pokémon can't use Cosmic Burn during your next turn.",
},
damage: 230
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Light of the Protector GX",
fr: "Brûlure Cosmique",
},
text: {
en: "If you played Lillie's Full Force from your hand during this turn, prevent all effects of attacks, including damage, done to each of your Pokémon during your opponent's next turn. (You can't use more than 1 GX attack in a game.)",
fr: "Ce Pokémon ne peut pas utiliser Brûlure Cosmique pendant votre prochain tour.",
},
damage: 200
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
fr: "Lumière de la Protectrice-GX",
},
text: {
fr: "Si vous avez joué Pleine Puissance de Lilie de votre main pendant ce tour, évitez tous les effets dattaques, y compris les dégâts, infligés à chacun de vos Pokémon pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card