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
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
 30 files changed, 422 insertions(+), 11 deletions(-)

diff --git config_191217_2348/Items/Consumables/consumable_powerups.txt config_200113_1512/Items/Consumables/consumable_powerups.txt
index 3a5e5cc..908bd90 100644
--- config_191217_2348/Items/Consumables/consumable_powerups.txt
+++ config_200113_1512/Items/Consumables/consumable_powerups.txt
@@ -106,10 +106,15 @@
 - amount: '50'
   icon: ItemLootSteam_10
   id: energy10
   slot: Energy
   tier: '10'
+- amount: '2'
+  icon: ItemLootHealth_10
+  id: health_small_pacifist
+  slot: Health
+  tier: '11'
 - amount: '4'
   icon: ItemLootSteam_10
   id: energy_small_meowza2
   slot: Energy
   tier: '11'
diff --git config_191217_2348/Items/Secondary Weapons/cloud.txt config_200113_1512/Items/Secondary Weapons/cloud.txt
index b1c3019..aceb0de 100644
--- config_191217_2348/Items/Secondary Weapons/cloud.txt	
+++ config_200113_1512/Items/Secondary Weapons/cloud.txt	
@@ -2213,10 +2213,11 @@
       sfx:
         sound: 'null'
   icon: ItemLootBlast_Bite_9
   id: bite_9
   slot: SecondaryAttack
+  soulbound: 'true'
   tag: bite
   tier: '9'
 - actions:
   - buff:
       cooldown: '1'
@@ -2313,13 +2314,16 @@
       offset:
       - '0'
       - '4.25'
       sfx:
         sound: 'null'
+  extraTags:
+  - rare
   icon: ItemLootBlast_Bite_10
   id: bite_10
   slot: SecondaryAttack
+  soulbound: 'true'
   tag: bite
   tier: '10'
 - actions:
   - buff:
       cooldown: '1'
@@ -2417,11 +2421,13 @@
       - '0'
       - '4.25'
       sfx:
         sound: 'null'
   extraTags:
-  - rare
+  - ultra
+  - legendary
   icon: ItemLootBlast_Bite10_legendary
   id: bite_100
   slot: SecondaryAttack
+  soulbound: 'true'
   tag: bite
   tier: '100'
diff --git config_191217_2348/Quests/quests_daily.txt config_200113_1512/Quests/quests_daily.txt
index dd09ae3..44aa141 100644
--- config_191217_2348/Quests/quests_daily.txt
+++ config_200113_1512/Quests/quests_daily.txt
@@ -702,14 +702,16 @@
     - id: dragonbaby
     - id: vampire
     - id: tunaleader
     - id: lightcycle
     - id: birdcatcher
+    - id: highmountaingrunt
     - id: highmountaingruntleader
     - id: highmountainhunter
     - id: ninjaleader
     - id: ninja
+    - id: bunny
     - id: barrager
     - id: hammerplanet
     - id: hammerplanet2
     - id: hyperdrive
     unitsPerInstance: '16'
diff --git config_191217_2348/Texts/en-US/buffs.txt config_200113_1512/Texts/en-US/buffs.txt
index cf2f6ae..1990dc3 100644
--- config_191217_2348/Texts/en-US/buffs.txt
+++ config_200113_1512/Texts/en-US/buffs.txt
@@ -1,5 +1,9 @@
+combatsim_bossBuff_gunDamage100:
+  title: +100% Gun Damage
+combatsim_bossBuff_gunDamage50:
+  title: +50% Gun Damage
 combatsim_damageReceived100:
   title: +100% Damage Taken
 combatsim_damageReceived1600:
   title: +1600% Damage Taken
 combatsim_damageReceived200:
diff --git config_191217_2348/Texts/en-US/item.txt config_200113_1512/Texts/en-US/item.txt
index fea0d3e..ca32ed4 100644
--- config_191217_2348/Texts/en-US/item.txt
+++ config_200113_1512/Texts/en-US/item.txt
@@ -862,14 +862,14 @@ dye_verydarkviolet_body:
   name: Very dark violet body paint
 dye_verydarkviolet_body_unlimited:
   description: "Bucket of very dark violet body paint. \n\n[UNLIMITED USES. Place in storage so you don't lose it when your plane explodes.]"
   name: Very dark violet body paint
 dye_verydarkviolet_detail:
