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

114 lines
2.0 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: "sm11-152",
localId: 152,
// Card informations
name: {
en: "Dragonite-GX",
fr: "Dracolosse-GX",
},
hp: 250,
type: [
Type.DRAGON,
],
dexId: 149,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm11/152/low",
fr: "https://assets.tcgdex.net/fr/sm/sm11/152/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm11/152/high",
fr: "https://assets.tcgdex.net/fr/sm/sm11/152/high",
},
},
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
tags: [
Tag.GX,
],
illustrator: "PLANETA Igarashi",
attacks: [{
cost: [
Type.WATER,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Dragon Claw",
fr: "Dracogriffe",
},
damage: 130
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sky Judgment",
fr: "Jugement Céleste",
},
text: {
en: "Discard 3 Energy from this Pokémon.",
fr: "Défaussez 3 Énergies de ce Pokémon.",
},
damage: 270
},{
cost: [
Type.COLORLESS
],
name: {
en: "Mach Delivery-GX",
fr: "Livraison Flash-GX",
},
text: {
en: "You may discard any number of cards from your hand until you have 9 or fewer. Draw cards until you have 10 cards in your hand. (You can't use more than 1 GX attack in a game.)",
fr: "Vous pouvez défausser autant de cartes que vous voulez de votre main jusquà en avoir 9 ou moins. Piochez des cartes jusquà ce que vous ayez 10 cartes en main. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Unified Minds",
code: "sm11"
}
}
export default card