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

100 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: "xy6-51",
localId: 51,
// Card informations
name: {
en: "Dragonite",
fr: "Dracolosse",
},
hp: 150,
type: [
Type.DRAGON,
],
dexId: 149,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy6/51/low",
fr: "https://assets.tcgdex.net/fr/xy/xy6/51/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy6/51/high",
fr: "https://assets.tcgdex.net/fr/xy/xy6/51/high",
},
},
evolveFrom: {
en: "Dragonair",
fr: "Draco",
},
tags: [
Tag.STAGE2,
],
illustrator: "kawayoo",
abilities: [{
id: 774,
type: AbilityType.TALENT,
name: {
en: "Max Wind",
fr: "Vent Max",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may heal all damage from 1 of your Pokémon.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, vous pouvez soigner tous les dégâts de l'un de vos Pokémon.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Mach Press",
fr: "Mach Press",
},
text: {
en: "Flip 2 coins. If both of them are heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 80
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Roaring Skies",
code: "xy6"
}
}
export default card