-  nadescriptionme: "Tub of very dark violet detail paint. \n\n[CONSUMABLE, MULTIPLE USES. Place in storage so you don't lose it when your plane explodes.]"
+  description: "Tub of very dark violet detail paint. \n\n[CONSUMABLE, MULTIPLE USES. Place in storage so you don't lose it when your plane explodes.]"
   name: Very dark violet detail paint
 dye_verydarkviolet_detail_unlimited:
-  nadescriptionme: "Tub of very dark violet detail paint. \n\n[UNLIMITED USES. Place in storage so you don't lose it when your plane explodes.]"
+  description: "Tub of very dark violet detail paint. \n\n[UNLIMITED USES. Place in storage so you don't lose it when your plane explodes.]"
   name: Very dark violet detail paint
 dye_verydarkyellow_body:
   description: "Bucket of very dark yellow body paint. \n\n[CONSUMABLE, MULTIPLE USES. Place in storage so you don't lose it when your plane explodes.]"
   name: Very dark yellow body paint
 dye_verydarkyellow_body_unlimited:
diff --git config_191217_2348/Texts/es/buffs.txt config_200113_1512/Texts/es/buffs.txt
index 6fe584d..6259875 100644
--- config_191217_2348/Texts/es/buffs.txt
+++ config_200113_1512/Texts/es/buffs.txt
@@ -1,5 +1,9 @@
+combatsim_bossBuff_gunDamage100:
+  title: + 100% de daño de arma
+combatsim_bossBuff_gunDamage50:
+  title: + 50% de daño del arma
 combatsim_damageReceived100:
   title: + 100% el daño recibido
 combatsim_damageReceived1600:
   title: + 1600% el daño recibido
 combatsim_damageReceived200:
diff --git config_191217_2348/Texts/es/item.txt config_200113_1512/Texts/es/item.txt
index f589717..06784a4 100644
--- config_191217_2348/Texts/es/item.txt
+++ config_200113_1512/Texts/es/item.txt
@@ -862,14 +862,20 @@ dye_verydarkviolet_body:
   name: Pintura para cubiertas violeta muy oscuro
 dye_verydarkviolet_body_unlimited:
   description: "Cubo de pintura para cubiertas violeta muy oscuro.\n \n [USOS ILIMITADOS. Almacénala para no perderla cuando el avión explote.]"
   name: Pintura para cubiertas violeta muy oscuro
 dye_verydarkviolet_detail:
-  nadescriptionme: "Cubeta de pintura para detalles violeta muy oscuro.\n \n [CONSUMIBLE, VARIOS USOS. Almacénala para no perderla cuando el avión explote.]"
+  description: 'Tina de pintura detalle violeta muy oscuro.
+
+
+    [, USOS MÚLTIPLES consumible. Lugar en el almacenamiento por lo que no se pierde cuando su avión explota.]'
   name: Pintura para detalles violeta muy oscuro
 dye_verydarkviolet_detail_unlimited:
-  nadescriptionme: "Cubeta de pintura para detalles violeta muy oscuro.\n \n [USOS ILIMITADOS. Almacénala para no perderla cuando el avión explote.]"
+  description: 'Tina de pintura detalle violeta muy oscuro.
+
+
+    [USOS ilimitado. Lugar en el almacenamiento por lo que no se pierde cuando su avión explota.]'
   name: Pintura para detalles violeta muy oscuro
 dye_verydarkyellow_body:
   description: "Cubo de pintura para cubiertas amarillo muy oscuro.\n \n [CONSUMIBLE, VARIOS USOS. Almacénala para no perderla cuando el avión explote.]"
   name: Pintura para cubiertas amarillo muy oscuro
 dye_verydarkyellow_body_unlimited:
