1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59: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 '../Team Rocket'
const card: Card = {
name: {
en: "Drowzee",
fr: "Soporifik"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
96,
],
hp: 50,
types: [
"Psychic",
],
@ -22,15 +26,18 @@ const card: Card = {
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Long Distance Hypnosis",
fr: "Hypnose longue distance"
},
effect: {
en: "Distance Hypnosis - Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Asleep; if tails, your Active Pokémon is now Asleep. The power can't be used if Drowzee is Asleep, Confused, or Paralyzed.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi ; si c'est pile, votre Pokémon Actif est maintenant Endormi. Ce pouvoir ne peut être utilisé si Soporifik est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -39,14 +46,17 @@ const card: Card = {
],
name: {
en: "Nightmare",
fr: "Cauchemar"
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi."
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
@ -54,10 +64,9 @@ const card: Card = {
},
],
description: {
fr: "Il n'a pas vraiment la cote auprès des filles en raison de son mauvais caractère. On le surprend souvent maugréant tout seul à voix basse."
}
}
export default card