From ed7a34a58636c32f039b7f0f59226bcf1f2cd478 Mon Sep 17 00:00:00 2001 From: 7f8ddd <141754874+7f8ddd@users.noreply.github.com> Date: Sun, 3 Sep 2023 09:14:14 -0500 Subject: [PATCH 1/2] Add skills to skills list of skills with skills in a list of skills and skills that are in the list --- src/types/inventoryTypes/inventoryTypes.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/types/inventoryTypes/inventoryTypes.ts b/src/types/inventoryTypes/inventoryTypes.ts index b175dc64..5ff7a6f2 100644 --- a/src/types/inventoryTypes/inventoryTypes.ts +++ b/src/types/inventoryTypes/inventoryTypes.ts @@ -866,6 +866,7 @@ export enum GettingSlotOrderInfo { } export interface Giving { + // Probably isn't a consumable but it's also not my problem. RawUpgrades: Consumable[]; _SlotOrderInfo: GivingSlotOrderInfo[]; } @@ -905,11 +906,17 @@ export interface PersonalTechProject { export interface PlayerSkills { LPP_SPACE: number; - LPS_GUNNERY: number; + LPP_DRIFTER: number; + LPS_NONE: number; LPS_PILOTING: number; - LPS_ENGINEERING: number; + LPS_GUNNERY: number; LPS_TACTICAL: number; + LPS_ENGINEERING: number; LPS_COMMAND: number; + LPS_DRIFT_COMBAT: number; + LPS_DRIFT_RIDING: number; + LPS_DRIFT_OPPORTUNITY: number; + LPS_DRIFT_ENDURANCE: number; } export interface QuestKey { -- 2.47.2 From c281c6ce5972a93f4bc9f55da08b9dd3c4dc674c Mon Sep 17 00:00:00 2001 From: OrdisPrime <134585663+OrdisPrime@users.noreply.github.com> Date: Sun, 3 Sep 2023 16:18:11 +0200 Subject: [PATCH 2/2] Update inventoryTypes.ts --- src/types/inventoryTypes/inventoryTypes.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/types/inventoryTypes/inventoryTypes.ts b/src/types/inventoryTypes/inventoryTypes.ts index 5ff7a6f2..aacfdc15 100644 --- a/src/types/inventoryTypes/inventoryTypes.ts +++ b/src/types/inventoryTypes/inventoryTypes.ts @@ -866,7 +866,6 @@ export enum GettingSlotOrderInfo { } export interface Giving { - // Probably isn't a consumable but it's also not my problem. RawUpgrades: Consumable[]; _SlotOrderInfo: GivingSlotOrderInfo[]; } -- 2.47.2