1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +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

42 lines
890 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Float Stone",
fr: "Pierrallégée",
es: "Piedra Pómez",
it: "Pietralieve",
pt: "Pedra Flutuante",
de: "Leichtstein"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Le Pokémon auquel cette carte est attachée n'a pas de coût de Retraite.",
en: "The Pokémon this card is attached to has no Retreat Cost.",
es: "El Pokémon al que esté unida esta carta no tiene ningún Coste de Retirada.",
it: "Il Pokémon a cui questa carta è assegnata non ha alcun costo di ritirata.",
pt: "O Pokémon ao qual este card está ligado não tem Custo para Recuar.",
de: "Das Pokémon, an das diese Karte angelegt ist, hat keine Rückzugskosten."
},
trainerType: "Tool",
}
export default card