add sleeve aug price and rep function

This commit is contained in:
Olivier Gagnon
2022-07-21 02:42:48 -04:00
parent dd7b5c4316
commit 693baf26df
3 changed files with 41 additions and 0 deletions

View File

@@ -3779,6 +3779,28 @@ export interface Sleeve {
*/
getSleeveAugmentations(sleeveNumber: number): string[];
/**
* Get price of an augmentation.
* @remarks
* RAM cost: 4 GB
*
*
* @param augName - Name of Augmentation.
* @returns Price of the augmentation.
*/
getSleeveAugmentationPrice(augName: string): number;
/**
* Get reputation requirement of an augmentation.
* @remarks
* RAM cost: 4 GB
*
*
* @param augName - Name of Augmentation.
* @returns Reputation requirement of the augmentation.
*/
getSleeveAugmentationRepReq(augName: string): number;
/**
* List purchasable augs for a sleeve.
* @remarks