-
Notifications
You must be signed in to change notification settings - Fork 186
1846
General Information
Rules Clarifications
Implementation Notes
Open Issues
Random Seeds
- Designed by Thomas Lehmann
- Published by GMT Games
- Rules
- Map
- Tiles
- Market
- BoardGameGeek
- Differences from 1830
- Note that the CW&I can be placed anytime after purchase of the associated company by a corporation. This was changed in the GMT reprint.
- If a player (rather than a corporation) owns the Steamboat Company when Phase III starts, it closes and its bonus revenue marker is removed from the board. See this BGG post from the designer.
- See the BoardGameGeek Rules Forum for more information.
- To assign the Steamboat Company marker to the Big4 and MS:
- Click the MS or Big4 charter.
- Click the appropriate tile.
- Little Miami can be used to complete a track connection between Cincinnati (H12) and Dayton (G13)
- Little Miami ignores all corporation tokens when determining if there is a connection
- there must not have already been a connection between these two cities
- to avoid repeatedly executing costly graph computations, Little Miami's ability is not automatically removed if a Cincinnati-Dayton connection is completed by other means; if a connection is made and then you try to use Little Miami, your first action will be rejected
- to keep the implementation as simple as possible, 18xx.games does not compute which tiles Little Miami could possibly lay to complete the connection; the connection is simply verified after both of Little Miami's actions have been done
Per Tom Lehmann's request, new games are created including private companies added in the 2nd Edition, Boomtown and Little Miami. The "1st Edition Private Companies" optional rule must be selected in order to exclude them.
Each of the new companies are added to one of the company groups during set up, and an additional one is removed from each group. So, it's possible for both of the new ones to be removed, and you can end up playing a 1st Edition game without having selected the 1st Edition optional rule.
All multiplayer games created on the site prior to the release of this implementation have been updated to use the 1st Edition optional rule. However, since Hotseat games exist only on the computer where they are created, we cannot automatically update those.
First, open up 18xx.games. Then, copy this script and paste it into your browser's console, and press Enter (instructions for opening up your browser console):
function add_1e_option(game_id) {
const game_data = JSON.parse(localStorage[game_id]);
if (!['1846', '1846 2p Variant'].includes(game_data.title)) {
return;
}
if (!game_data.settings.optional_rules) {
game_data.settings.optional_rules = [];
}
if (!game_data.settings.optional_rules.includes('first_ed')) {
game_data.settings.optional_rules.push('first_ed');
localStorage[game_id] = JSON.stringify(game_data);
console.log('Added optional rule "1st Edition Private Companies" to game: ' + game_id);
}
}
function remove_1e_option(game_id) {
const game_data = JSON.parse(localStorage[game_id]);
if (!['1846', '1846 2p Variant'].includes(game_data.title)) {
return;
}
if (game_data.settings.optional_rules.includes('first_ed')) {
const filter = function (value, index, array) {
return value != 'first_ed';
};
game_data.settings.optional_rules = game_data.settings.optional_rules.filter(filter)
localStorage[game_id] = JSON.stringify(game_data);
console.log('Removed optional rule "1st Edition Private Companies" from game: ' + game_id);
}
}
function fix_all_games() {
Object.entries(localStorage).forEach(function (entry) {
const game_id = entry[0];
if (game_id.match(/^hs_[a-z]+_[0-9]+$/) == null) {
return;
}
add_1e_option(game_id);
});
}
fix_all_games();
This script will add the 1st Edition optional rule to all Hotseat 1846 games in your browser, and will display the game ID for each game it modifies. If you started a Hotseat 1846 game using the 2nd Edition Companies before you ran this script, that game will have the 1st Edition optional rule added and will be broken. It can be fixed by running this command in your browser's console (replace the sample game ID here with your broken game's ID, but be sure to keep the double-quote characters):
remove_1e_option("hs_xukegukn_1620770611")
Random seeds can be specified during game creation to get a preset selection of privates and corporations. Below is a table where an X is used to show if the corporation (Corp) / company is removed in the selected seed. The 4 leftmost ones are the "orange" companies. The next 4 ones are the "blue" companies. The 3 rightmost ones are the corporations.
Note! This is a selection of all possible combinations in 1846 game.
3-player game
Seed | LSL | LM | MC | O&I | BT | MPC | SC | TBC | C&O | ERIE | PRR |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | x | x | x | x | x | x | x | x | |||
1 | x | x | x | x | x | x | x | x | |||
2 | x | x | x | x | x | x | x | x | |||
3 | x | x | x | x | x | x | x | x | |||
4 | x | x | x | x | x | x | x | x | |||
5 | x | x | x | x | x | x | x | x | |||
6 | x | x | x | x | x | x | x | x | |||
7 | x | x | x | x | x | x | x | x | |||
8 | x | x | x | x | x | x | x | x | |||
9 | x | x | x | x | x | x | x | x | |||
10 | x | x | x | x | x | x | x | x | |||
11 | x | x | x | x | x | x | x | x | |||
12 | x | x | x | x | x | x | x | x | |||
13 | x | x | x | x | x | x | x | x | |||
14 | x | x | x | x | x | x | x | x | |||
15 | x | x | x | x | x | x | x | x | |||
16 | x | x | x | x | x | x | x | x | |||
17 | x | x | x | x | x | x | x | x | |||
19 | x | x | x | x | x | x | x | x | |||
21 | x | x | x | x | x | x | x | x | |||
22 | x | x | x | x | x | x | x | x | |||
27 | x | x | x | x | x | x | x | x | |||
28 | x | x | x | x | x | x | x | x | |||
29 | x | x | x | x | x | x | x | x | |||
30 | x | x | x | x | x | x | x | x | |||
31 | x | x | x | x | x | x | x | x | |||
32 | x | x | x | x | x | x | x | x | |||
35 | x | x | x | x | x | x | x | x | |||
38 | x | x | x | x | x | x | x | x | |||
39 | x | x | x | x | x | x | x | x | |||
40 | x | x | x | x | x | x | x | x | |||
44 | x | x | x | x | x | x | x | x | |||
45 | x | x | x | x | x | x | x | x | |||
46 | x | x | x | x | x | x | x | x | |||
48 | x | x | x | x | x | x | x | x | |||
51 | x | x | x | x | x | x | x | x | |||
52 | x | x | x | x | x | x | x | x | |||
65 | x | x | x | x | x | x | x | x | |||
71 | x | x | x | x | x | x | x | x | |||
79 | x | x | x | x | x | x | x | x | |||
82 | x | x | x | x | x | x | x | x | |||
89 | x | x | x | x | x | x | x | x | |||
92 | x | x | x | x | x | x | x | x | |||
97 | x | x | x | x | x | x | x | x | |||
108 | x | x | x | x | x | x | x | x | |||
119 | x | x | x | x | x | x | x | x | |||
215 | x | x | x | x | x | x | x | x | |||
256 | x | x | x | x | x | x | x | x |
4-player game
Seed | LSL | LM | MC | O&I | BT | MPC | SC | TBC | C&O | ERIE | PRR |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | x | x | x | x | x | ||||||
1 | x | x | x | x | x | ||||||
3 | x | x | x | x | x | ||||||
4 | x | x | x | x | x | ||||||
5 | x | x | x | x | x | ||||||
6 | x | x | x | x | x | ||||||
7 | x | x | x | x | x | ||||||
9 | x | x | x | x | x | ||||||
10 | x | x | x | x | x | ||||||
11 | x | x | x | x | x | ||||||
12 | x | x | x | x | x | ||||||
13 | x | x | x | x | x | ||||||
14 | x | x | x | x | x | ||||||
15 | x | x | x | x | x | ||||||
16 | x | x | x | x | x | ||||||
17 | x | x | x | x | x | ||||||
18 | x | x | x | x | x | ||||||
19 | x | x | x | x | x | ||||||
20 | x | x | x | x | x | ||||||
21 | x | x | x | x | x | ||||||
22 | x | x | x | x | x | ||||||
23 | x | x | x | x | x | ||||||
25 | x | x | x | x | x | ||||||
26 | x | x | x | x | x | ||||||
27 | x | x | x | x | x | ||||||
28 | x | x | x | x | x | ||||||
29 | x | x | x | x | x | ||||||
33 | x | x | x | x | x | ||||||
34 | x | x | x | x | x | ||||||
36 | x | x | x | x | x | ||||||
38 | x | x | x | x | x | ||||||
40 | x | x | x | x | x | ||||||
42 | x | x | x | x | x | ||||||
43 | x | x | x | x | x | ||||||
44 | x | x | x | x | x | ||||||
45 | x | x | x | x | x | ||||||
48 | x | x | x | x | x | ||||||
49 | x | x | x | x | x | ||||||
50 | x | x | x | x | x | ||||||
51 | x | x | x | x | x | ||||||
54 | x | x | x | x | x | ||||||
55 | x | x | x | x | x | ||||||
56 | x | x | x | x | x | ||||||
57 | x | x | x | x | x | ||||||
58 | x | x | x | x | x | ||||||
59 | x | x | x | x | x | ||||||
60 | x | x | x | x | x | ||||||
61 | x | x | x | x | x | ||||||
62 | x | x | x | x | x | ||||||
63 | x | x | x | x | x | ||||||
65 | x | x | x | x | x | ||||||
66 | x | x | x | x | x | ||||||
68 | x | x | x | x | x | ||||||
71 | x | x | x | x | x | ||||||
72 | x | x | x | x | x | ||||||
73 | x | x | x | x | x | ||||||
75 | x | x | x | x | x | ||||||
76 | x | x | x | x | x | ||||||
77 | x | x | x | x | x | ||||||
78 | x | x | x | x | x | ||||||
79 | x | x | x | x | x | ||||||
80 | x | x | x | x | x | ||||||
84 | x | x | x | x | x | ||||||
86 | x | x | x | x | x | ||||||
90 | x | x | x | x | x | ||||||
91 | x | x | x | x | x | ||||||
93 | x | x | x | x | x | ||||||
96 | x | x | x | x | x | ||||||
97 | x | x | x | x | x | ||||||
98 | x | x | x | x | x | ||||||
101 | x | x | x | x | x | ||||||
106 | x | x | x | x | x | ||||||
117 | x | x | x | x | x | ||||||
120 | x | x | x | x | x | ||||||
123 | x | x | x | x | x | ||||||
124 | x | x | x | x | x | ||||||
129 | x | x | x | x | x | ||||||
130 | x | x | x | x | x | ||||||
131 | x | x | x | x | x | ||||||
134 | x | x | x | x | x | ||||||
137 | x | x | x | x | x | ||||||
138 | x | x | x | x | x | ||||||
139 | x | x | x | x | x | ||||||
141 | x | x | x | x | x | ||||||
142 | x | x | x | x | x | ||||||
150 | x | x | x | x | x | ||||||
152 | x | x | x | x | x | ||||||
159 | x | x | x | x | x | ||||||
170 | x | x | x | x | x | ||||||
172 | x | x | x | x | x | ||||||
179 | x | x | x | x | x | ||||||
182 | x | x | x | x | x | ||||||
183 | x | x | x | x | x | ||||||
187 | x | x | x | x | x | ||||||
188 | x | x | x | x | x | ||||||
189 | x | x | x | x | x | ||||||
198 | x | x | x | x | x | ||||||
208 | x | x | x | x | x | ||||||
211 | x | x | x | x | x | ||||||
214 | x | x | x | x | x | ||||||
244 | x | x | x | x | x | ||||||
255 | x | x | x | x | x | ||||||
266 | x | x | x | x | x | ||||||
291 | x | x | x | x | x | ||||||
321 | x | x | x | x | x | ||||||
331 | x | x | x | x | x | ||||||
342 | x | x | x | x | x | ||||||
361 | x | x | x | x | x |
5-player game
Seed | LSL | LM | MC | O&I | BT | MPC | SC | TBC |
---|---|---|---|---|---|---|---|---|
0 | x | x | ||||||
1 | x | x | ||||||
2 | x | x | ||||||
3 | x | x | ||||||
4 | x | x | ||||||
5 | x | x | ||||||
6 | x | x | ||||||
7 | x | x | ||||||
9 | x | x | ||||||
11 | x | x | ||||||
13 | x | x | ||||||
19 | x | x | ||||||
20 | x | x | ||||||
23 | x | x | ||||||
31 | x | x | ||||||
45 | x | x |