1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon e21ea0646e
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>
2021-09-02 12:01:58 +02:00

86 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
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: [
{
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 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: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Burning Wind",
},
effect: {
en: "You may discard an Energy attached to this Pokémon. If you do, the Defending Pokémon is now Burned.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3
}
export default card