Stadium construction speed
The optimum stadium distribution has changed with the recent changes and is now highly dependent on the fan mood. I.e. a stadium should be build taking into account a personal estimate of the average expected fan mood.
D = Number of construction days
T = Number of terraces
B = Number of basic seats
R = Number of seats under roof
V = Number of VIP seats
floor() rounds down to neareast integer.
D = 7 + floor(0.6 + 0.00045*T + 0.00075*B + 0.00090*R + 0.00300*V)As the reader might have discovered, this can also be expressed as a function of construction price:
P = Total price for expansion (Euro)
D = 7 + floor(0.5 + P / 100000)Hence, the construction time increases for each 100k \¤ starting from 50k \¤.

