part 1 of converting gang to react

This commit is contained in:
Olivier Gagnon
2021-06-14 15:42:38 -04:00
parent 67e5e413e4
commit 25f546c691
18 changed files with 1251 additions and 267 deletions
+13
View File
@@ -0,0 +1,13 @@
export const GangConstants: {
GangRespectToReputationRatio: number;
MaximumGangMembers: number;
CyclesPerTerritoryAndPowerUpdate: number;
AscensionMultiplierRatio: number;
} = {
// Respect is divided by this to get rep gain
GangRespectToReputationRatio: 5,
MaximumGangMembers: 30,
CyclesPerTerritoryAndPowerUpdate: 100,
// Portion of upgrade multiplier that is kept after ascending
AscensionMultiplierRatio : 15,
};