diff --git config_191217_2348/Texts/fr/buffs.txt config_200113_1512/Texts/fr/buffs.txt
index 8026185..9f1060d 100644
--- config_191217_2348/Texts/fr/buffs.txt
+++ config_200113_1512/Texts/fr/buffs.txt
@@ -1,5 +1,9 @@
+combatsim_bossBuff_gunDamage100:
+  title: + 100% de daño de arma
+combatsim_bossBuff_gunDamage50:
+  title: + 50% de daño del arma
 combatsim_damageReceived100:
   title: + 100% Damage Taken
 combatsim_damageReceived1600:
   title: + 1600% Damage Taken
 combatsim_damageReceived200:
diff --git config_191217_2348/Texts/fr/item.txt config_200113_1512/Texts/fr/item.txt
index 3319d41..00f589d 100644
--- config_191217_2348/Texts/fr/item.txt
+++ config_200113_1512/Texts/fr/item.txt
@@ -862,14 +862,20 @@ dye_verydarkviolet_body:
   name: Peinture violet-noir (aplats)
 dye_verydarkviolet_body_unlimited:
   description: "Pot de peinture violet-noir (aplats). \n \n [USAGE ILLIMITÉ. À stocker afin d'éviter toute perte en cas d'explosion de l'appareil.]"
   name: Peinture violet-noir (aplats)
 dye_verydarkviolet_detail:
-  nadescriptionme: "Bidon de peinture violet-noir (détails). \n \n [CONSOMMABLE, USAGE MULTIPLE. À stocker afin d'éviter toute perte en cas d'explosion de l'appareil.]"
+  description: 'Tina de pintura detalle violeta muy oscuro.
+
+
+    [, USOS MÚLTIPLES consumible. Lugar en el almacenamiento por lo que no se pierde cuando su avión explota.]'
   name: Peinture violet-noir (détails)
 dye_verydarkviolet_detail_unlimited:
-  nadescriptionme: "Bidon de peinture violet-noir (détails). \n \n [USAGE ILLIMITÉ. À stocker afin d'éviter toute perte en cas d'explosion de l'appareil.]"
+  description: 'Tina de pintura detalle violeta muy oscuro.
+
+
+    [USOS ilimitado. Lugar en el almacenamiento por lo que no se pierde cuando su avión explota.]'
   name: Peinture violet-noir (détails)
 dye_verydarkyellow_body:
   description: "Pot de peinture jaune très foncé (aplats). \n \n [CONSOMMABLE, USAGE MULTIPLE. À stocker afin d'éviter toute perte en cas d'explosion de l'appareil.]"
   name: Peinture jaune très foncé (aplats)
 dye_verydarkyellow_body_unlimited:
diff --git config_191217_2348/Texts/zh-CN/buffs.txt config_200113_1512/Texts/zh-CN/buffs.txt
index 78bac21..6d559c6 100644
--- config_191217_2348/Texts/zh-CN/buffs.txt
+++ config_200113_1512/Texts/zh-CN/buffs.txt
@@ -1,5 +1,9 @@
+combatsim_bossBuff_gunDamage100:
+  title: + 100%枪损伤
+combatsim_bossBuff_gunDamage50:
+  title: + 50%枪损伤
 combatsim_damageReceived100:
   title: + 100%伤害转化
 combatsim_damageReceived1600:
   title: + 1600%伤害转化
 combatsim_damageReceived200:
diff --git config_191217_2348/Texts/zh-CN/item.txt config_200113_1512/Texts/zh-CN/item.txt
index 874a9df..a89be0c 100644
--- config_191217_2348/Texts/zh-CN/item.txt
+++ config_200113_1512/Texts/zh-CN/item.txt
@@ -862,14 +862,20 @@ dye_verydarkviolet_body:
   name: 黑紫色机体涂装
 dye_verydarkviolet_body_unlimited:
   description: "一桶黑紫色机体涂装。 \n \n [无限使用。放入仓库中以免在飞机爆炸时丢失。]"
   name: 黑紫色机体涂装
 dye_verydarkviolet_detail:
