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,37 +4,47 @@ import Set from '../Jungle'
const card: Card = {
name: {
en: "Weepinbell",
fr: "Boustiflor"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
70,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Bellsprout",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Poisonpowder",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
fr: "Poudre toxik"
},
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: 10
},
{
cost: [
@ -43,12 +53,14 @@ const card: Card = {
],
name: {
en: "Razor Leaf",
fr: "Tranch'herbe"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
@ -56,10 +68,9 @@ const card: Card = {
},
],
description: {
fr: "Il crache de la poudre toxik pour immobiliser sa proie et il l'achève avec de l'acide."
}
}
export default card