1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,16 +4,20 @@ 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",
],
@ -22,15 +26,18 @@ const card: Card = {
abilities: [
{
type: "Poke-POWER",
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: [
@ -38,12 +45,14 @@ const card: Card = {
],
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
@ -51,10 +60,9 @@ const card: Card = {
},
],
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