-  nadescriptionme: "一罐黑紫色油彩。 \n \n [消耗品,多次使用。放入仓库中以免在飞机爆炸时丢失。]"
+  description: '很暗紫色细节漆的浴池。
+
+
+    [消耗的,多种用途。在存储位置,这样你就不会失去它时,你的飞机爆炸。]'
   name: 黑紫色油彩
 dye_verydarkviolet_detail_unlimited:
-  nadescriptionme: "一罐黑紫色油彩。 \n \n [无限使用。放入仓库中以免在飞机爆炸时丢失。]"
+  description: '很暗紫色细节漆的浴池。
+
+
+    [UNLIMITED用途。在存储位置,这样你就不会失去它时,你的飞机爆炸。]'
   name: 黑紫色油彩
 dye_verydarkyellow_body:
   description: "一桶土黄色机体涂装。 \n \n [消耗品,多次使用。放入仓库中以免在飞机爆炸时丢失。]"
   name: 土黄色机体涂装
 dye_verydarkyellow_body_unlimited:
diff --git config_191217_2348/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_31HGH_angel2/DQ_CS_31HGH_angel2master.txt config_200113_1512/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_31HGH_angel2/DQ_CS_31HGH_angel2master.txt
index be6764b..fcef54b 100644
--- config_191217_2348/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_31HGH_angel2/DQ_CS_31HGH_angel2master.txt	
+++ config_200113_1512/Units/00 - Quest Enemies/Daily Quests - Special/DQ_CS_31HGH_angel2/DQ_CS_31HGH_angel2master.txt	
@@ -1,8 +1,8 @@
 art: '!EnemyInvisible'
 artScale: '1'
-colliderRadius: '0.8'
+colliderRadius: '0'
 colliderX: '0'
 colliderY: '0'
 energyRegenRate: '0'
 explosionPrefab: planeExplosionEmpty
 healthRegenRate: '0'
diff --git config_191217_2348/Units/66D - Space Dungeon/xxx_spaceturret.txt config_200113_1512/Units/66D - Space Dungeon/xxx_spaceturret.txt
index 8d994fb..15441f7 100644
--- config_191217_2348/Units/66D - Space Dungeon/xxx_spaceturret.txt	
+++ config_200113_1512/Units/66D - Space Dungeon/xxx_spaceturret.txt	
@@ -32,11 +32,11 @@ gunTypes:
   name: spaceturretgun
   rof: '3'
   speed: '4'
   spread: '0'
 healthRegenRate: '0'
-isVisibleInRadar: 'false'
+isVisibleInRadar: 'true'
 maxEnergyPoints: '1'
 maxHitPoints: '20'
 maxSpeed: '10'
 maxTurnRate: '270'
 minSpeed: '0'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/BOS1_pacifist_healthdropper.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/BOS1_pacifist_healthdropper.txt
