1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +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

112
cards/xy/xy8/111.ts Normal file
View File

@ -0,0 +1,112 @@
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: "xy8-111",
localId: 111,
// Card informations
name: {
en: "Haxorus",
fr: "Tranchodon",
},
hp: 160,
type: [
Type.DRAGON,
],
dexId: 612,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy8/111/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy8/111/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy8/111/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy8/111/high.png",
},
},
evolveFrom: {
en: "Fraxure",
fr: "Incisache",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 138,
name: "hatachu"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Dragon Dance",
fr: "Danse Draco",
},
text: {
en: "As long as this Haxorus is your Active Pokémon, each of its attacks does 100 more damage (before applying Weakness and Resistance). You can't add more than 100 damage in this way.",
fr: "Tant que ce Tranchodon est votre Pokémon Actif, chacune de ses attaques inflige 100 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance). Vous ne pouvez pas ajouter plus de 100 dégâts de cette façon.",
},
},{
cost: [
Type.COLORLESS
],
name: {
en: "Sharp Fang",
fr: "Croc Aiguisé",
},
damage: 60
},{
cost: [
Type.FIGHTING,
Type.METAL
],
name: {
en: "Dragon Pulse",
fr: "Dracochoc",
},
text: {
en: "Discard the top 3 cards of your deck.",
fr: "Défaussez les 3 cartes du dessus de votre deck.",
},
damage: 130
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "BREAKthrough",
code: "xy8"
}
}
export default card