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

103 lines
1.8 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: "xy7-8",
localId: 8,
// Card informations
name: {
en: "M Sceptile-EX",
fr: "M Jungko-EX",
},
hp: 220,
type: [
Type.GRASS,
],
dexId: 254,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy7/8/low",
fr: "https://assets.tcgdex.net/fr/xy/xy7/8/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy7/8/high",
fr: "https://assets.tcgdex.net/fr/xy/xy7/8/high",
},
},
evolveFrom: {
en: "Sceptile-EX",
fr: "Jungko-EX",
},
tags: [
Tag.MEGA,
],
illustrator: "5ban Graphics",
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Jagged Saber",
fr: "Stop Θ",
},
text: {
en: "You may attach up to 2 Grass Energy cards from your hand to your Benched Pokémon in any way you like. If you attached Energy to a Pokémon in this way, heal all damage from that Pokémon.",
},
damage: 100
},{
name: {
fr: "Règle des Méga-Évolutions",
},
},{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
fr: "Sabre Tranchant",
},
text: {
fr: "Vous pouvez attacher jusqu'à 2 cartes Énergie Grass de votre main à vos Pokémon de Banc, de la manière que vous voulez. Si vous avez attaché de l'Énergie à un Pokémon de cette façon, soignez tous les dégâts au Pokémon choisi.",
},
damage: 100
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Ancient Origins",
code: "xy7"
}
}
export default card