new file mode 100644
index 0000000..94e20c9
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/BOS1_pacifist_healthdropper.txt	
@@ -0,0 +1,22 @@
+art: '!EnemyInvisible'
+artScale: '1'
+colliderRadius: '0'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionSmall
+hashOverride: '7817'
+healthRegenRate: '0'
+isVisibleInRadar: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+showName: never
+showStats: never
+spawnInvulnerabilitySeconds: '10000'
+templateName: pacifist_healthdropper
+tier: '10'
+xpMultiplier: '0'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest1.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest1.txt
new file mode 100644
index 0000000..a2becd3
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest1.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest1
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest10.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest10.txt
new file mode 100644
index 0000000..fc58209
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest10.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest10
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest2.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest2.txt
new file mode 100644
index 0000000..dc0ad54
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest2.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest2
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest3.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest3.txt
new file mode 100644
index 0000000..a1e2c50
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest3.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest3
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest4.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest4.txt
new file mode 100644
index 0000000..eb0995a
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest4.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest4
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest5.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest5.txt
new file mode 100644
index 0000000..aa84b0d
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest5.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest5
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest6.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest6.txt
new file mode 100644
index 0000000..5ca5454
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest6.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest6
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest7.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest7.txt
new file mode 100644
index 0000000..cddc4e8
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest7.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest7
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest8.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest8.txt
new file mode 100644
index 0000000..e8044c5
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest8.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest8
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest9.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest9.txt
new file mode 100644
index 0000000..abee196
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchest9.txt	
@@ -0,0 +1,20 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+damageThreshold: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchest9
+tier: '10'
+xpMultiplier: '0'
+xpRadius: '15'
diff --git config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchesthealth.txt config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchesthealth.txt
new file mode 100644
index 0000000..9c92f9b
--- /dev/null
+++ config_200113_1512/Units/74D - Combat Dungeon/Chests/unit_pacifistchesthealth.txt	
@@ -0,0 +1,18 @@
+art: CollectableTreasureCachePrefab
+artScale: '1'
+colliderRadius: '0.8'
+colliderX: '0'
+colliderY: '0'
+energyRegenRate: '0'
+explosionPrefab: ExplosionBig2
+healthRegenRate: '0'
+isCountable: 'false'
+maxEnergyPoints: '1'
+maxHitPoints: '1'
+maxSpeed: '0'
+maxTurnRate: '0'
+minSpeed: '0'
+spawnInvulnerabilitySeconds: '0'
+templateName: pacifistchesthealth
+tier: '10'
+xpMultiplier: '0'
diff --git config_191217_2348/buffTags.txt config_200113_1512/buffTags.txt
index 626daee..0b5d3ff 100644
--- config_191217_2348/buffTags.txt
+++ config_200113_1512/buffTags.txt
@@ -92,5 +92,10 @@
   - combatsim_damageReceived400
   - combatsim_damageReceived800
   - combatsim_damageReceived1600
   id: combatsim_damageReceived
   stacks: '1'
+- buffs:
+  - combatsim_bossBuff_gunDamage50
+  - combatsim_bossBuff_gunDamage100
+  id: combatsim_bossBuffs
+  stacks: '1'
diff --git config_191217_2348/buffs.txt config_200113_1512/buffs.txt
index abf5666..447534b 100644
--- config_191217_2348/buffs.txt
+++ config_200113_1512/buffs.txt
@@ -1126,10 +1126,14 @@
       - format: dialogue
         id: dungeonmod_pacifist
         portrait: radar
   effects:
   - statMod:
+      amount: '2'
+      math: multiply
+      name: maxHitPoints
+  - statMod:
       amount: '80'
       math: multiply
       name: xpMod
   - statMod:
       amount: '0'
@@ -1184,5 +1188,41 @@
   expireOnServerLeave: 'true'
   hudColorBackground: 2C1447FF
   hudColorBar: ff7900ff
   id: damage_nerf_sky
   stackOverflowRule: Ignore
+- dialogue:
+    onStart:
+    - speechOptions:
+      - format: dialogue
+        id: combatsim_gunDamage50
+        portrait: radar
+  effects:
+  - statMod:
+      amount: '1.5'
+      math: multiply
+      name: gunDamageMod
+  expireOnServerLeave: 'true'
+  hudColorBackground: 55ff55ff
+  hudColorBar: 428142ff
+  hudVisible: 'true'
+  id: combatsim_bossBuff_gunDamage50
+  stackOverflowRule: ReplaceOldest
+  stacks: '0'
+- dialogue:
+    onStart:
+    - speechOptions:
+      - format: dialogue
+        id: combatsim_gunDamage100
+        portrait: radar
+  effects:
+  - statMod:
+      amount: '2.0'
+      math: multiply
+      name: gunDamageMod
+  expireOnServerLeave: 'true'
+  hudColorBackground: 55ff55ff
+  hudColorBar: 428142ff
+  hudVisible: 'true'
+  id: combatsim_bossBuff_gunDamage100
+  stackOverflowRule: ReplaceOldest
+  stacks: '0'
diff --git config_191217_2348/combatSimulations.txt config_200113_1512/combatSimulations.txt
index 4ee1fa0..439ec60 100644
--- config_191217_2348/combatSimulations.txt
+++ config_200113_1512/combatSimulations.txt
@@ -3,10 +3,16 @@ locations:
   modes:
   - test
   - daily_solo
   - daily_guild
   - daily_alt
