mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
72 lines
1.2 KiB
TypeScript
72 lines
1.2 KiB
TypeScript
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 opponent’s 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
|