resonance-data-columba 1.2.4 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,6 +25,33 @@ interface FormulaUnlockCondition {
25
25
  冷凝核心: number;
26
26
  混响核心: number;
27
27
  }
28
+ interface ResonanceSkill {
29
+ buyMore?: {
30
+ product?: {
31
+ [pdtName: string]: number;
32
+ };
33
+ city?: {
34
+ [cityName: string]: number;
35
+ };
36
+ };
37
+ bargain?: {
38
+ firstTrySuccessRate?: number;
39
+ afterFailedSuccessRate?: number;
40
+ bargainCount?: number;
41
+ bargainSuccessRate?: number;
42
+ bargainRate?: number;
43
+ raiseCount?: number;
44
+ raiseSuccessRate?: number;
45
+ raiseRate?: number;
46
+ afterFailedLessFatigue?: number;
47
+ };
48
+ other?: {
49
+ driveLessFatigue?: number;
50
+ };
51
+ }
52
+ interface ResonanceSkills {
53
+ [resonance: number]: ResonanceSkill;
54
+ }
28
55
 
29
56
  declare const PRODUCTS: {
30
57
  [key: string]: any;
@@ -39,5 +66,8 @@ declare const GOODS_UNLOCK_CONDITIONS: {
39
66
  declare const FORMULAS: {
40
67
  [key: string]: Formula[];
41
68
  };
69
+ declare const RESONANCE_SKILLS: {
70
+ [role: string]: ResonanceSkills;
71
+ };
42
72
 
43
- export { CITY_ATTACH_LIST, FORMULAS, GOODS_UNLOCK_CONDITIONS, PRODUCTS };
73
+ export { CITY_ATTACH_LIST, FORMULAS, GOODS_UNLOCK_CONDITIONS, PRODUCTS, RESONANCE_SKILLS };
@@ -23,7 +23,8 @@ __export(columbabuild_exports, {
23
23
  CITY_ATTACH_LIST: () => CITY_ATTACH_LIST,
24
24
  FORMULAS: () => FORMULAS,
25
25
  GOODS_UNLOCK_CONDITIONS: () => GOODS_UNLOCK_CONDITIONS,
26
- PRODUCTS: () => PRODUCTS
26
+ PRODUCTS: () => PRODUCTS,
27
+ RESONANCE_SKILLS: () => RESONANCE_SKILLS
27
28
  });
28
29
  module.exports = __toCommonJS(columbabuild_exports);
29
30
 
@@ -3008,16 +3009,631 @@ var formulas_default = {
3008
3009
  ]
3009
3010
  };
3010
3011
 
3012
+ // src/generated/resonanceskills.json
3013
+ var resonanceskills_default = {
3014
+ \u5361\u5854\u65AF: {
3015
+ "1": {
3016
+ bargain: {
3017
+ bargainRate: 0.3
3018
+ }
3019
+ },
3020
+ "4": {
3021
+ bargain: {
3022
+ bargainRate: 0.3,
3023
+ bargainCount: 1
3024
+ }
3025
+ },
3026
+ "5": {
3027
+ bargain: {
3028
+ bargainRate: 0.5,
3029
+ bargainCount: 1
3030
+ }
3031
+ }
3032
+ },
3033
+ \u6731\u5229\u5B89: {
3034
+ "1": {
3035
+ buyMore: {
3036
+ product: {
3037
+ \u6591\u8282\u867E: 20
3038
+ }
3039
+ }
3040
+ },
3041
+ "4": {
3042
+ buyMore: {
3043
+ product: {
3044
+ \u6591\u8282\u867E: 20
3045
+ },
3046
+ city: {
3047
+ \u4E03\u53F7\u81EA\u7531\u6E2F: 20
3048
+ }
3049
+ }
3050
+ }
3051
+ },
3052
+ \u9A6C\u5409\u62C9: {
3053
+ "1": {
3054
+ bargain: {
3055
+ raiseRate: 0.3
3056
+ }
3057
+ },
3058
+ "4": {
3059
+ bargain: {
3060
+ raiseRate: 0.3,
3061
+ raiseCount: 1
3062
+ }
3063
+ },
3064
+ "5": {
3065
+ bargain: {
3066
+ raiseRate: 0.5,
3067
+ raiseCount: 1
3068
+ }
3069
+ }
3070
+ },
3071
+ \u8389\u8587\u5A05: {
3072
+ "1": {
3073
+ bargain: {
3074
+ bargainRate: 0.3
3075
+ }
3076
+ },
3077
+ "4": {
3078
+ bargain: {
3079
+ bargainRate: 0.3,
3080
+ afterFailedLessFatigue: 1
3081
+ }
3082
+ },
3083
+ "5": {
3084
+ bargain: {
3085
+ bargainRate: 0.5,
3086
+ afterFailedLessFatigue: 1
3087
+ }
3088
+ }
3089
+ },
3090
+ \u72EE\u9B03: {
3091
+ "1": {
3092
+ buyMore: {
3093
+ product: {
3094
+ \u8367\u5149\u68D2: 20
3095
+ }
3096
+ }
3097
+ },
3098
+ "4": {
3099
+ buyMore: {
3100
+ product: {
3101
+ \u8367\u5149\u68D2: 20,
3102
+ \u626C\u58F0\u5668: 20
3103
+ }
3104
+ }
3105
+ }
3106
+ },
3107
+ \u9B47: {
3108
+ "1": {
3109
+ buyMore: {
3110
+ product: {
3111
+ \u5200\u5177: 20
3112
+ }
3113
+ }
3114
+ },
3115
+ "5": {
3116
+ buyMore: {
3117
+ product: {
3118
+ \u5200\u5177: 30
3119
+ }
3120
+ }
3121
+ }
3122
+ },
3123
+ \u585E\u897F\u5C14: {
3124
+ "4": {
3125
+ buyMore: {
3126
+ product: {
3127
+ \u9999\u6C34: 20
3128
+ }
3129
+ }
3130
+ },
3131
+ "5": {
3132
+ buyMore: {
3133
+ product: {
3134
+ \u9999\u6C34: 50
3135
+ }
3136
+ }
3137
+ }
3138
+ },
3139
+ \u96F7\u706B: {
3140
+ "4": {
3141
+ buyMore: {
3142
+ product: {
3143
+ \u66FC\u5FB7\u5DE5\u5177\u7BB1: 20
3144
+ }
3145
+ }
3146
+ }
3147
+ },
3148
+ \u9EDB\u4E1D\u8389: {
3149
+ "1": {
3150
+ bargain: {
3151
+ bargainSuccessRate: 1
3152
+ }
3153
+ },
3154
+ "4": {
3155
+ bargain: {
3156
+ bargainSuccessRate: 1
3157
+ },
3158
+ buyMore: {
3159
+ product: {
3160
+ \u6BDB\u7ED2\u73A9\u5177: 20
3161
+ }
3162
+ }
3163
+ },
3164
+ "5": {
3165
+ bargain: {
3166
+ bargainSuccessRate: 1
3167
+ },
3168
+ buyMore: {
3169
+ product: {
3170
+ \u6BDB\u7ED2\u73A9\u5177: 30
3171
+ }
3172
+ }
3173
+ }
3174
+ },
3175
+ \u590F\u6D1B\u8482: {
3176
+ "4": {
3177
+ bargain: {
3178
+ bargainSuccessRate: 1
3179
+ }
3180
+ },
3181
+ "5": {
3182
+ bargain: {
3183
+ bargainSuccessRate: 2
3184
+ }
3185
+ }
3186
+ },
3187
+ \u82CD\u53F6: {
3188
+ "1": {
3189
+ bargain: {
3190
+ raiseCount: 1
3191
+ }
3192
+ }
3193
+ },
3194
+ \u827E\u7565\u7279: {
3195
+ "4": {
3196
+ buyMore: {
3197
+ product: {
3198
+ \u6E38\u620F\u5361\u5E26: 20,
3199
+ \u6E38\u620F\u673A: 20
3200
+ }
3201
+ }
3202
+ }
3203
+ },
3204
+ \u5BB5\u6708: {
3205
+ "1": {
3206
+ bargain: {
3207
+ bargainCount: 1
3208
+ }
3209
+ }
3210
+ },
3211
+ \u4F0A\u6D1B\u5A1C: {
3212
+ "1": {
3213
+ bargain: {
3214
+ firstTrySuccessRate: 2
3215
+ }
3216
+ },
3217
+ "4": {
3218
+ bargain: {
3219
+ firstTrySuccessRate: 2,
3220
+ raiseSuccessRate: 1
3221
+ }
3222
+ },
3223
+ "5": {
3224
+ bargain: {
3225
+ firstTrySuccessRate: 2,
3226
+ raiseSuccessRate: 2
3227
+ }
3228
+ }
3229
+ },
3230
+ \u9759\u6D41: {
3231
+ "4": {
3232
+ buyMore: {
3233
+ city: {
3234
+ \u6D77\u89D2\u57CE: 20
3235
+ }
3236
+ }
3237
+ }
3238
+ },
3239
+ \u963F\u5C14\u5580\u5A1C: {
3240
+ "4": {
3241
+ bargain: {
3242
+ afterFailedLessFatigue: 1
3243
+ }
3244
+ }
3245
+ },
3246
+ \u90A3\u7531\u4ED6: {
3247
+ "1": {
3248
+ bargain: {
3249
+ raiseCount: 1
3250
+ }
3251
+ }
3252
+ },
3253
+ \u591A\u841D\u897F: {
3254
+ "4": {
3255
+ buyMore: {
3256
+ product: {
3257
+ \u5F39\u4E38\u52A0\u901F\u88C5\u7F6E: 20
3258
+ }
3259
+ }
3260
+ },
3261
+ "5": {
3262
+ buyMore: {
3263
+ product: {
3264
+ \u5F39\u4E38\u52A0\u901F\u88C5\u7F6E: 30
3265
+ }
3266
+ }
3267
+ }
3268
+ },
3269
+ \u5361\u83B2: {
3270
+ "1": {
3271
+ bargain: {
3272
+ afterFailedSuccessRate: 2
3273
+ }
3274
+ },
3275
+ "4": {
3276
+ bargain: {
3277
+ afterFailedSuccessRate: 2
3278
+ },
3279
+ buyMore: {
3280
+ city: {
3281
+ \u8D21\u9732\u57CE: 20
3282
+ }
3283
+ }
3284
+ }
3285
+ },
3286
+ \u661F\u82B1: {
3287
+ "1": {
3288
+ buyMore: {
3289
+ product: {
3290
+ \u4EBA\u5DE5\u6676\u82B1: 20
3291
+ }
3292
+ }
3293
+ }
3294
+ },
3295
+ \u745E\u79CB: {
3296
+ "4": {
3297
+ buyMore: {
3298
+ product: {
3299
+ \u533B\u836F\u54C1: 20
3300
+ }
3301
+ }
3302
+ }
3303
+ },
3304
+ \u83F2\u59AE\u5A05: {
3305
+ "4": {
3306
+ buyMore: {
3307
+ product: {
3308
+ \u5927\u9F99\u867E: 20
3309
+ }
3310
+ }
3311
+ },
3312
+ "5": {
3313
+ buyMore: {
3314
+ product: {
3315
+ \u5927\u9F99\u867E: 30
3316
+ }
3317
+ }
3318
+ }
3319
+ },
3320
+ \u74E6\u4F26\u6C40: {
3321
+ "4": {
3322
+ buyMore: {
3323
+ product: {
3324
+ \u5B66\u4F1A\u4E66\u7C4D: 20
3325
+ }
3326
+ }
3327
+ },
3328
+ "5": {
3329
+ buyMore: {
3330
+ product: {
3331
+ \u5B66\u4F1A\u4E66\u7C4D: 30
3332
+ }
3333
+ }
3334
+ }
3335
+ },
3336
+ \u963F\u77E5\u6CE2: {
3337
+ "4": {
3338
+ buyMore: {
3339
+ product: {
3340
+ \u62FC\u88C5\u6A21\u578B: 20
3341
+ }
3342
+ }
3343
+ },
3344
+ "5": {
3345
+ buyMore: {
3346
+ product: {
3347
+ \u62FC\u88C5\u6A21\u578B: 30
3348
+ }
3349
+ }
3350
+ }
3351
+ },
3352
+ \u95FB\u7B19: {
3353
+ "1": {
3354
+ bargain: {
3355
+ afterFailedLessFatigue: 1
3356
+ }
3357
+ },
3358
+ "4": {
3359
+ bargain: {
3360
+ afterFailedLessFatigue: 1
3361
+ },
3362
+ buyMore: {
3363
+ product: {
3364
+ \u9650\u5B9A\u516C\u4ED4: 20
3365
+ }
3366
+ }
3367
+ },
3368
+ "5": {
3369
+ bargain: {
3370
+ afterFailedLessFatigue: 1
3371
+ },
3372
+ buyMore: {
3373
+ product: {
3374
+ \u9650\u5B9A\u516C\u4ED4: 30
3375
+ }
3376
+ }
3377
+ }
3378
+ },
3379
+ "\u51AF\xB7\u91CC\u5948": {
3380
+ "1": {
3381
+ bargain: {
3382
+ raiseSuccessRate: 1
3383
+ }
3384
+ },
3385
+ "5": {
3386
+ bargain: {
3387
+ raiseSuccessRate: 2
3388
+ }
3389
+ }
3390
+ },
3391
+ \u8DF3\u9F20: {
3392
+ "4": {
3393
+ bargain: {
3394
+ bargainSuccessRate: 1
3395
+ }
3396
+ }
3397
+ },
3398
+ \u5C71\u5C9A: {
3399
+ "4": {
3400
+ buyMore: {
3401
+ product: {
3402
+ \u6298\u6247: 20
3403
+ }
3404
+ }
3405
+ }
3406
+ },
3407
+ \u6CE2\u514B\u58EB: {
3408
+ "1": {
3409
+ other: {
3410
+ driveLessFatigue: 1
3411
+ }
3412
+ }
3413
+ },
3414
+ \u8587\u5C14\u5C9A: {
3415
+ "1": {
3416
+ bargain: {
3417
+ afterFailedSuccessRate: 2
3418
+ }
3419
+ },
3420
+ "5": {
3421
+ bargain: {
3422
+ afterFailedSuccessRate: 3
3423
+ }
3424
+ }
3425
+ },
3426
+ \u53F6\u73CF: {
3427
+ "1": {
3428
+ buyMore: {
3429
+ product: {
3430
+ \u7EA2\u8336: 20
3431
+ }
3432
+ }
3433
+ },
3434
+ "4": {
3435
+ buyMore: {
3436
+ product: {
3437
+ \u7EA2\u8336: 20,
3438
+ \u5BB6\u7528\u592A\u9633\u80FD\u7535\u6C60\u7EC4: 20
3439
+ }
3440
+ }
3441
+ },
3442
+ "5": {
3443
+ buyMore: {
3444
+ product: {
3445
+ \u7EA2\u8336: 30,
3446
+ \u5BB6\u7528\u592A\u9633\u80FD\u7535\u6C60\u7EC4: 20
3447
+ }
3448
+ }
3449
+ }
3450
+ },
3451
+ \u7EA6\u4E66\u4E9A: {
3452
+ "1": {
3453
+ bargain: {
3454
+ raiseRate: 0.3
3455
+ }
3456
+ },
3457
+ "4": {
3458
+ bargain: {
3459
+ raiseRate: 0.3,
3460
+ raiseSuccessRate: 1
3461
+ }
3462
+ },
3463
+ "5": {
3464
+ bargain: {
3465
+ raiseRate: 0.5,
3466
+ raiseSuccessRate: 1
3467
+ }
3468
+ }
3469
+ },
3470
+ \u5948\u5F25: {
3471
+ "1": {
3472
+ buyMore: {
3473
+ product: {
3474
+ \u91D1\u7B94\u9152: 20
3475
+ }
3476
+ }
3477
+ },
3478
+ "4": {
3479
+ buyMore: {
3480
+ product: {
3481
+ \u91D1\u7B94\u9152: 20
3482
+ }
3483
+ },
3484
+ bargain: {
3485
+ bargainSuccessRate: 1
3486
+ }
3487
+ },
3488
+ "5": {
3489
+ buyMore: {
3490
+ product: {
3491
+ \u91D1\u7B94\u9152: 30
3492
+ }
3493
+ },
3494
+ bargain: {
3495
+ bargainSuccessRate: 1
3496
+ }
3497
+ }
3498
+ },
3499
+ \u4F0A\u5C14: {
3500
+ "1": {
3501
+ buyMore: {
3502
+ product: {
3503
+ \u963F\u59AE\u5854101\u6C11\u7528\u65E0\u4EBA\u673A: 20
3504
+ }
3505
+ }
3506
+ },
3507
+ "5": {
3508
+ buyMore: {
3509
+ product: {
3510
+ \u963F\u59AE\u5854101\u6C11\u7528\u65E0\u4EBA\u673A: 30
3511
+ }
3512
+ }
3513
+ }
3514
+ },
3515
+ \u9716: {
3516
+ "1": {
3517
+ bargain: {
3518
+ bargainCount: 1
3519
+ }
3520
+ },
3521
+ "4": {
3522
+ bargain: {
3523
+ bargainCount: 1,
3524
+ firstTrySuccessRate: 2
3525
+ }
3526
+ },
3527
+ "5": {
3528
+ bargain: {
3529
+ bargainCount: 1,
3530
+ firstTrySuccessRate: 3
3531
+ }
3532
+ }
3533
+ },
3534
+ \u7518\u96C5: {
3535
+ "4": {
3536
+ buyMore: {
3537
+ city: {
3538
+ \u66FC\u5FB7\u77FF\u573A: 20
3539
+ }
3540
+ }
3541
+ },
3542
+ "5": {
3543
+ buyMore: {
3544
+ city: {
3545
+ \u66FC\u5FB7\u77FF\u573A: 30
3546
+ }
3547
+ }
3548
+ }
3549
+ },
3550
+ \u59AE\u853B\u62C9: {
3551
+ "4": {
3552
+ buyMore: {
3553
+ city: {
3554
+ \u963F\u59AE\u5854\u80FD\u6E90\u7814\u7A76\u6240: 20
3555
+ }
3556
+ }
3557
+ },
3558
+ "5": {
3559
+ buyMore: {
3560
+ city: {
3561
+ \u963F\u59AE\u5854\u80FD\u6E90\u7814\u7A76\u6240: 30
3562
+ }
3563
+ }
3564
+ }
3565
+ },
3566
+ \u5361\u6D1B\u7433: {
3567
+ "4": {
3568
+ buyMore: {
3569
+ product: {
3570
+ \u77F3\u58A8\u70EF: 20
3571
+ }
3572
+ }
3573
+ },
3574
+ "5": {
3575
+ buyMore: {
3576
+ product: {
3577
+ \u77F3\u58A8\u70EF: 30
3578
+ }
3579
+ }
3580
+ }
3581
+ },
3582
+ \u6D77\u56E0\u91CC\u5E0C: {
3583
+ "4": {
3584
+ buyMore: {
3585
+ city: {
3586
+ \u4FEE\u683C\u91CC\u57CE: 20
3587
+ }
3588
+ }
3589
+ }
3590
+ },
3591
+ \u82D4\u59AE: {
3592
+ "1": {
3593
+ buyMore: {
3594
+ product: {
3595
+ \u8702\u7A9D\u9632\u70ED\u70E7\u8680\u6750\u6599: 20,
3596
+ \u949B\u77FF\u77F3: 20
3597
+ }
3598
+ }
3599
+ },
3600
+ "4": {
3601
+ buyMore: {
3602
+ product: {
3603
+ \u8702\u7A9D\u9632\u70ED\u70E7\u8680\u6750\u6599: 20,
3604
+ \u949B\u77FF\u77F3: 20
3605
+ }
3606
+ },
3607
+ bargain: {
3608
+ raiseSuccessRate: 1
3609
+ }
3610
+ },
3611
+ "5": {
3612
+ buyMore: {
3613
+ product: {
3614
+ \u8702\u7A9D\u9632\u70ED\u70E7\u8680\u6750\u6599: 50,
3615
+ \u949B\u77FF\u77F3: 50
3616
+ }
3617
+ },
3618
+ bargain: {
3619
+ raiseSuccessRate: 1
3620
+ }
3621
+ }
3622
+ }
3623
+ };
3624
+
3011
3625
  // src/columbabuild.ts
3012
3626
  var PRODUCTS = products_default;
3013
3627
  var CITY_ATTACH_LIST = cityattachlist_default;
3014
3628
  var GOODS_UNLOCK_CONDITIONS = goodsunlockconditions_default;
3015
3629
  var FORMULAS = formulas_default;
3630
+ var RESONANCE_SKILLS = resonanceskills_default;
3016
3631
  // Annotate the CommonJS export names for ESM import in node:
3017
3632
  0 && (module.exports = {
3018
3633
  CITY_ATTACH_LIST,
3019
3634
  FORMULAS,
3020
3635
  GOODS_UNLOCK_CONDITIONS,
3021
- PRODUCTS
3636
+ PRODUCTS,
3637
+ RESONANCE_SKILLS
3022
3638
  });
3023
3639
  //# sourceMappingURL=columbabuild.js.map