1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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,23 +4,26 @@ import Set from '../Jungle'
const card: Card = {
name: {
en: "Bellsprout",
fr: "Chétiflor"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
69,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,6 +31,7 @@ const card: Card = {
],
name: {
en: "Vine Whip",
fr: "Fouet liane"
},
damage: 10,
@ -39,13 +43,16 @@ const card: Card = {
],
name: {
en: "Call for Family",
fr: "Appel à la famille"
},
effect: {
en: "Search your deck for a Basic Pokémon named Bellsprout and put it onto your Bench. Shuffle your deck afterward. (You can't use this attack if your Bench is full.)",
fr: "Cherchez dans votre deck un Pokémon de base appelé Chétiflor et placez-le sur votre Banc. Mélangez ensuite votre deck. (Vous ne pouvez pas utiliser cette attaque si votre Banc est plein.)"
},
},
],
weaknesses: [
{
type: "Fire",
@ -53,10 +60,9 @@ const card: Card = {
},
],
description: {
fr: "Un Pokémon carnivore qui se nourrit de petits insectes. Ses racines servent d'attaches."
}
}
export default card