1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 16:19:54 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

96 lines
1.8 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Hitmonlee",
fr: "Kicklee",
es: "Hitmonlee",
it: "Hitmonlee",
pt: "Hitmonlee",
de: "Kicklee"
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Low Sweep",
fr: "Balayette",
es: "Puntapié",
it: "Calciobasso",
pt: "Movimento Baixo",
de: "Fußtritt"
},
damage: 40,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Coordinated Strike",
fr: "Frappe Coordonnée",
es: "Golpe Coordinado",
it: "Attacco Coordinato",
pt: "Golpe Coordenado",
de: "Koordinierter Angriff"
},
effect: {
en: "If Hitmonchan is on your Bench, this attack does 80 more damage.",
fr: "Si Tygnon est sur votre Banc, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si Hitmonchan está en tu Banca, este ataque hace 80 puntos de daño más.",
it: "Se Hitmonchan è nella tua panchina, questo attacco infligge 80 danni in più.",
pt: "Se Hitmonchan estiver no seu Banco, este ataque causará 80 pontos de dano a mais.",
de: "Wenn sich Nockchan auf deiner Bank befindet, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "80+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "The legs freely contract and stretch. The stretchy legs allow it to hit a distant foe with a rising kick."
},
dexId: [106]
}
export default card