Migrate the position names into the config.
This commit is contained in:
parent
9b7b9d2af8
commit
56cb1ed483
2 changed files with 16 additions and 4 deletions
|
|
@ -37,7 +37,19 @@ export const team_settings = [
|
||||||
7: 0, 8: 0,
|
7: 0, 8: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
];
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name that is displayed for the players that answer the questions.
|
||||||
|
*/
|
||||||
|
export const writer_name = `Spirit`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The name that is displayed for the players that are trying to guess the
|
||||||
|
* object.
|
||||||
|
*/
|
||||||
|
export const guesser_name = `Medium`;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -10,12 +10,12 @@ export default new Vuex.Store({
|
||||||
|
|
||||||
team_1: conf.team_settings[0],
|
team_1: conf.team_settings[0],
|
||||||
team_2: conf.team_settings[1],
|
team_2: conf.team_settings[1],
|
||||||
|
|
||||||
writer_name: `Spirit`,
|
writer_name: conf.writer_name,
|
||||||
writer_card_button: `Answer Question`,
|
writer_card_button: `Answer Question`,
|
||||||
writer_object_choose_button: `Choose Object`,
|
writer_object_choose_button: `Choose Object`,
|
||||||
|
|
||||||
guesser_name: `Medium`,
|
guesser_name: conf.guesser_name,
|
||||||
guesser_card_button: `Ask Spirit`,
|
guesser_card_button: `Ask Spirit`,
|
||||||
|
|
||||||
eye_icon: `eye.svg`,
|
eye_icon: `eye.svg`,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue