1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01: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 '../Jungle'
const card: Card = {
name: {
en: "Mankey",
fr: "Férosinge"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
56,
],
hp: 30,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Pokemon Power",
name: {
en: "Peek",
fr: "Coup d'œil"
},
effect: {
en: "Once during your turn (before your attack), you may look at one of the following: the top card of either player's deck, a random card from your opponent's hand, or one of either player's Prizes. This power can't be used if Mankey is Asleep, Confused, or Paralyzed.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez regarder au choix: la carte du dessus du deck d'un des joueurs, une carte au hasard de la main de votre adversaire, ou une des Récompenses d'un des joueurs. Ce pouvoir ne peut être utilisé si Férosinge est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
description: {
fr: "Il se met en colère très vite. Calme ou furieux, son humeur change d'une seconde à l'autre."
}
}
export default card