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

78 lines
1.4 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 '../Emerging Powers'
const card: Card = {
name: {
en: "Leavanny",
fr: "Manternel",
es: "Leavanny",
it: "Leavanny",
pt: "Leavanny",
de: "Matrifol"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
542,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Swadloon",
fr: "Couverdure",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Nurturing",
fr: "Affection",
},
effect: {
en: "Choose 1 of your Pokémon. Search your deck for a card that evolves from that Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) Shuffle your deck afterward.",
fr: "Choisissez 1 de vos Pokémon. Cherchez dans votre deck une carte Évolution du Pokémon choisi et placez-la sur celui-ci. (Cela équivaut à faire évoluer le Pokémon choisi.) Mélangez ensuite votre deck.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "X-Scissor",
fr: "Plaie-Croix",
},
effect: {
en: "Flip a coin. If heads, this attack does 50 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card