Refactored Augmentation implementation to Typescript, and to have the multiplier information in the actrual Augmentation object

This commit is contained in:
danielyxie
2019-01-15 05:11:14 -08:00
parent bcb231a966
commit 6d8d25e0bb
30 changed files with 982 additions and 925 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
import { Augmentations,
applyAugmentation,
AugmentationNames,
PlayerOwnedAugmentation } from "./Augmentations";
import { BitNodeMultipliers } from "./BitNodeMultipliers";
import { Augmentations } from "./Augmentation/Augmentations";
import { applyAugmentation } from "./Augmentation/AugmentationHelpers";
import { PlayerOwnedAugmentation } from "./Augmentation/PlayerOwnedAugmentation";
import { AugmentationNames } from "./Augmentation/data/AugmentationNames";
import { BitNodeMultipliers } from "./BitNode/BitNodeMultipliers";
import { CodingContractRewardType } from "./CodingContracts";
import { Company } from "./Company/Company";
import { Companies } from "./Company/Companies";