1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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

@ -4,22 +4,32 @@ import Set from '../Dark Explorers'
const card: Card = {
name: {
en: "Volcarona",
fr: "Pyrax",
es: "Volcarona",
it: "Volcarona",
pt: "Volcarona",
de: "Ramoth"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
637,
],
hp: 110,
types: [
"Fire",
],
evolveFrom: {
en: "Larvesta",
},
stage: "Stage1",
abilities: [
@ -27,12 +37,23 @@ const card: Card = {
type: "Ability",
name: {
en: "Scorching Scales",
fr: "Écailles Brûlantes",
es: "Escamas Abrasadoras",
it: "Ustiospora",
pt: "Escamas Ardentes",
de: "Versengende Schuppen"
},
effect: {
en: "Put 4 damage counters instead of 2 on your opponent's Burned Pokémon between turns.",
en: "Put 4 damage counters instead of 2 on your opponents Burned Pokémon between turns.",
fr: "Placez 4 marqueurs de dégâts au lieu de 2 sur le Pokémon Brûlé de votre adversaire entre chaque tour.",
es: "Pon 4 contadores de daño en vez de 2 en el Pokémon Quemado de tu rival entre turnos.",
it: "Tra un turno e laltro, metti quattro segnalini danno invece di due sul Pokémon bruciato del tuo avversario.",
pt: "Coloque 4 marcadores de danos em vez de 2 no Pokémon Queimado do seu oponente entre as vezes de jogar.",
de: "Lege zwischen den Zügen 4 Schadensmarken anstelle von 2 Schadensmarken auf die verbrannten Pokémon deines Gegners."
},
},
],
attacks: [
{
cost: [
@ -50,6 +71,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Water",
@ -57,10 +79,7 @@ const card: Card = {
},
],
retreat: 3
}
export default card