|
@@ -13,6 +13,8 @@ import {
|
|
|
FROZEN,
|
|
|
COUNTRY_RACE,
|
|
|
RACE,
|
|
|
+ HARD,
|
|
|
+ NIGHTMARE,
|
|
|
} from "../../../domain/constants";
|
|
|
|
|
|
export const GameInfo = () => {
|
|
@@ -57,6 +59,22 @@ export const GameInfo = () => {
|
|
|
you will get 0 points for the wrong country!
|
|
|
</span>
|
|
|
)}
|
|
|
+ {scoreMethod === HARD && (
|
|
|
+ <span className={styles.label}>
|
|
|
+ This is hard mode - scoring is very punishing!
|
|
|
+ </span>
|
|
|
+ )}
|
|
|
+ {scoreMethod === NIGHTMARE && (
|
|
|
+ <span className={styles.label}>
|
|
|
+ You're playing on nightmare mode what is wrong with you
|
|
|
+ </span>
|
|
|
+ )}
|
|
|
+ {scoreMethod === RAMP && (
|
|
|
+ <span className={styles.label}>
|
|
|
+ Each round will have a score multiplier, 0.5 higher than the previous
|
|
|
+ (1x, 1.5x, 2x, ...)
|
|
|
+ </span>
|
|
|
+ )}
|
|
|
{gameMode === FROZEN && (
|
|
|
<span className={styles.label}>
|
|
|
You will not be able to adjust your view
|