Add Augmentation unique to Grafting

This commit is contained in:
nickofolas
2022-04-07 00:48:39 -05:00
parent 7d4bf90b40
commit 314e37430d
5 changed files with 29 additions and 1 deletions
+5
View File
@@ -141,6 +141,11 @@ function applyAugmentation(aug: IPlayerOwnedAugmentation, reapply = false): void
}
}
// Special logic for Congruity Implant
if (aug.name === AugmentationNames.CongruityImplant) {
Player.entropy = 0;
}
// Push onto Player's Augmentation list
if (!reapply) {
const ownedAug = new PlayerOwnedAugmentation(aug.name);