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,35 +4,44 @@ import Set from '../Fossil'
const card: Card = {
name: {
en: "Muk",
fr: "Grotadmorv"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
89,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Grimer",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Toxic Gas",
fr: "Puanteur"
},
effect: {
en: "Ignore all Pokémon Powers other than Toxic Gases. This power stops working while Muk is Asleep, Confused, or Paralyzed.",
fr: "Ignorez tout pouvoir Pokémon autre que Puanteur. L'effet de ce pouvoir cesse lorsque Grotadmorv est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -40,15 +49,21 @@ const card: Card = {
"Grass",
"Grass",
],
name: {
en: "Sludge",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
fr: "Détritus"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné."
},
damage: 30
},
],
weaknesses: [
{
type: "Psychic",
@ -56,10 +71,9 @@ const card: Card = {
},
],
description: {
fr: "Il est recouvert d'une épaisse couche toxique. Il laisse une trace empoisonnée."
}
}
export default card