1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

86 lines
1.4 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 '../Team Up'
const card: Card = {
name: {
en: "Hitmonchan",
fr: "Tygnon",
es: "Hitmonchan",
it: "Hitmonchan",
pt: "Hitmonchan",
de: "Nockchan"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
107,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Hit and Run",
fr: "Frappe et Fuite",
es: "Atropello y Fuga",
it: "Colpisci e Fuggi",
pt: "Bater e Fugir",
de: "Fluchtschlag"
},
effect: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Vous pouvez échanger ce Pokémon avec lun de vos Pokémon de Banc.",
es: "Puedes cambiar este Pokémon por 1 de tus Pokémon en Banca.",
it: "Puoi scambiare questo Pokémon con uno della tua panchina.",
pt: "Você pode trocar este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Du kannst dieses Pokémon gegen 1 Pokémon auf deiner Bank austauschen."
},
damage: 30,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Magnum Punch",
fr: "Poing Magnum",
es: "Puño Magnum",
it: "Superpugno",
pt: "Soco Magnum",
de: "Magnum-Schlag"
},
damage: 70,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card