1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
1.1 KiB
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.

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 '../Team Up'
const card: Card = {
name: {
en: "Buff Padding",
fr: "Protection Musclée",
es: "Protectores Acolchados",
it: "Imbottitura",
pt: "Acochoamento Poderoso",
de: "Dicke Polster"
},
illustrator: "Yoshinobu Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Si le Pokémon auquel cette carte est attachée a un Coût de Retraite dexactement 4, il reçoit +50 PV.",
en: "If the Pokémon this card is attached to has a Retreat Cost of exactly 4, it gets +50 HP.",
es: "Si el Pokémon al que está unida esta carta tiene un Coste de Retirada de exactamente 4, obtiene 50 PS más.",
it: "Se il costo di ritirata del Pokémon a cui è assegnata questa carta è esattamente pari a quattro, quel Pokémon ha 50 PS in più.",
pt: "Se o Pokémon ao qual esta carta está ligada tiver um custo de Recuo de exatamente 4, receberá 50 PS a mais.",
de: "Wenn das Pokémon, an das diese Karte angelegt ist, Rückzugskosten von genau 4 hat, erhält es 50 KP mehr."
},
trainerType: "Tool",
}
export default card