mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
104 lines
1.9 KiB
TypeScript
104 lines
1.9 KiB
TypeScript
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: "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.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw10/69/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw10/69/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw10/69/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Fraxure",
|
||
fr: "Incisache",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 10,
|
||
name: "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.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Plasma Blast",
|
||
code: "bw10"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|