From 1a029ebb4bbe714f809d36f2888daa192db4f2b7 Mon Sep 17 00:00:00 2001 From: Vampire Kitten <95658710+VampireKitten@users.noreply.github.com> Date: Fri, 18 Oct 2024 18:13:53 +0200 Subject: [PATCH] fix: missing vendor infos (#565) --- .../api/getVendorInfoController.ts | 114 ++++++- ...EntratiFragmentVendorProductsManifest.json | 300 ++++++++++++++++ .../DeimosFishmongerVendorManifest.json | 106 ++++++ ...sHivemindCommisionsManifestFishmonger.json | 241 +++++++++++++ ...osHivemindCommisionsManifestPetVendor.json | 287 ++++++++++++++++ ...sHivemindCommisionsManifestProspector.json | 312 +++++++++++++++++ ...HivemindCommisionsManifestTokenVendor.json | 223 ++++++++++++ ...HivemindCommisionsManifestWeaponsmith.json | 254 ++++++++++++++ .../DeimosHivemindTokenVendorManifest.json | 286 ++++++++++++++++ .../DeimosPetVendorManifest.json | 136 ++++++++ .../DeimosProspectorVendorManifest.json | 61 ++++ .../DuviriAcrithisVendorManifest.json | 321 ++++++++++++++++++ .../EntratiLabsEntratiLabVendorManifest.json | 245 +++++++++++++ ...ratiLabsEntratiLabsCommisionsManifest.json | 97 ++++++ .../HubsIronwakeDondaVendorManifest.json | 125 +++++++ .../HubsRailjackCrewMemberVendorManifest.json | 244 +++++++++++++ .../OstronFishmongerVendorManifest.json | 106 ++++++ .../OstronPetVendorManifest.json | 94 +++++ .../OstronProspectorVendorManifest.json | 62 ++++ .../SolarisDebtTokenVendorManifest.json | 248 ++++++++++++++ ...sDebtTokenVendorRepossessionsManifest.json | 126 +++++++ .../SolarisFishmongerVendorManifest.json | 106 ++++++ .../SolarisProspectorVendorManifest.json | 61 ++++ 23 files changed, 4153 insertions(+), 2 deletions(-) create mode 100644 static/fixed_responses/getVendorInfo/DeimosEntratiFragmentVendorProductsManifest.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosFishmongerVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestFishmonger.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestPetVendor.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestProspector.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestTokenVendor.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestWeaponsmith.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosHivemindTokenVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosPetVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/DeimosProspectorVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/DuviriAcrithisVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabsCommisionsManifest.json create mode 100644 static/fixed_responses/getVendorInfo/HubsIronwakeDondaVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/HubsRailjackCrewMemberVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/OstronFishmongerVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/OstronPetVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/OstronProspectorVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorRepossessionsManifest.json create mode 100644 static/fixed_responses/getVendorInfo/SolarisFishmongerVendorManifest.json create mode 100644 static/fixed_responses/getVendorInfo/SolarisProspectorVendorManifest.json diff --git a/src/controllers/api/getVendorInfoController.ts b/src/controllers/api/getVendorInfoController.ts index aa831028..438ee5b9 100644 --- a/src/controllers/api/getVendorInfoController.ts +++ b/src/controllers/api/getVendorInfoController.ts @@ -1,22 +1,132 @@ import { RequestHandler } from "express"; import ArchimedeanVendorManifest from "@/static/fixed_responses/getVendorInfo/ArchimedeanVendorManifest.json"; +import DeimosEntratiFragmentVendorProductsManifest from "@/static/fixed_responses/getVendorInfo/DeimosEntratiFragmentVendorProductsManifest.json"; +import DeimosFishmongerVendorManifest from "@/static/fixed_responses/getVendorInfo/DeimosFishmongerVendorManifest.json"; +import DeimosHivemindCommisionsManifestFishmonger from "@/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestFishmonger.json"; +import DeimosHivemindCommisionsManifestPetVendor from "@/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestPetVendor.json"; +import DeimosHivemindCommisionsManifestProspector from "@/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestProspector.json"; +import DeimosHivemindCommisionsManifestTokenVendor from "@/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestTokenVendor.json"; +import DeimosHivemindCommisionsManifestWeaponsmith from "@/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestWeaponsmith.json"; +import DeimosHivemindTokenVendorManifest from "@/static/fixed_responses/getVendorInfo/DeimosHivemindTokenVendorManifest.json"; +import DeimosPetVendorManifest from "@/static/fixed_responses/getVendorInfo/DeimosPetVendorManifest.json"; +import DeimosProspectorVendorManifest from "@/static/fixed_responses/getVendorInfo/DeimosProspectorVendorManifest.json"; +import DuviriAcrithisVendorManifest from "@/static/fixed_responses/getVendorInfo/DuviriAcrithisVendorManifest.json"; +import EntratiLabsEntratiLabsCommisionsManifest from "@/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabsCommisionsManifest.json"; +import EntratiLabsEntratiLabVendorManifest from "@/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabVendorManifest.json"; +import HubsIronwakeDondaVendorManifest from "@/static/fixed_responses/getVendorInfo/HubsIronwakeDondaVendorManifest.json"; +import HubsRailjackCrewMemberVendorManifest from "@/static/fixed_responses/getVendorInfo/HubsRailjackCrewMemberVendorManifest.json"; import MaskSalesmanManifest from "@/static/fixed_responses/getVendorInfo/MaskSalesmanManifest.json"; +import OstronFishmongerVendorManifest from "@/static/fixed_responses/getVendorInfo/OstronFishmongerVendorManifest.json"; +import OstronProspectorVendorManifest from "@/static/fixed_responses/getVendorInfo/OstronProspectorVendorManifest.json"; +import OstronPetVendorManifest from "@/static/fixed_responses/getVendorInfo/OstronPetVendorManifest.json"; +import SolarisFishmongerVendorManifest from "@/static/fixed_responses/getVendorInfo/SolarisFishmongerVendorManifest.json"; +import SolarisProspectorVendorManifest from "@/static/fixed_responses/getVendorInfo/SolarisProspectorVendorManifest.json"; +import SolarisDebtTokenVendorManifest from "@/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorManifest.json"; +import SolarisDebtTokenVendorRepossessionsManifest from "@/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorRepossessionsManifest.json"; import ZarimanCommisionsManifestArchimedean from "@/static/fixed_responses/getVendorInfo/ZarimanCommisionsManifestArchimedean.json"; export const getVendorInfoController: RequestHandler = (req, res) => { switch (req.query.vendor as string) { - case "/Lotus/Types/Game/VendorManifests/Zariman/ArchimedeanVendorManifest": - res.json(ArchimedeanVendorManifest); + case "/Lotus/Types/Game/VendorManifests/Ostron/FishmongerVendorManifest": + res.json(OstronFishmongerVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Ostron/ProspectorVendorManifest": + res.json(OstronProspectorVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Ostron/PetVendorManifest": + res.json(OstronPetVendorManifest); break; case "/Lotus/Types/Game/VendorManifests/Ostron/MaskSalesmanManifest": res.json(MaskSalesmanManifest); break; + case "/Lotus/Types/Game/VendorManifests/Solaris/FishmongerVendorManifest": + res.json(SolarisFishmongerVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Solaris/ProspectorVendorManifest": + res.json(SolarisProspectorVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Solaris/DebtTokenVendorManifest": + res.json(SolarisDebtTokenVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Solaris/DebtTokenVendorRepossessionsManifest": + res.json(SolarisDebtTokenVendorRepossessionsManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Hubs/RailjackCrewMemberVendorManifest": + res.json(HubsRailjackCrewMemberVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestWeaponsmith": + res.json(DeimosHivemindCommisionsManifestWeaponsmith); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestFishmonger": + res.json(DeimosHivemindCommisionsManifestFishmonger); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/FishmongerVendorManifest": + res.json(DeimosFishmongerVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestProspector": + res.json(DeimosHivemindCommisionsManifestProspector); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/ProspectorVendorManifest": + res.json(DeimosProspectorVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestPetVendor": + res.json(DeimosHivemindCommisionsManifestPetVendor); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/PetVendorManifest": + res.json(DeimosPetVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestTokenVendor": + res.json(DeimosHivemindCommisionsManifestTokenVendor); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/EntratiFragmentVendorProductsManifest": + res.json(DeimosEntratiFragmentVendorProductsManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Deimos/HivemindTokenVendorManifest": + res.json(DeimosHivemindTokenVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Hubs/IronwakeDondaVendorManifest": + res.json(HubsIronwakeDondaVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Zariman/ArchimedeanVendorManifest": + res.json(ArchimedeanVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/Duviri/AcrithisVendorManifest": + res.json(DuviriAcrithisVendorManifest); + break; + case "/Lotus/Types/Game/VendorManifests/Zariman/ZarimanCommisionsManifestArchimedean": res.json(ZarimanCommisionsManifestArchimedean); break; + case "/Lotus/Types/Game/VendorManifests/EntratiLabs/EntratiLabVendorManifest": + res.json(EntratiLabsEntratiLabVendorManifest); + break; + + case "/Lotus/Types/Game/VendorManifests/EntratiLabs/EntratiLabsCommisionsManifest": + res.json(EntratiLabsEntratiLabsCommisionsManifest); + break; + default: throw new Error(`Unknown vendor: ${req.query.vendor}`); } diff --git a/static/fixed_responses/getVendorInfo/DeimosEntratiFragmentVendorProductsManifest.json b/static/fixed_responses/getVendorInfo/DeimosEntratiFragmentVendorProductsManifest.json new file mode 100644 index 00000000..07f94813 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosEntratiFragmentVendorProductsManifest.json @@ -0,0 +1,300 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e01c96976e97d6b802e" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/EntratiFragmentVendorProductsManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/SeriglassShard", + "ItemPrices": [ + { + "ItemCount": 20, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8390" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosBouncy", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8391" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosBreakthrough", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8392" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosCatacombs", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8393" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosDownfall", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8394" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosObsession", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8395" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDeimosTunnels", + "ItemPrices": [ + { + "ItemCount": 50, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e8396" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Deimos/FatherTokenShipDeco", + "ItemPrices": [ + { + "ItemCount": 10, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonA", + "ProductCategory": "MiscItems" + }, + { + "ItemCount": 5, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f1" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Deimos/LisetPropEntratiLamp", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonB", + "ItemCount": 12, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f2" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Deimos/LisetPropInfestedCrate", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonA", + "ItemCount": 11, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f3" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Deimos/LisetPropInfestedCystC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f4" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/StoreItems/AvatarImages/RequiemRisGlyph", + "ItemPrices": [ + { + "ItemCount": 15, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f5" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Deimos/MotherTokenShipDeco", + "ItemPrices": [ + { + "ItemCount": 10, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ProductCategory": "MiscItems" + }, + { + "ItemCount": 5, + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentRareA", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e83f6" + } + } + ], + "PropertyTextHash": "DB953EE163A65B3BCC0552902321D791", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosFishmongerVendorManifest.json b/static/fixed_responses/getVendorInfo/DeimosFishmongerVendorManifest.json new file mode 100644 index 00000000..ac6c0951 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosFishmongerVendorManifest.json @@ -0,0 +1,106 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e01c96976e97d6b8016" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/FishmongerVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosOrokinFishAPartItem", + "PremiumPrice": [9, 9], + "Bin": "BIN_1", + "QuantityMultiplier": 10, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91b9" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishDPartItem", + "PremiumPrice": [17, 17], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91ba" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "PremiumPrice": [10, 10], + "Bin": "BIN_1", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91bb" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "PremiumPrice": [6, 6], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91bc" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishAPartItem", + "PremiumPrice": [5, 5], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91bd" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Deimos/FishParts/DeimosGenericSharedFishPartItem", + "PremiumPrice": [7, 7], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e91be" + } + } + ], + "PropertyTextHash": "6DF13A7FB573C25B4B4F989CBEFFC615", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestFishmonger.json b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestFishmonger.json new file mode 100644 index 00000000..fd6a561b --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestFishmonger.json @@ -0,0 +1,241 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e01c96976e97d6b8009" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestFishmonger", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishFPartItem", + "ItemCount": 6, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 16, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 63978959, + "Id": { + "$oid": "66fd60b10ba592c4c95e82cc" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishDPartItem", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3808064409, + "Id": { + "$oid": "66fd60b10ba592c4c95e82cd" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishEPartItem", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3849710569, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d0" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericInfestedFishPartItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1687111317, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d1" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishAPartItem", + "ItemCount": 4, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2267414276, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d2" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericInfestedFishPartItem", + "ItemCount": 6, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericSharedFishPartItem", + "ItemCount": 6, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1497494256, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d3" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericInfestedFishPartItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2883527039, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d4" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Daughter/DaughterTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishGPartItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 4116691539, + "Id": { + "$oid": "66fd60b10ba592c4c95e82d5" + } + } + ], + "PropertyTextHash": "54B6992C6314367F8EEA74B7F1A1C352", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestPetVendor.json b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestPetVendor.json new file mode 100644 index 00000000..44966e70 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestPetVendor.json @@ -0,0 +1,287 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e03c96976e97d6b80a3" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestPetVendor", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMaggotRare", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMaggotCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2707699975, + "Id": { + "$oid": "66fd60b10ba592c4c95e8897" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorCommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMaggotCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3610714639, + "Id": { + "$oid": "66fd60b10ba592c4c95e8898" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorCommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMaggotRare", + "ItemCount": 1, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1782149988, + "Id": { + "$oid": "66fd60b10ba592c4c95e8899" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMergooCommon", + "ItemCount": 3, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2149416825, + "Id": { + "$oid": "66fd60b10ba592c4c95e889a" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedCritterRare", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedKdriveUncommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 890863265, + "Id": { + "$oid": "66fd60b10ba592c4c95e889b" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedCritterCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2507606934, + "Id": { + "$oid": "66fd60b10ba592c4c95e889c" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorRare", + "ItemCount": 5, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1037784729, + "Id": { + "$oid": "66fd60b10ba592c4c95e889e" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMaggotCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedCritterCommon", + "ItemCount": 4, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2048707501, + "Id": { + "$oid": "66fd60b10ba592c4c95e889f" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedKdriveRare", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorCommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 4038149313, + "Id": { + "$oid": "66fd60b10ba592c4c95e88a0" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Son/SonTaskD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedMergooCommon", + "ItemCount": 3, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/AnimalTagInfestedPredatorRare", + "ItemCount": 3, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2155290001, + "Id": { + "$oid": "66fd60b10ba592c4c95e88a1" + } + } + ], + "PropertyTextHash": "61E66B4E9E5A121DD06A476AE2A81B24", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestProspector.json b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestProspector.json new file mode 100644 index 00000000..7b1d1fad --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestProspector.json @@ -0,0 +1,312 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e01c96976e97d6b7ff1" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestProspector", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemBItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1370972414, + "Id": { + "$oid": "66fd60b20ba592c4c95e8ef8" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreBItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonGemAItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonOreAItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2361790143, + "Id": { + "$oid": "66fd60b20ba592c4c95e8ef9" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 6, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 472210739, + "Id": { + "$oid": "66fd60b20ba592c4c95e8efb" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreBItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 15, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3072462886, + "Id": { + "$oid": "66fd60b20ba592c4c95e8efd" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 767765909, + "Id": { + "$oid": "66fd60b20ba592c4c95e8efe" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosEidolonGemAItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosEidolonGemBItem", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosRareOreAItem", + "ItemCount": 22, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 512512880, + "Id": { + "$oid": "66fd60b20ba592c4c95e8eff" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 6, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2037734419, + "Id": { + "$oid": "66fd60b20ba592c4c95e8f00" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonOreAItem", + "ItemCount": 13, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1433662587, + "Id": { + "$oid": "66fd60b20ba592c4c95e8f01" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonOreAItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1618492734, + "Id": { + "$oid": "66fd60b20ba592c4c95e8f02" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Otak/OtakTaskD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonGemAItem", + "ItemCount": 7, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemBItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosRareOreAItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 4032699594, + "Id": { + "$oid": "66fd60b20ba592c4c95e8f03" + } + } + ], + "PropertyTextHash": "0AC3C284471037011B36EC51238D13A9", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestTokenVendor.json b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestTokenVendor.json new file mode 100644 index 00000000..dcc45dc9 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestTokenVendor.json @@ -0,0 +1,223 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e03c96976e97d6b80d2" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestTokenVendor", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonC", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1415858946, + "Id": { + "$oid": "670a47b1872b2325705e746c" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonB", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3178511462, + "Id": { + "$oid": "670a47b1872b2325705e746e" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonA", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonC", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3313207881, + "Id": { + "$oid": "670a47b1872b2325705e7471" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonB", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2241288767, + "Id": { + "$oid": "670a47b1872b2325705e7472" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3395082536, + "Id": { + "$oid": "670a47b1872b2325705e7473" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonC", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 493457277, + "Id": { + "$oid": "670a47b1872b2325705e7474" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Grandmother/GrandmotherTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentUncommonB", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Deimos/EntratiFragmentCommonB", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 4225814786, + "Id": { + "$oid": "670a47b1872b2325705e7475" + } + } + ], + "PropertyTextHash": "58884EC7ECE7D22AD4BD9E9B436C37A8", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestWeaponsmith.json b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestWeaponsmith.json new file mode 100644 index 00000000..9a3c5805 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindCommisionsManifestWeaponsmith.json @@ -0,0 +1,254 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e02c96976e97d6b8049" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindCommisionsManifestWeaponsmith", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 16, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2438288725, + "Id": { + "$oid": "66fd60b00ba592c4c95e7caf" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Game/FishBait/Infested/OrokinFishBaitA", + "ItemCount": 6, + "ProductCategory": "Consumables" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfMapricoFruitItem", + "ItemCount": 21, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Game/FishBait/Infested/InfestedFishBaitA", + "ItemCount": 6, + "ProductCategory": "Consumables" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2431016296, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb2" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfMapricoFruitItem", + "ItemCount": 16, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 18484856, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb3" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfMapricoFruitItem", + "ItemCount": 14, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2278976516, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb4" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Game/FishBait/Infested/OrokinFishBaitA", + "ItemCount": 7, + "ProductCategory": "Consumables" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStoneItem", + "ItemCount": 25, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Game/FishBait/Infested/InfestedFishBaitA", + "ItemCount": 6, + "ProductCategory": "Consumables" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3150323898, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb5" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfMapricoFruitItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 3971758486, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb6" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 17, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStoneItem", + "ItemCount": 18, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2512835718, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb7" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStoneItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 825411410, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb8" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Father/FatherTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 22, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStoneItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2383349671, + "Id": { + "$oid": "66fd60b00ba592c4c95e7cb9" + } + } + ], + "PropertyTextHash": "CE9413585756FA39B793A9814E74E49F", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosHivemindTokenVendorManifest.json b/static/fixed_responses/getVendorInfo/DeimosHivemindTokenVendorManifest.json new file mode 100644 index 00000000..1d165fc7 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosHivemindTokenVendorManifest.json @@ -0,0 +1,286 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5fb70313c96976e97d6be6fe" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/HivemindTokenVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedySonB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 36, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishEPartItem", + "ItemCount": 36, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 379215713, + "Id": { + "$oid": "66fd60b20ba592c4c95e9308" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyMotherB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericInfestedFishPartItem", + "ItemCount": 80, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 32, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 28, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2534781881, + "Id": { + "$oid": "66fd60b20ba592c4c95e9309" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyDaughterB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonGemAItem", + "ItemCount": 28, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 32, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishAPartItem", + "ItemCount": 32, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 1507786123, + "Id": { + "$oid": "66fd60b20ba592c4c95e930a" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedySonA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosRareGemAItem", + "ItemCount": 15, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 30, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 21, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 616241643, + "Id": { + "$oid": "66fd60b20ba592c4c95e930b" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyOtakA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 21, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishCPartItem", + "ItemCount": 27, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishEPartItem", + "ItemCount": 27, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2888479655, + "Id": { + "$oid": "66fd60b20ba592c4c95e930c" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyGrandmotherA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemBItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 28, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 24, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosCommonGemAItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2874726481, + "Id": { + "$oid": "66fd60b20ba592c4c95e930d" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyFatherA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericSharedFishPartItem", + "ItemCount": 75, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Deimos/DeimosUncommonGemAItem", + "ItemCount": 27, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/OrbStoneItem", + "ItemCount": 30, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 274676857, + "Id": { + "$oid": "66fd60b20ba592c4c95e930e" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/Deimos/Remedies/RemedyDaughterA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/InfestedMicroplanet/Resources/InfGorgaricusSeedItem", + "ItemCount": 24, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosInfestedFishBPartItem", + "ItemCount": 30, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Deimos/FishParts/DeimosGenericSharedFishPartItem", + "ItemCount": 51, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "LocTagRandSeed": 2487943761, + "Id": { + "$oid": "66fd60b20ba592c4c95e930f" + } + } + ], + "PropertyTextHash": "C34BF0BEDEAF7CBB0EEBFFECDFD6646D", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosPetVendorManifest.json b/static/fixed_responses/getVendorInfo/DeimosPetVendorManifest.json new file mode 100644 index 00000000..76d738ea --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosPetVendorManifest.json @@ -0,0 +1,136 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e02c96976e97d6b8080" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/PetVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedNexiferaRare", + "PremiumPrice": [35, 35], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89f6" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedNexiferaUncommon", + "PremiumPrice": [22, 22], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89f7" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedMergooUncommon", + "PremiumPrice": [28, 28], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89f8" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedKdriveUncommon", + "PremiumPrice": [25, 25], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89f9" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedZongroCommon", + "PremiumPrice": [14, 14], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89fa" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedPredatorCommon", + "PremiumPrice": [12, 12], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89fb" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedMergooCommon", + "PremiumPrice": [13, 13], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89fc" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Deimos/AnimalTagInfestedKdriveCommon", + "PremiumPrice": [14, 14], + "Bin": "BIN_0", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b10ba592c4c95e89fd" + } + } + ], + "PropertyTextHash": "F14C6B6A61D7585A10537995661F5220", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DeimosProspectorVendorManifest.json b/static/fixed_responses/getVendorInfo/DeimosProspectorVendorManifest.json new file mode 100644 index 00000000..01158f13 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DeimosProspectorVendorManifest.json @@ -0,0 +1,61 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5f456e00c96976e97d6b7fd7" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Deimos/ProspectorVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Deimos/DeimosUncommonGemACutItem", + "PremiumPrice": [13, 13], + "Bin": "BIN_1", + "QuantityMultiplier": 10, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e93a8" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Deimos/DeimosCommonGemBCutItem", + "PremiumPrice": [7, 7], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e93a9" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Deimos/DeimosCommonGemACutItem", + "PremiumPrice": [7, 7], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e93aa" + } + } + ], + "PropertyTextHash": "2BBC116116C757F6AF4FBC3B9BF754C8", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/DuviriAcrithisVendorManifest.json b/static/fixed_responses/getVendorInfo/DuviriAcrithisVendorManifest.json new file mode 100644 index 00000000..031db476 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/DuviriAcrithisVendorManifest.json @@ -0,0 +1,321 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "64493ca759e9b164c86a2e14" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Duviri/AcrithisVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/DangerRoom/DangerRoomTileDuviriDragonArena", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_5", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b00ba592c4c95e7d88" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Recipes/Components/FormaBlueprint", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7deb" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/UtilityUnlocker", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7dec" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/Kuva", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 5000, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7ded" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/WeaponUtilityUnlocker", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7dee" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/Kuva", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 5000, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "670c5e12576f461f1e5e739c" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/Plastids", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriPlantItemD", + "ItemCount": 40, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "Id": { + "$oid": "6710c312fa0b2c5cd85e73c3" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Duviri/DUVxPlanterHangingPot", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriPlantItemE", + "ItemCount": 51, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6710c312fa0b2c5cd85e73c6" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Duviri/DUVxPlanterPotB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriRockItem", + "ItemCount": 44, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6710c312fa0b2c5cd85e73c7" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/NeuralSensor", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriPlantItemA", + "ItemCount": 52, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 3, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "Id": { + "$oid": "6710c312fa0b2c5cd85e73c8" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/ControlModule", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriPlantItemF", + "ItemCount": 42, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 3, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "Id": { + "$oid": "6710c312fa0b2c5cd85e73c9" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/PhotoboothTileDuviriArenaOpera", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriProcessedItem", + "ItemCount": 240, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7ddd" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Upgrades/CosmeticEnhancers/Utility/HealthWhileUsingChanneledAbilities", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriDragonDropItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b00ba592c4c95e7e01" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Upgrades/Boons/DuviriVendorBoonItem", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Duviri/Resource/DuviriPlantItemG", + "ItemCount": 50, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_4", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e739c" + } + } + ], + "PropertyTextHash": "9EE40048EB685549ACA3D01AB1F65BF2", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabVendorManifest.json b/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabVendorManifest.json new file mode 100644 index 00000000..624e2d33 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabVendorManifest.json @@ -0,0 +1,245 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "6579d82b553a20c6fc0067ca" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/EntratiLabs/EntratiLabVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalAmar", + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "RotatedWeekly": true, + "Affiliation": "EntratiLabSyndicate", + "MinAffiliationRank": 5, + "ReductionPerPositiveRank": 0, + "IncreasePerNegativeRank": 0, + "StandingCost": 30000, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e920d" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalBoreal", + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "RotatedWeekly": true, + "Affiliation": "EntratiLabSyndicate", + "MinAffiliationRank": 5, + "ReductionPerPositiveRank": 0, + "IncreasePerNegativeRank": 0, + "StandingCost": 30000, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e920e" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Gameplay/NarmerSorties/ArchonCrystalNira", + "Bin": "BIN_3", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "RotatedWeekly": true, + "Affiliation": "EntratiLabSyndicate", + "MinAffiliationRank": 5, + "ReductionPerPositiveRank": 0, + "IncreasePerNegativeRank": 0, + "StandingCost": 30000, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e920f" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabStool", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabDogTagUncommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemA", + "ItemCount": 22, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 18, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9270" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabChairA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 15, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemA", + "ItemCount": 19, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemB", + "ItemCount": 19, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9271" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabLightWallCandleA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabDogTagCommon", + "ItemCount": 3, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9272" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabLightChandelierD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemB", + "ItemCount": 8, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabDogTagCommon", + "ItemCount": 3, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9273" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabLightChandelierB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemA", + "ItemCount": 12, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabDogTagCommon", + "ItemCount": 2, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9274" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/EntratiLabs/ORKxLabLightChandelierA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 15, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemA", + "ItemCount": 13, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9275" + } + } + ], + "PropertyTextHash": "44DA3839E6F7BDB32ACED53F2B0BE14E", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabsCommisionsManifest.json b/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabsCommisionsManifest.json new file mode 100644 index 00000000..41a9454e --- /dev/null +++ b/static/fixed_responses/getVendorInfo/EntratiLabsEntratiLabsCommisionsManifest.json @@ -0,0 +1,97 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "6579d82b553a20c6fc0067ae" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/EntratiLabs/EntratiLabsCommisionsManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/EntratiLabs/LoidTaskC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemB", + "ItemCount": 17, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 30, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "670a2b928ac7854ac55e73d3" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/EntratiLabs/LoidTaskB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 20, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/EntratiLabMiscItemA", + "ItemCount": 228, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "670a2b928ac7854ac55e73d4" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/Tasks/EntratiLabs/LoidTaskA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/EntratiLab/Resources/MurmurItem", + "ItemCount": 15, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Gameplay/Zariman/Resources/ZarimanMiscItemB", + "ItemCount": 1, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "670a2b928ac7854ac55e73d5" + } + } + ], + "PropertyTextHash": "60C4D85A8DE5E6538AD23CDDFEEF0422", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/HubsIronwakeDondaVendorManifest.json b/static/fixed_responses/getVendorInfo/HubsIronwakeDondaVendorManifest.json new file mode 100644 index 00000000..0dabeb95 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/HubsIronwakeDondaVendorManifest.json @@ -0,0 +1,125 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5dbb4c41e966f7886c3ce939" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Hubs/IronwakeDondaVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/HarrowQuestKeyOrnament", + "ItemPrices": [ + { + "ItemCount": 25, + "ItemType": "/Lotus/Types/Items/MiscItems/PrimeBucks", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e945f" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/BoosterPacks/RivenModPack", + "ItemPrices": [ + { + "ItemCount": 10, + "ItemType": "/Lotus/Types/Items/MiscItems/RivenFragment", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e9468" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/StoreItems/CreditBundles/150000Credits", + "ItemPrices": [ + { + "ItemCount": 5, + "ItemType": "/Lotus/Types/Items/MiscItems/RivenFragment", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e9469" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/MiscItems/Kuva", + "ItemPrices": [ + { + "ItemCount": 10, + "ItemType": "/Lotus/Types/Items/MiscItems/RivenFragment", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 35000, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e946a" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/BoosterPacks/RivenModPack", + "ItemPrices": [ + { + "ItemCount": 10, + "ItemType": "/Lotus/Types/Items/MiscItems/RivenFragment", + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": false, + "Id": { + "$oid": "66fd60b20ba592c4c95e946b" + } + } + ], + "PropertyTextHash": "62B64A8065B7C0FA345895D4BC234621", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/HubsRailjackCrewMemberVendorManifest.json b/static/fixed_responses/getVendorInfo/HubsRailjackCrewMemberVendorManifest.json new file mode 100644 index 00000000..16506360 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/HubsRailjackCrewMemberVendorManifest.json @@ -0,0 +1,244 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5fb70313c96976e97d6be787" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Hubs/RailjackCrewMemberVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/SteelMeridianCrewMemberGeneratorStrong", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/IsosRailjackItem", + "ItemCount": 2220, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [2180000, 2180000], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "SteelMeridianSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 4185144421, + "Id": { + "$oid": "670daf92d21f34757a5e73da" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/NewLokaCrewMemberGeneratorStrong", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/IsosRailjackItem", + "ItemCount": 2130, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [1890000, 1890000], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "NewLokaSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 496053258, + "Id": { + "$oid": "670daf92d21f34757a5e73db" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/SteelMeridianCrewMemberGeneratorMediumVersionTwo", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/IsosRailjackItem", + "ItemCount": 440, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "SteelMeridianSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 2078883475, + "Id": { + "$oid": "670daf92d21f34757a5e73dc" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/NewLokaCrewMemberGeneratorMediumVersionTwo", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/AsteriteRailjackItem", + "ItemCount": 730, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "NewLokaSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 3890380934, + "Id": { + "$oid": "670daf92d21f34757a5e73dd" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/CephalonSudaCrewMemberGeneratorMediumVersionTwo", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/AsteriteRailjackItem", + "ItemCount": 720, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "CephalonSudaSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 3425148044, + "Id": { + "$oid": "670daf92d21f34757a5e73de" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/ArbitersCrewMemberGeneratorMediumVersionTwo", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/RailjackMiscItems/CubicsRailjackItem", + "ItemCount": 6500, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "ArbitersSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 2472754512, + "Id": { + "$oid": "670daf92d21f34757a5e73df" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/PerrinCrewMemberGeneratorVersionTwo", + "RegularPrice": [105000, 105000], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "PerrinSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 966238763, + "Id": { + "$oid": "670daf92d21f34757a5e73e0" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/NewLokaCrewMemberGeneratorVersionTwo", + "RegularPrice": [120000, 120000], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "NewLokaSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 356717213, + "Id": { + "$oid": "670daf92d21f34757a5e73e1" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Game/CrewShip/CrewMember/ArbitersCrewMemberGeneratorVersionTwo", + "RegularPrice": [120000, 120000], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "Affiliation": "ArbitersSyndicate", + "MinAffiliationRank": 0, + "ReductionPerPositiveRank": 0.1, + "IncreasePerNegativeRank": 0.5, + "AllowMultipurchase": false, + "LocTagRandSeed": 1969797050, + "Id": { + "$oid": "670daf92d21f34757a5e73e2" + } + } + ], + "PropertyTextHash": "BE543CCC0A4F50A1D80CD2B523796EAE", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/OstronFishmongerVendorManifest.json b/static/fixed_responses/getVendorInfo/OstronFishmongerVendorManifest.json new file mode 100644 index 00000000..c6a3670b --- /dev/null +++ b/static/fixed_responses/getVendorInfo/OstronFishmongerVendorManifest.json @@ -0,0 +1,106 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "59d6e27ebcc718474eb17115" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Ostron/FishmongerVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/DayUncommonFishAPartItem", + "PremiumPrice": [14, 14], + "Bin": "BIN_1", + "QuantityMultiplier": 10, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9808" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/BothUncommonFishBPartItem", + "PremiumPrice": [12, 12], + "Bin": "BIN_1", + "QuantityMultiplier": 10, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9809" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/DayCommonFishCPartItem", + "PremiumPrice": [8, 8], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e980a" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/DayCommonFishBPartItem", + "PremiumPrice": [7, 7], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e980b" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/DayCommonFishAPartItem", + "PremiumPrice": [10, 10], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e980c" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Eidolon/FishParts/BothCommonFishBPartItem", + "PremiumPrice": [8, 8], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e980d" + } + } + ], + "PropertyTextHash": "CC3B9DAFB38F412998E90A41421A8986", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/OstronPetVendorManifest.json b/static/fixed_responses/getVendorInfo/OstronPetVendorManifest.json new file mode 100644 index 00000000..521260cf --- /dev/null +++ b/static/fixed_responses/getVendorInfo/OstronPetVendorManifest.json @@ -0,0 +1,94 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5991d5e6bcc718474ee90c15" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Ostron/PetVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/LisetPropOstBirdCage", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Eidolon/UncommonOreAAlloyAItem", + "ItemCount": 10, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Eidolon/FishParts/DayUncommonFishBPartItem", + "ItemCount": 8, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9a8e" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/KubrowColorPackDrahk", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Eidolon/FishParts/DayCommonFishBPartItem", + "ItemCount": 14, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Eidolon/FishParts/BothCommonFishBPartItem", + "ItemCount": 13, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9a8f" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/KubrowColorPackFeral", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Eidolon/FishParts/BothCommonFishAPartItem", + "ItemCount": 19, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Eidolon/CommonOreBAlloyBItem", + "ItemCount": 34, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9a90" + } + } + ], + "PropertyTextHash": "3D85F1A0A2B62734AE90370DEC214C26", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/OstronProspectorVendorManifest.json b/static/fixed_responses/getVendorInfo/OstronProspectorVendorManifest.json new file mode 100644 index 00000000..7c357351 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/OstronProspectorVendorManifest.json @@ -0,0 +1,62 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "59dfe591314805ffe1d47c0a" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Ostron/ProspectorVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Eidolon/RareGemACutAItem", + "PremiumPrice": [19, 19], + "Bin": "BIN_1", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e98f0" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Eidolon/CommonGemBCutAItem", + "PremiumPrice": [8, 8], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e98f1" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Eidolon/CommonGemACutAItem", + "PremiumPrice": [5, 5], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e98f2" + } + } + ], + "MaxDailyPurchases": 0, + "PropertyTextHash": "773C6968D9A65506CD28DF28C768F0DA", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorManifest.json b/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorManifest.json new file mode 100644 index 00000000..3a4fa0ac --- /dev/null +++ b/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorManifest.json @@ -0,0 +1,248 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5be4a159b144f3cdf1c22efa" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Solaris/DebtTokenVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleUncommonD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Venus/Resources/VenusCoconutItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/MiscItems/Circuits", + "ItemCount": 3664, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [87300, 87300], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 1881404827, + "Id": { + "$oid": "670daf92d21f34757a5e73b4" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleRareC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/MiscItems/NeuralSensor", + "ItemCount": 1, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [53300, 53300], + "Bin": "BIN_2", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 1943984533, + "Id": { + "$oid": "6710b5029e1a3080a65e73a7" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleCommonG", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/MiscItems/Salvage", + "ItemCount": 11540, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [27300, 27300], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 744199559, + "Id": { + "$oid": "67112582cc115756985e73a4" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleUncommonB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Solaris/FishParts/CorpusFishThermalLaserItem", + "ItemCount": 9, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [75800, 75800], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 3744711432, + "Id": { + "$oid": "670de7d28a6ec82cd25e73a2" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleUncommonB", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/MiscItems/Rubedo", + "ItemCount": 3343, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [52200, 52200], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 1579000687, + "Id": { + "$oid": "670e58526171148e125e73ad" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleCommonA", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Gameplay/Venus/Resources/CoolantItem", + "ItemCount": 9, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Fish/Solaris/FishParts/CorpusFishAnoscopicSensorItem", + "ItemCount": 5, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [12400, 12400], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 3589081466, + "Id": { + "$oid": "67112582cc115756985e73a5" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleUncommonC", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Gems/Solaris/SolarisCommonOreBAlloyItem", + "ItemCount": 13, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [77500, 77500], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 1510234814, + "Id": { + "$oid": "670f0f21250ad046c35e73ee" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleUncommonD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Fish/Solaris/FishParts/CorpusFishParralelBiodeItem", + "ItemCount": 7, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Gems/Solaris/SolarisCommonGemBCutItem", + "ItemCount": 12, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [94600, 94600], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 4222095721, + "Id": { + "$oid": "670f63827be40254f95e739d" + } + }, + { + "StoreItem": "/Lotus/Types/StoreItems/Packages/DebtTokenBundles/DebtTokenBundleCommonJ", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/MiscItems/Nanospores", + "ItemCount": 14830, + "ProductCategory": "MiscItems" + } + ], + "RegularPrice": [25600, 25600], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "PurchaseQuantityLimit": 1, + "AllowMultipurchase": true, + "LocTagRandSeed": 2694388669, + "Id": { + "$oid": "67112582cc115756985e73a6" + } + } + ], + "PropertyTextHash": "A39621049CA3CA13761028CD21C239EF", + "RandomSeedType": "VRST_FLAVOUR_TEXT", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorRepossessionsManifest.json b/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorRepossessionsManifest.json new file mode 100644 index 00000000..67b234a2 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/SolarisDebtTokenVendorRepossessionsManifest.json @@ -0,0 +1,126 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5be4a159b144f3cdf1c22edf" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Solaris/DebtTokenVendorRepossessionsManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Venus/SUToolBox", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenB", + "ItemCount": 6, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e739d" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Venus/SUBookAOpen", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenC", + "ItemCount": 6, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e739e" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Venus/SUFoodCans", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenC", + "ItemCount": 7, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e739f" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Venus/SUTechToolD", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenD", + "ItemCount": 5, + "ProductCategory": "MiscItems" + }, + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenA", + "ItemCount": 15, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_1", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e73a0" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/ShipDecos/Venus/SUContainerCrate", + "ItemPrices": [ + { + "ItemType": "/Lotus/Types/Items/Solaris/DebtTokenA", + "ItemCount": 9, + "ProductCategory": "MiscItems" + } + ], + "Bin": "BIN_0", + "QuantityMultiplier": 1, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "6711a412ba1ba01e405e73a1" + } + } + ], + "PropertyTextHash": "E0E83157D73468DC578403CB9EBA9DA6", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/SolarisFishmongerVendorManifest.json b/static/fixed_responses/getVendorInfo/SolarisFishmongerVendorManifest.json new file mode 100644 index 00000000..4a4dcb64 --- /dev/null +++ b/static/fixed_responses/getVendorInfo/SolarisFishmongerVendorManifest.json @@ -0,0 +1,106 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5b0de8556df82a56ea9bae82" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Solaris/FishmongerVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/CorpusFishThermalLaserItem", + "PremiumPrice": [15, 15], + "Bin": "BIN_1", + "QuantityMultiplier": 10, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9515" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/CorpusFishVenedoCaseItem", + "PremiumPrice": [8, 8], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9516" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/SolarisFishDissipatorCoilItem", + "PremiumPrice": [18, 18], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9517" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/CorpusFishExaBrainItem", + "PremiumPrice": [5, 5], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9518" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/CorpusFishAnoscopicSensorItem", + "PremiumPrice": [5, 5], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9519" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Fish/Solaris/FishParts/GenericFishScrapItem", + "PremiumPrice": [5, 5], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e951a" + } + } + ], + "PropertyTextHash": "946131D0CF5CDF7C2C03BB967DE0DF49", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +} diff --git a/static/fixed_responses/getVendorInfo/SolarisProspectorVendorManifest.json b/static/fixed_responses/getVendorInfo/SolarisProspectorVendorManifest.json new file mode 100644 index 00000000..ce54b84e --- /dev/null +++ b/static/fixed_responses/getVendorInfo/SolarisProspectorVendorManifest.json @@ -0,0 +1,61 @@ +{ + "VendorInfo": { + "_id": { + "$oid": "5be4a159b144f3cdf1c22ebb" + }, + "TypeName": "/Lotus/Types/Game/VendorManifests/Solaris/ProspectorVendorManifest", + "ItemManifest": [ + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Solaris/SolarisRareGemACutItem", + "PremiumPrice": [20, 20], + "Bin": "BIN_1", + "QuantityMultiplier": 5, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9777" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Solaris/SolarisCommonGemBCutItem", + "PremiumPrice": [10, 10], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9778" + } + }, + { + "StoreItem": "/Lotus/StoreItems/Types/Items/Gems/Solaris/SolarisCommonGemACutItem", + "PremiumPrice": [8, 8], + "Bin": "BIN_0", + "QuantityMultiplier": 20, + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + }, + "AllowMultipurchase": true, + "Id": { + "$oid": "66fd60b20ba592c4c95e9779" + } + } + ], + "PropertyTextHash": "A5756A21991FF49CFA7D096B4026515B", + "Expiry": { + "$date": { + "$numberLong": "9999999000000" + } + } + } +}