1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.1 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 '../../../interfaces'
import Set from '../Dragon Vault'
const card: Card = {
name: {
en: "Haxorus",
fr: "Tranchodon",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
612,
],
hp: 140,
types: [
"Dragon",
],
evolveFrom: {
en: "Fraxure",
fr: "Incisache",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Axe Slugger",
fr: "Cognée",
},
effect: {
en: "If the Defending Pokémon is a Colorless Pokémon, this attack does 60 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon Colorless, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60,
},
{
cost: [
"Fighting",
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Pulse",
fr: "Dracochoc",
},
effect: {
en: "Discard the top card of your deck.",
fr: "Défaussez la carte du dessus de votre deck.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 2,
}
export default card