1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

69 lines
1.3 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 '../Battle Styles'
const card: Card = {
dexId: [56],
set: Set,
name: {
en: "Mankey",
fr: "Férosinge",
es: "Mankey",
it: "Mankey",
pt: "Mankey",
de: "Menki"
},
illustrator: "Ryuta Fuse",
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
attacks: [{
name: {
en: "Focus Fist",
fr: "Poing Concentré",
es: "Puño Infalible",
it: "Concentrapugno",
pt: "Punho Focalizado",
de: "Fokussierfaust"
},
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.",
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 50,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "If one gets angry, all the others around it will get angry, so silence is a rare visitor in a troop of Mankey."
}
}
export default card