1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

103
cards/bw/bw10/69.ts Normal file
View File

@ -0,0 +1,103 @@
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