forked from OpenWF/SpaceNinjaServer
		
	feat: acquiring CrewShipHarness with CrewShip (#888)
Closes #886 Reviewed-on: http://209.141.38.3/OpenWF/SpaceNinjaServer/pulls/888 Reviewed-by: Sainan <sainan@calamity.inc> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									c267ce47c3
								
							
						
					
					
						commit
						fb232f74bd
					
				@ -240,7 +240,14 @@ export const addItem = async (
 | 
			
		||||
                }
 | 
			
		||||
            };
 | 
			
		||||
        } else if (ExportResources[typeName].productCategory == "CrewShips") {
 | 
			
		||||
            const inventoryChanges = addCrewShip(inventory, typeName);
 | 
			
		||||
            const inventoryChanges = {
 | 
			
		||||
                ...addCrewShip(inventory, typeName),
 | 
			
		||||
                // fix to unlock railjack modding, item bellow supposed to be obtained from archwing quest
 | 
			
		||||
                ...(!inventory.CrewShipHarnesses?.length
 | 
			
		||||
                    ? addCrewShipHarness(inventory, "/Lotus/Types/Game/CrewShip/RailJack/DefaultHarness")
 | 
			
		||||
                    : {})
 | 
			
		||||
            };
 | 
			
		||||
 | 
			
		||||
            return { InventoryChanges: inventoryChanges };
 | 
			
		||||
        } else if (ExportResources[typeName].productCategory == "ShipDecorations") {
 | 
			
		||||
            const changes = [
 | 
			
		||||
@ -810,6 +817,17 @@ const addCrewShip = (
 | 
			
		||||
    return inventoryChanges;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const addCrewShipHarness = (
 | 
			
		||||
    inventory: TInventoryDatabaseDocument,
 | 
			
		||||
    typeName: string,
 | 
			
		||||
    inventoryChanges: IInventoryChanges = {}
 | 
			
		||||
): IInventoryChanges => {
 | 
			
		||||
    const index = inventory.CrewShipHarnesses.push({ ItemType: typeName }) - 1;
 | 
			
		||||
    inventoryChanges.CrewShipHarnesses ??= [];
 | 
			
		||||
    (inventoryChanges.CrewShipHarnesses as object[]).push(inventory.CrewShipHarnesses[index].toJSON());
 | 
			
		||||
    return inventoryChanges;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
//TODO: wrong id is not erroring
 | 
			
		||||
export const addGearExpByCategory = (
 | 
			
		||||
    inventory: TInventoryDatabaseDocument,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user