-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
49 lines (44 loc) · 1.67 KB
/
config.js
File metadata and controls
49 lines (44 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
export default {
// =====================================================
// Shop Rotation Settings
// =====================================================
bEnableShop: true, // Master toggle for shop rotation
bDailyItemsAmount: 6, // Number of daily slots
bFeaturedItemsAmount: 2, // Number of featured slots
bDateOutput: false, // If true → include date in filename
ShopRotationIntervalMinutes: 1440, // Rotation interval (default 24h)
// Chapter / Season limits
bChapterlimit: "1",
bSeasonlimit: "2",
// Excluded cosmetics (won’t appear in shop)
bExcludedItems: [
"CID_VIP_Athena_Commando_M_GalileoGondola_SG",
"CID_636_Athena_Commando_M_GalileoGondola_78MFZ",
"CID_637_Athena_Commando_M_GalileoOutrigger_7Q0YU",
"CID_VIP_Athena_Commando_M_GalileoFerry_SG",
"CID_VIP_Athena_Commando_F_GalileoRocket_SG",
"CID_568_Athena_Commando_M_RebirthSoldier"
],
// =====================================================
// Price Configuration
// =====================================================
useApiPrices: true, // If false → fallback to priceTable below
priceTable: {
AthenaCharacter: 1500,
AthenaBackpack: 400,
AthenaPickaxe: 800,
AthenaGlider: 800,
AthenaSkyDiveContrail: 400,
AthenaDance: 500,
AthenaItemWrap: 500,
AthenaLoadingScreen: 200,
AthenaMusicPack: 200,
HomebaseBannerIcon: 200,
default: 800
},
// =====================================================
// Output Settings
// =====================================================
outputPath: "./output",
outputFile: "catalog_config.json"
};