+  - solo_basic
+  - solo_high_tier
+  - solo_boss_rush
+  - guild_basic
+  - guild_high_tier
+  - guild_boss_rush
   - solo_survival
   - guild_survival
   - solo_survival_pacifist
   - guild_survival_pacifist
 - id: nexus
@@ -1125,5 +1131,65 @@ modes:
   schedule:
     minute: '*/5'
   variants:
   - guild_survival_pacifist
   version: '1'
+- hash: '10'
+  id: solo_basic
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - solo_basic
+  version: '1'
+- hash: '11'
+  id: solo_high_tier
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - solo_high_tier
+  version: '1'
+- hash: '12'
+  id: solo_boss_rush
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - solo_boss_rush
+  version: '1'
+- hash: '13'
+  id: guild_basic
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - guild_basic
+  version: '1'
+- hash: '14'
+  id: guild_high_tier
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - guild_high_tier
+  version: '1'
+- hash: '15'
+  id: guild_boss_rush
+  periodFormat: yyyy-MM-dd HH:mm
+  playGracePeriod: '01:00:00.00'
+  postPeriodRewardClaimTimeout: 02.00:00:00.00
+  schedule:
+    minute: '*/5'
+  variants:
+  - guild_boss_rush
+  version: '1'
diff --git config_191217_2348/global.txt config_200113_1512/global.txt
index 36c0810..ad9598f 100644
--- config_191217_2348/global.txt
+++ config_200113_1512/global.txt
@@ -117,10 +117,11 @@ gracefulKickWarningTimeout: '10'
 gracefulKickWarnings: '5'
 gracefulReconnectTimeout: '10'
 greenTeamAllyMaxCount: '1'
 greenTeamAllyMaxDistance: '1'
 groundHeight: '3.5'
+gunFireMaxDistanceSq: '256'
 gunSignalMinDamage: '0.1'
 gunSignalMinInterval: '0.0'
 gunSignalTime: '0.0'
 healthUIThreshold: '10'
 ignoreFireAfterTeleportTime: '2'
diff --git config_191217_2348/index.txt config_200113_1512/index.txt
index 97468c5..f8ebeb3 100644
--- config_191217_2348/index.txt
+++ config_200113_1512/index.txt
@@ -1751,10 +1751,11 @@
 - Units/00 - Quest Enemies/tut_05/unit_tut_05_centipede02
 - Units/00 - Quest Enemies/tut_05/unit_tut_05_centipede03
 - Units/00 - Quest Enemies/tut_05/unit_tut_05_lasereye
 - Units/00 - Quest Enemies/tut_05/unit_tut_05_trainA01
 - Units/00 - Quest Enemies/tut_05/unit_tut_05_trainA02
+- Units/74D - Combat Dungeon/Chests/BOS1_pacifist_healthdropper
 - Units/74D - Combat Dungeon/Chests/unit_chest1
 - Units/74D - Combat Dungeon/Chests/unit_chest10
 - Units/74D - Combat Dungeon/Chests/unit_chest10spawner
 - Units/74D - Combat Dungeon/Chests/unit_chest1item
 - Units/74D - Combat Dungeon/Chests/unit_chest1spawner
@@ -1773,10 +1774,21 @@
 - Units/74D - Combat Dungeon/Chests/unit_chest7spawner
 - Units/74D - Combat Dungeon/Chests/unit_chest8
 - Units/74D - Combat Dungeon/Chests/unit_chest8spawner
 - Units/74D - Combat Dungeon/Chests/unit_chest9
 - Units/74D - Combat Dungeon/Chests/unit_chest9spawner
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest1
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest10
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest2
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest3
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest4
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest5
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest6
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest7
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest8
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchest9
+- Units/74D - Combat Dungeon/Chests/unit_pacifistchesthealth
 - Units/74D - Combat Dungeon/Chests/xxx_groupchest1
 - Units/74D - Combat Dungeon/Chests/xxx_groupchest10
 - Units/74D - Combat Dungeon/Chests/xxx_groupchest2
 - Units/74D - Combat Dungeon/Chests/xxx_groupchest3
 - Units/74D - Combat Dungeon/Chests/xxx_groupchest4