1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

42 lines
943 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Bodybuilding Dumbbells",
fr: "Haltères de Culturisme",
es: "Pesas Culturismo",
it: "Manubri del Culturista",
pt: "Halteres de Fisiculturismo",
de: "Bodybuilding-Hanteln"
},
illustrator: "Eske Yoshinob",
rarity: "Secret Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Cette carte ajoute 40 PV au Pokémon de Niveau 1 auquel elle est attachée.",
en: "The Stage 1 Pokémon this card is attached to gets +40 HP.",
es: "El Pokémon de Fase 1 al que esté unida esta carta obtiene 40 PS más.",
it: "Il Pokémon di Fase 1 a cui è assegnata questa carta ha 40 PS in più.",
pt: "O Pokémon Estágio 1 que esta carta estiver ligada receberá +40 PS.",
de: "Das Phase-1-Pokémon, an das diese Karte angelegt ist, erhält 40 KP mehr."
},
trainerType: "Tool",
}
export default card