👥 Bevölkerung: {{ population }} 🚀
Landebuchten: {{ planet.dockCapacity }}
🏭 Produktion:
@for (item of producedItems; track $index) {
- {{ item.type }}: +{{ item.productionRate | number:'0.0-2' }}/s
}
📦 Vorräte:
@for (item of storedItems; track $index) {
{{ item.type }}: {{ item.amount | number:'0.0-1' }}
}
📦 Verbrauch:
@for (item of consumedItems; track $index) {
- {{ item.type }}: {{ item.demandRate * planet.population | number:'0.0-1' }}/s
}
📦 In Lieferung:
@for (item of goodsInTransit; track $index) {
- {{ item.type }}: {{ item.amount | number:'0.0-1' }}
}