Add grafting API function to get graftable augs

This commit is contained in:
nickofolas
2022-04-13 09:43:27 -05:00
parent e1a56f9270
commit 51e5d38c7b
5 changed files with 43 additions and 19 deletions

View File

@@ -3784,6 +3784,18 @@ export interface Grafting {
*/
getAugmentationGraftTime(augName: string): number;
/**
* Retrieves a list of Augmentations that can be grafted.
* @remarks
* RAM cost: 5 GB
*
* Note that this function returns a list of currently graftable Augmentations,
* based off of the Augmentations that you already own.
*
* @returns An array of graftable Augmentations.
*/
getGraftableAugmentations(): string[];
/**
* Begins grafting the named aug. You must be in New Tokyo to use this.
* @remarks