convert all hacknet to ts

This commit is contained in:
Olivier Gagnon
2021-09-09 03:17:01 -04:00
parent c97fece747
commit b7e07bc7f2
41 changed files with 1947 additions and 1930 deletions
+13
View File
@@ -35,6 +35,19 @@ export const HacknetNodeConstants: {
MaxCores: 16,
};
export const PurchaseMultipliers: {
[key: string]: number | string | undefined;
x1: number;
x5: number;
x10: number;
MAX: string;
} = {
x1: 1,
x5: 5,
x10: 10,
MAX: "MAX",
};
export const HacknetServerConstants: {
// Constants for Hacknet Server stats/production
HashesPerLevel: number;