1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

106 lines
1.5 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 '../../../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: "sm11-248",
localId: 248,
// Card informations
name: {
en: "Dragonite-GX",
},
hp: 250,
type: [
Type.DRAGON,
],
dexId: 149,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm11/248/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm11/248/high.png",
},
},
evolveFrom: {
en: "Dragonair",
},
tags: [
Tag.STAGE2,
],
attacks: [{
cost: [
Type.LIGHTNING,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Dragon Claw",
},
damage: 130
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Sky Judgment",
},
text: {
en: "Discard 3 Energy from this Pokémon.",
},
damage: 270
},{
cost: [
Type.COLORLESS
],
name: {
en: "Mach Delivery 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.)",
},
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Unified Minds",
code: "sm11"
}
}
export default card