1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02: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

85 lines
1.6 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 '../Noble Victories'
const card: Card = {
name: {
en: "Leavanny",
fr: "Manternel",
es: "Leavanny",
it: "Leavanny",
pt: "Leavanny",
de: "Matrifol"
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
542,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Swadloon",
fr: "Couverdure",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Leaf Tailor",
fr: "Couturier",
es: "Sastre de Hojas",
it: "Sartofoglia",
pt: "Alfaiate de Folhas",
de: "Blattschneider"
},
effect: {
en: "Each of your Pokémon that has any Energy attached to it has no Weakness.",
fr: "Chacun de vos Pokémon auquel de lÉnergie est attachée na pas de Faiblesse.",
es: "Cada uno de tus Pokémon que tenga cualquier Energía unida a él no tiene ninguna Debilidad.",
it: "Nessuno dei tuoi Pokémon che ha delle Energie assegnate ha debolezza.",
pt: "Cada um de seus Pokémon que possui qualquer Energia ligada não possui Fraquezas.",
de: "Jedes deiner Pokémon, an dem Energie angelegt ist, hat keine Schwäche."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Cutting Arm",
fr: "Bras Coupant",
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card