1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

72 lines
1.2 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 '../BREAKpoint'
const card: Card = {
name: {
en: "Honedge",
fr: "Monorpale",
es: "Honedge",
it: "Honedge",
pt: "Honedge",
de: "Gramokles"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
679,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Stab",
fr: "Blessure",
es: "Puñalada",
it: "Pugnalata",
pt: "Facada",
de: "Stich"
},
effect: {
en: "Put 1 damage counter on your opponents Active Pokémon.",
fr: "Placez 1 marqueur de dégâts sur le Pokémon Actif de votre adversaire.",
es: "Pon 1 contador de daño en el Pokémon Activo de tu rival.",
it: "Metti un segnalino danno sul Pokémon attivo del tuo avversario.",
pt: "Coloque 1 contador de danos no Pokémon Ativo do seu oponente.",
de: "Lege 1 Schadensmarke auf das Aktive Pokémon deines Gegners."
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card