1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

78 lines
1.3 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Haxorus",
fr: "Tranchodon",
es: "Haxorus",
it: "Haxorus",
pt: "Haxorus",
de: "Maxax"
},
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: [
"Fighting",
"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