1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 20:32:11 +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: "bw10-69",
localId: 69,
// Card informations
name: {
en: "Haxorus",
fr: "Tranchodon",
},
hp: 140,
type: [
Type.DRAGON,
],
dexId: 612,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw10/69/low",
fr: "https://assets.tcgdex.net/fr/bw/bw10/69/low",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw10/69/high",
fr: "https://assets.tcgdex.net/fr/bw/bw10/69/high",
},
},
evolveFrom: {
en: "Fraxure",
fr: "Incisache",
},
tags: [
Tag.STAGE2,
],
illustrator: "Kouki Saitou",
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Dragonaxe",
fr: "Hache Draconique",
},
text: {
en: "Does 40 damage times the amount of Metal Energy attached to this Pokémon.",
fr: "Inflige 40 dégâts multipliés par le nombre d'Énergies Metal attachées à ce Pokémon.",
},
damage: 40
},{
cost: [
Type.FIGHTING,
Type.METAL
],
name: {
en: "Strike of the Champion",
fr: "Frappe de Maître",
},
text: {
en: "If the Defending Pokémon is a Team Plasma Pokémon, it is Knocked Out. (If the Defending Pokémon is not a Team Plasma Pokémon, this attack does nothing.)",
fr: "Si le Pokémon Défenseur est un Pokémon de la Team Plasma, il est mis K.O. (Si le Pokémon Défenseur n'est pas un Pokémon de la Team Plasma, cette attaque ne fait rien.)",
},
}],
weaknesses: [{
type: Type.DRAGON,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Plasma Blast",
code: "bw10"
}
}
export default card