Skip to content

Commit db0406c

Browse files
committed
Documentation updates
1 parent e876644 commit db0406c

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

FEATURES.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ then create a "grimoire" image. That image goes into a drawing app (Concepts)
88
where I write on it to track tokens and anything else I need to for the game.
99
The app stays on the side and shows me the night order and gives me ways to show
1010
players information ("THIS PLAYER SELECTED YOU" for example), including
11-
character tokens.
11+
character tokens. If you're an iPad, this is the "Slide Over" multitasking
12+
feature (accessible from the three dots at the top of the screen).
1213

1314
The app understands essentially all setup rules, reducing my errors in setup,
1415
especially for custom scripts and lots of setup-impacting abilities. (No more
@@ -25,7 +26,7 @@ alt="Screenshot showing home page of the app"
2526
width="400">
2627

2728
The tool pulls in all the scripts in the [unofficial script
28-
database](https://botc-scripts.azurewebsites.net/). It does this once and saves
29+
database](https://botcscripts.com). It does this once and saves
2930
the results, so search is really fast.
3031

3132
The custom scripts listed by default are some that I've recently been playing.

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
Tools for the storyteller in Blood on the Clocktower, for supporting in-person games.
77

88
**Role assignment:** Select roles for a script and randomize them. Helps set up
9-
a game that will otherwise be run from a piece of paper (or an iPad).
9+
a game that will otherwise be run from a tablet or a piece of paper.
1010

1111
**Night sheet:** Generate a good-looking and useful night sheet for a custom
12-
script, with instructions for each characters, similar in style to the base 3
12+
script, with instructions for each character, similar in style to the base 3
1313
scripts. These print nicely, with a page for the first night and another for
1414
other nights.
1515

@@ -20,10 +20,11 @@ options on mobile.
2020
## Role assignment features
2121

2222
The highlights are that the tool helps you pick characters and distribute them
23-
to players, and it all works offline. See this [detailed list of
24-
features](FEATURES.md) for more, as well as some screenshots.
23+
to players, and it all works offline. The app has all scripts from the
24+
[unofficial script database](https://botcscripts.com). See this [detailed list
25+
of features](FEATURES.md) for more, as well as some screenshots.
2526

26-
## Setting up
27+
## Setting up for development
2728

2829
Run `yarn` to get the dependencies.
2930

@@ -43,7 +44,7 @@ some time). If you want to re-fetch, delete the downloaded assets:
4344
yarn fetch-assets --clean
4445
```
4546

46-
## Running the web site
47+
## Running the website
4748

4849
Use `yarn start` to run a development server.
4950

@@ -64,7 +65,7 @@ yarn test-screenshots
6465
`test-screenshots` takes some options, run it with `yarn test-screenshots
6566
--help` to see them.
6667

67-
## Acknowledgements and Copyrights
68+
## Acknowledgments and Copyrights
6869

6970
- [Blood on the Clocktower](https://bloodontheclocktower.com/) is a trademark of
7071
Steven Medway and The Pandemonium Institute

src/js/listing/search.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { ScriptData } from "../botc/script";
33
import { matchSorter } from "match-sorter";
44

55
const FAVORITE_TITLES: Set<string> = new Set([
6+
"Catfishing",
67
"No Roles Barred",
78
"Whose Cult Is It Anyway?",
89
"Creme De La Creme",

0 commit comments

Comments
 (0)