1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 01:37:52 +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

71 lines
925 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Haxorus",
fr: "Tranchodon",
es: "Haxorus",
it: "Haxorus",
pt: "Haxorus",
de: "Maxax"
},
illustrator: "Akira Komayama",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
612,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Fraxure",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Guillotine",
},
damage: 60,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Stunning Uppercut",
},
effect: {
en: "Flip 2 coins. If both of them are heads, the Defending Pokémon is now Paralyzed. If both of them are tails, this attack does nothing.",
},
damage: 80,
},
],
retreat: 3
}
export default card