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

84 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 '../Team Up'
const card: Card = {
name: {
en: "Mankey",
fr: "Férosinge",
es: "Mankey",
it: "Mankey",
pt: "Mankey",
de: "Menki"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
56,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scout",
fr: "Espionnage",
es: "Explorar",
it: "Esplorazione",
pt: "Explorador",
de: "Späher"
},
effect: {
en: "Your opponent reveals their hand.",
fr: "Votre adversaire dévoile sa main.",
es: "Tu rival enseña las cartas de su mano.",
it: "Il tuo avversario mostra le carte che ha in mano.",
pt: "Seu oponente revela a própria mão.",
de: "Dein Gegner zeigt dir seine Handkarten."
},
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Low Kick",
fr: "Balayage",
es: "Patada Baja",
it: "Colpo Basso",
pt: "Rasteira",
de: "Fußkick"
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card