1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +00:00

Added BW translation (#65)

* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-09-02 12:01:58 +02:00
committed by GitHub
parent b46b2c4fb9
commit e21ea0646e
1290 changed files with 8757 additions and 1960 deletions

View File

@@ -5,23 +5,32 @@ const card: Card = {
name: {
en: "Jumpluff",
fr: "Cotovol",
es: "Jumpluff",
it: "Jumpluff",
pt: "Jumpluff",
de: "Papungha"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
189,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Skiploom",
fr: "Floravol",
},
stage: "Stage2",
abilities: [
@@ -30,13 +39,22 @@ const card: Card = {
name: {
en: "Leave It to the Wind",
fr: "Vole au Vent",
es: "A Merced del Viento",
it: "Soffione",
pt: "Deixar ao Vento",
de: "Windverwehung"
},
effect: {
en: "Once during your turn (before your attack), you may return this Pokémon and all cards attached to it to your hand.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez reprendre ce Pokémon et toutes les cartes qui lui sont attachées dans votre main.",
es: "Una vez durante tu turno (antes de tu ataque), puedes devolver este Pokémon y todas las cartas unidas a él a tu mano.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi riprendere in mano questo Pokémon e tutte le carte a esso assegnate.",
pt: "Uma vez durante sua vez de jogar (antes de atacar), você poderá devolver este Pokémon e todos os cards ligados a ele para sua mão.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du dieses Pokémon und alle daran angelegten Karten zurück auf deine Hand nehmen."
},
},
],
attacks: [
{
cost: [
@@ -54,12 +72,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
@@ -67,9 +87,7 @@ const card: Card = {
},
],
retreat: 0
}
export default card