]> git.pond.sub.org Git - empserver/blob - info/Technology.t
Make: Get SHELL from Autoconf
[empserver] / info / Technology.t
1 .TH Concept Technology
2 .NA Technology "How technology level is calculated each update"
3 .LV Expert
4 .s1
5 Your technology level affects the range that guns can fire,
6 the range over which radar is effective,
7 the range that planes can fly
8 and the range that torpedoes can travel, among other things.
9 .s1
10 The \*Qnation\*U command will display your current technology level
11 and technology factor.
12 .s1
13 .nf
14 This is how your new technology level is determined every update:
15
16 (1) Technological breakthroughs are produced in tech centres.
17 See "info Products" or the "production" command to find out how many
18 technological breakthroughs you are going to produce.  Your update
19 telegram will tell you the number of technological breakthroughs
20 produced in your various tech centres in a line like this:
21   technological breakthroughs (7.2) produced in 3,1
22
23 (2) Calculate tech delta from technological breakthroughs
24 In the output of the "version" command, you will see a line like this:
25   Tech buildup is limited to logarithmic growth (base 2.00) after 3.00.
26
27 In this example, the "tech log base" is 2.00 and the "easy tech" is
28 3.00.  To find out what your tech delta for an update will be, subtract
29 "easy tech" from the number of technological breakthroughs you are
30 producing and then add 1, then take the logorithm with base "tech log
31 base" and then add the "easy tech" back on.
32
33 For example, say you had a number of tech centres producing a total of
34 18.0 tech units.  Then to calculate your delta, first subtract "easy
35 tech" from it and then add 1 to obtain 16.0, then take the log base 2.0
36 of that which is 4.0 (since 2 to the power 4 is equal to 16), and then
37 add the "easy tech" back on to get a tech delta of 7.0.
38
39 (3) Tech bleed
40 If the ALL_BLEED option is enabled, then you will gain extra technology from
41 all countries producing tech, and there will be a line in the
42 "version" output like this:
43   The technology/research boost you get from the world is 50.00%.
44
45 If the ALL_BLEED option is turned off, then you will gain extra
46 technology from the countries with whom you share a two-way alliance,
47 and the line in the "version" output will look like this:
48   The technology/research boost you get from your allies is 50.00%.
49
50 In both cases, the amount of tech you get is 50% of the average amount
51 of tech delta for all eligible "bleeders".  Note that a fundamental
52 difference between these two cases is that in the ALL_BLEED case, only
53 countries which are producing tech are counted in the average, whereas
54 in the case where ALL_BLEED is turned off, the amount of tech bleed is
55 averaged among all of your allies whether they are producing tech or not.
56
57 Your net tech delta will be printed in your update telegram as:
58   3.000 technology (2.0000 + 1.0000)
59 where the 3.0000 is your net tech level gain, and that is broken down into
60 how much you produced (2.0000) and how much you got from tech bleed (1.0000).
61
62 (4) Tech decay
63 After your net tech increase has been added to your country's
64 technology level, then your technology level will decay.  The amount of tech
65 decay is printed in the version output as:
66   Nation levels (tech etc.) decline 1% every 96 time units.
67 The number of time units in an update is printed in the version output as:
68   An update consists of 60 empire time units.
69 Every update, your tech is reduced by
70   decay = (tech level) * (decay rate) * (etu per update) / (decay etus).
71 So if your tech level was 200.0, and the decay rate was as above, then
72 you would lose:
73   decay = 200 * 0.01 * 60 / 96 = 1.25
74 and so your tech would go down to 198.75 from decay.
75
76 (5) Tech leak
77 If your tech level is much lower than the tech level of the highest
78 tech country in the world, then every update, there is a chance that
79 one of their high tech secrets will get leaked into your country.
80
81 Take the tech level of the highest tech country in the world and
82 divide by 5.  Call this the "minimum tech".  If your tech level is
83 lower than the "minimum tech", then every update, there is a 20%
84 chance that your tech level will increase by one third of the
85 difference between your tech level and the minimum tech.
86 .fi
87 .s1
88 Note that if the TECH_POP option is enabled, technology costs
89 proportionately more $$$ to make as your civilian population grows
90 past 50,000 civilians.
91 .s1
92 .SA "Innards, nation, Research, Nations, Producing, Updates"