@@ -269,6 +269,8 @@ function StationMedia({
269269 battle_pokemon_bread_mode,
270270 battle_level,
271271 battle_end,
272+ battle_pokemon_stamina,
273+ battle_pokemon_cp_multiplier,
272274} ) {
273275 const { t : tById } = useTranslateById ( )
274276 const { t } = useTranslation ( )
@@ -282,6 +284,14 @@ function StationMedia({
282284 }
283285 return poke ?. types || [ ]
284286 } )
287+ const battleStaminaDisplay =
288+ typeof battle_pokemon_stamina === 'number'
289+ ? battle_pokemon_stamina . toLocaleString ( )
290+ : null
291+ const battleCpMultiplierDisplay =
292+ typeof battle_pokemon_cp_multiplier === 'number'
293+ ? battle_pokemon_cp_multiplier . toLocaleString ( )
294+ : null
285295
286296 return isBattleActive ? (
287297 < CardMedia >
@@ -329,6 +339,18 @@ function StationMedia({
329339 { t ( `max_battle_${ battle_level } ` ) }
330340 </ Typography >
331341 ) }
342+ { battleStaminaDisplay && (
343+ < Typography variant = "caption" align = "center" >
344+ { t ( 'station_battle_hp' , { value : battleStaminaDisplay } ) }
345+ </ Typography >
346+ ) }
347+ { battleCpMultiplierDisplay && (
348+ < Typography variant = "caption" align = "center" >
349+ { t ( 'station_battle_cp_multiplier' , {
350+ value : battleCpMultiplierDisplay ,
351+ } ) }
352+ </ Typography >
353+ ) }
332354 </ Stack >
333355 </ Box >
334356 </ CardMedia >
0 commit comments