
-BB
proxy8o started 02 Oct 2011, now at turn 1.BongoBob wrote:Game started with no fleet keys at my HW. Kind of makes it difficult to play.![]()
-BB
No, this isn´t implemented yet.BongoBob wrote: Notice how as a Skip Tracer I should have automatically probed worlds W2 and W10? Didn't happen as I have no fleets, so no probes.
Don´t always expect the worst intentions.BongoBob wrote:Mitch, my bad. Sorry about the other "treasure" map game but with the initial parameters you set and your choice of character, no matter what I did or which character type I initially picked, you would have won. Turn 2 you would have had 2 bronze worlds and 6 fleets to my 0 and 2 (total 18 industry vs. my 08), and by turn 3 I expect you had 2 bronze/4 silver/1 gold worlds and 20+ fleets to my 1/0/0 and 4 (total ~90 industry vs. my 13). In 2 more turns you would have been able to arrive at my HW with 4+ times the ships and 5+times the fleets as I had. To be honest, I suspected as much when I signed up, but didn't realize how unbalanced it would turn out to be. Which brings me to...
P.S. Sorry Mitch I was (uncharacteristically) rude, won't happen again.
They change from time to time, but for now the numbers look like this:are the actual value ranges for e.g. Number of fleets = 3 available anywhere?
Code: Select all
# The number of worlds in the galaxy, per player.
NumWorlds = {
-5: (8, 9),
-4: (10, 12),
-3: (12, 13),
-2: (13, 14),
-1: (14, 16),
0 : (16, 18),
1 : (18, 20),
2 : (20, 22),
3 : (22, 24),
4 : (24, 26),
5 : (32, 35),
}
# The number of fleets per player.
NumFleets = {
-5: (5, 8),
-4: (8, 10),
-3: (10, 12),
-2: (12, 14),
-1: (14, 16),
0 : (16, 18),
1 : (18, 21),
2 : (21, 24),
3 : (24, 27),
4 : (27, 30),
5 : (32, 35),
}
# The number of artifacts per each 15 players.
NumArtifacts = {
-5: (0, 20),
-4: (20, 60),
-3: (60, 80),
-2: (80, 90),
-1: (90, 95),
0 : (100, 100),
1 : (105, 110),
2 : (110, 120),
3 : (120, 140),
4 : (140, 180),
5 : (200, 250),
}
# The secret end-of-game target score.
EndOfGameScore = {
-5: (2000, 3000),
-4: (4500, 5500),
-3: (5500, 6000),
-2: (6000, 6500),
-1: (6500, 7000),
0 : (7000, 8000),
1 : (8000, 9000),
2 : (9000, 10000),
3 : (10000, 11000),
4 : (12000, 15000),
5 : (20000, 40000),
}