1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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

82 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Altaria",
fr: "Altaria",
es: "Altaria",
it: "Altaria",
pt: "Altaria",
de: "Altaria"
},
illustrator: "HiRON",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
334,
],
hp: 70,
types: [
"Dragon",
],
evolveFrom: {
en: "Swablu",
fr: "Tylton",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Fight Song",
fr: "Hymne au Combat",
es: "Canción Bélica",
it: "Fanfara",
pt: "Canção de Combate",
de: "Angriffsarie"
},
effect: {
en: "Your Dragon Pokémons attacks do 20 more damage to the Active Pokémon (before applying Weakness and Resistance).",
fr: "Les attaques de vos Pokémon Dragon infligent 20 dégâts supplémentaires aux Pokémon Actifs (avant application de la Faiblesse et de la Résistance).",
es: "Los ataques de tus Pokémon Dragon hacen 20 puntos de daño más a los Pokémon Activos (antes de aplicar Debilidad y Resistencia).",
it: "Gli attacchi dei tuoi Pokémon Dragon infliggono 20 danni in più al Pokémon attivo, prima di aver applicato debolezza e resistenza.",
pt: "Os ataques do seu Pokémon Dragon causam 20 de danos adicionais ao Pokémon Ativo (antes da aplicação de Fraqueza e Resistência).",
de: "Die Angriffe deiner Dragon-Pokémon fügen den Aktiven Pokémon 20 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
],
attacks: [
{
cost: [
"Water",
"Metal",
"Colorless",
],
name: {
en: "Glide",
fr: "Glissement",
},
damage: 40,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
retreat: 1,
}
export default card