mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Mankey",
|
|
fr: "Férosinge",
|
|
es: "Mankey",
|
|
it: "Mankey",
|
|
de: "Menki",
|
|
'pt-br': "Mankey",
|
|
ko: "망키"
|
|
},
|
|
|
|
illustrator: "Akira Komayama",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Fighting"],
|
|
|
|
description: {
|
|
en: "It lives in groups in the treetops. If it loses sight of its group, it becomes infuriated by its loneliness.",
|
|
fr: "Il vit en groupe au sommet des arbres. S'il perd\nses congénères de vue, la solitude le rend furieux.",
|
|
es: "Vive en grupos en las copas de\nlos árboles. Si pierde de vista a su\nmanada, se siente solo y se enfada.",
|
|
it: "Vivono in branchi in cima agli alberi. Se perdono\nil contatto con il gruppo s'infuriano per la solitudine.",
|
|
de: "Es lebt mit Artgenossen in Baumkronen.\nVerliert es sie aus den Augen, wird es\nvor Einsamkeit sofort zornig.",
|
|
'pt-br': "Vive em grupo no topo de árvores.\nSe perde seu grupo de vista, a solidão\ndeixa este Pokémon furioso.",
|
|
ko: "나무 위에 무리 지어 산다.\n무리에서 떨어진 망키는\n외로운 나머지 금방 화를 낸다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Focus Fist",
|
|
fr: "Poing Concentré",
|
|
es: "Puño Infalible",
|
|
it: "Concentrapugno",
|
|
de: "Fokussierfaust",
|
|
'pt-br': "Punho Focalizado",
|
|
ko: "기합찌르기"
|
|
},
|
|
|
|
damage: 50,
|
|
cost: ["Fighting"],
|
|
|
|
effect: {
|
|
en: "Flip a coin. If tails, this attack does nothing.",
|
|
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
|
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
|
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
|
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen.",
|
|
'pt-br': "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
|
ko: "동전을 1번 던져서 뒷면이 나오면 이 기술은 실패한다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond"
|
|
}
|
|
|
|
export default card
|