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

81 lines
1.5 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Lampent",
fr: "Mélancolux",
es: "Lampent",
it: "Lampent",
pt: "Lampent",
de: "Laternecto"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
608,
],
hp: 70,
types: [
"Fire",
],
evolveFrom: {
en: "Litwick",
fr: "Funécire",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Freefloating",
fr: "Apesanteur",
es: "Ingravidez",
it: "Fluttuare",
pt: "Flutuação Livre",
de: "Freifahrtschein"
},
effect: {
en: "If this Pokémon has no Energy attached to it, this Pokémon has no Retreat Cost.",
fr: "Si aucune Énergie nest attachée à ce Pokémon, ce Pokémon na pas de coût de Retraite.",
es: "Si este Pokémon no tiene ninguna Energía unida a él, este Pokémon no tiene Coste de Retirada.",
it: "Se questo Pokémon non ha delle Energie assegnate, non ha costo di ritirata.",
pt: "Se este Pokémon não possuir Energia ligada a ele, ele não terá Custo para Recuar.",
de: "Wenn an dieses Pokémon keine Energie angelegt ist, hat dieses Pokémon keine Rückzugskosten."
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Will-O-Wisp",
fr: "Feu Follet",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card