1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Blast'
const card: Card = {
name: {
en: "Haxorus",
fr: "Tranchodon",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
612,
],
hp: 140,
types: [
"Dragon",
],
evolveFrom: {
en: "Fraxure",
fr: "Incisache",
},
stage: "Stage2",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Dragonaxe",
fr: "Hache Draconique",
},
effect: {
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: [
"Fightning",
"Metal",
],
name: {
en: "Strike of the Champion",
fr: "Frappe de Maître",
},
effect: {
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: "Dragon",
value: "×2"
},
],
retreat: 2,
}
export default card