Adding obsidian docs with initial notes

This commit is contained in:
2026-05-25 14:52:15 -04:00
parent 211429c54b
commit db8dfd6aba
51 changed files with 35217 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
---
type: Task
status: Working On
---
# Building Plan Calculator
In general, resources are always produced by buildings. So by building buildings, you have more resources to build buildings a bit faster.
We want to consider every turn, to the last turn the player is on. So if we are on turn 60, we consider all turns between 1 and 60.
We need the income added every turn to a total pool, where appropriate. This pool gets subtracted from via build costs at the specific turn they are required, and any ongoing upkeep costs that occur every turn after said entity exists.
Store JSON of the build order of each building of when it's made.
Store Gold values over time. Table out the stored gold total for every turn that exists, such as the 1 to 60 example.
So to represent this, make a build order class that has an id to and item, and a built at time and a built finish time. The built finish time will be calculated when a stored required industry value, starting with the cost industry and then subtracted by the total income industry reaches a zero cutoff.
![[Building Calculator]]
![[Building Stats Reference]]