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,24 +4,29 @@ import Set from '../Jungle'
const card: Card = {
name: {
en: "Gloom",
fr: "Ortide"
},
illustrator: "Keiji Kinebuchi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
44,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Oddish",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -30,11 +35,12 @@ const card: Card = {
],
name: {
en: "Poisonpowder",
fr: "Poudre toxik"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
},
damage: 10,
fr: "Le Pokémon Défenseur est maintenant Empoisonné."
}
},
{
@ -44,14 +50,17 @@ const card: Card = {
],
name: {
en: "Foul Odor",
fr: "Odeur fétide"
},
effect: {
en: "Both the Defending Pokémon and Gloom are now Confused (after doing damage).",
fr: "Le Pokémon Défenseur et Ortide sont maintenant tous deux Confus (après le calcul des dégâts)."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
@ -59,10 +68,9 @@ const card: Card = {
},
],
description: {
fr: "Le liquide qui s'écoule de sa bouche est comestible. Il sert à appâter sa proie."
}
}
export default card