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

91 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Vileplume",
fr: "Rafflesia",
es: "Vileplume",
it: "Vileplume",
pt: "Vileplume",
de: "Giflor"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
45,
],
hp: 140,
types: [
"Grass",
],
evolveFrom: {
en: "Gloom",
fr: "Ortide",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Allergy Panic",
fr: "Panique Allergique",
es: "Pánico Alérgico",
it: "Allergipanico",
pt: "Pânico Alérgico",
de: "Allergieschock"
},
effect: {
en: "Apply Weakness for each Pokémon (both yours and your opponent's) as ×4 instead.",
fr: "Appliquez une Faiblesse de x4 à chacun des Pokémon (les vôtres et ceux de votre adversaire).",
es: "Aplica una Debilidad de x4 a cada Pokémon (tanto tuyos como de tu rival).",
it: "La debolezza di tutti i Pokémon, sia tuoi che del tuo avversario, diventa x4.",
pt: "Aplique Fraqueza x 4 a cada Pokémon (seu e do seu oponente).",
de: "Der Schwächefaktor jedes Pokémon (deiner und der deines Gegners) wird durch x4 ersetzt."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Pollen Spray",
fr: "Crache-Pollen",
},
effect: {
en: "The Defending Pokémon is now Asleep and Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Endormi et Empoisonné.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 3,
}
export default card