-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleConfig-cleaned.xml
1619 lines (1521 loc) · 148 KB
/
ModuleConfig-cleaned.xml
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
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- Created with FOMOD Creation Tool 1.7.0.37 [http://www.nexusmods.com/fallout4/mods/6821] -->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://qconsulting.ca/fo3/ModConfig5.0.xsd">
<moduleName>MFD - Cleaned CC Content - 1.6.323</moduleName>
<moduleImage path="Images\Misc\Header.jpg" />
<installSteps order="Explicit">
<installStep name="Apparel (Page 1 of 1)">
<optionalFileGroups order="Explicit">
<group name="Alternative Armors" type="SelectAny">
<plugins order="Explicit">
<plugin name="Daedric Mail">
<description>Includes three pieces of light Daedric armor as featured in The Elder Scrolls Blades. The quest Missing Merchant starts by speaking to the innkeeper of Candlehearth Hall in Windhelm.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse051-ba_daedricmail.esl</description>
<image path="Images\Apparel\Daedric Mail.jpg" />
<files>
<file source="CC Content\ccbgssse051-ba_daedricmail.esl" destination="ccbgssse051-ba_daedricmail.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse051-ba_daedricmail.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Daedric Plate">
<description>Includes two pieces of heavy Daedric Plate armor as featured in The Elder Scrolls Blades. The quest Beyond the Grave starts by reading Death of a Crimson Dirk in Dragonreach Dungeon in Whiterun.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse050-ba_daedric.esl</description>
<image path="Images\Apparel\Daedric Plate.jpg" />
<files>
<file source="CC Content\ccbgssse050-ba_daedric.esl" destination="ccbgssse050-ba_daedric.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse050-ba_daedric.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Dragon Plate">
<description>Includes four pieces of heavy Dragon Plate armor as featured in The Elder Scrolls Blades, plus the famed Dragonbone Mail.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse059-ba_dragonplate.esl</description>
<image path="Images\Apparel\Dragon Plate.jpg" />
<files>
<file source="CC Content\ccbgssse059-ba_dragonplate.esl" destination="ccbgssse059-ba_dragonplate.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse059-ba_dragonplate.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Dragonscale">
<description>Includes four pieces of light Dragonscale armor as featured in The Elder Scrolls Blades. The quest Tilted Scales starts by reading The Crimson Dirks, v4 in Candlehearth Hall in Windhelm.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse060-ba_dragonscale.esl</description>
<image path="Images\Apparel\Dragonscale.jpg" />
<files>
<file source="CC Content\ccbgssse060-ba_dragonscale.esl" destination="ccbgssse060-ba_dragonscale.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse060-ba_dragonscale.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Dwarven Mail">
<description>Includes four pieces of light Dwarven Mail armor as featured in The Elder Scrolls Blades. The quest Fan Favorite starts by reading Arena Fan's Note at a camp southeast of Ivarstead.
Installation Files:
ccbgssse062-ba_dwarvenmail.esl</description>
<image path="Images\Apparel\Dwarven Mail.jpg" />
<files>
<file source="CC Content\ccbgssse062-ba_dwarvenmail.esl" destination="ccbgssse062-ba_dwarvenmail.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse062-ba_dwarvenmail.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Dwarven Plate">
<description>Includes two pieces of heavy Dwarven armor as featured in The Elder Scrolls Blades. The quest Mightier than the Sword starts by reading Looter's Note at the Silver-Blood Inn in Markarth.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse061-ba_dwarven.esl</description>
<image path="Images\Apparel\Dwarven Plate.jpg" />
<files>
<file source="CC Content\ccbgssse061-ba_dwarven.esl" destination="ccbgssse061-ba_dwarven.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse061-ba_dwarven.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Ebony Plate">
<description>Includes four pieces of heavy Ebony armor as featured in The Elder Scrolls Blades. The quest Heart of Crimson starts by reading the Letter from Tyra Blood-Fire delivered by courier upon reaching level 32.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse063-ba_ebony.esl</description>
<image path="Images\Apparel\Ebony Plate.jpg" />
<files>
<file source="CC Content\ccbgssse063-ba_ebony.esl" destination="ccbgssse063-ba_ebony.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Elven Hunter">
<description>Includes three pieces of light Elven Hunter armor as featured in The Elder Scrolls Blades. The quest Once a Hunter starts by reading Guard Dossier Aesrael in the Falkreath Barracks.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse064-ba_elven.esl</description>
<image path="Images\Apparel\Elven Hunter.jpg" />
<files>
<file source="CC Content\ccbgssse064-ba_elven.esl" destination="ccbgssse064-ba_elven.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Iron">
<description>Includes four pieces of heavy Iron armor as featured in The Elder Scrolls Blades.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse052-ba_iron.esl</description>
<image path="Images\Apparel\Iron.jpg" />
<files>
<file source="CC Content\ccbgssse052-ba_iron.esl" destination="ccbgssse052-ba_iron.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Leather">
<description>Includes four pieces of Leather armor as featured in The Elder Scrolls Blades.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse053-ba_leather.esl</description>
<image path="Images\Apparel\Leather.jpg" />
<files>
<file source="CC Content\ccbgssse053-ba_leather.esl" destination="ccbgssse053-ba_leather.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Orcish Plate">
<description>Includes four pieces of heavy Orcish armor with fur as featured in The Elder Scrolls Blades.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse054-ba_orcish.esl</description>
<image path="Images\Apparel\Orcish Plate.jpg" />
<files>
<file source="CC Content\ccbgssse054-ba_orcish.esl" destination="ccbgssse054-ba_orcish.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Orcish Scaled">
<description>Includes four pieces of heavy Orcish armor with leather as featured in The Elder Scrolls Blades.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse055-ba_orcishscaled.esl</description>
<image path="Images\Apparel\Orcish Scaled.jpg" />
<files>
<file source="CC Content\ccbgssse055-ba_orcishscaled.esl" destination="ccbgssse055-ba_orcishscaled.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Silver">
<description>Includes four pieces of heavy Silver armor as featured in The Elder Scrolls Blades. The quest When the Cat's Away starts by reading M'Sharra's Diary at The Bannered Mare in Whiterun.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse056-ba_silver.esl</description>
<image path="Images\Apparel\Silver.jpg" />
<files>
<file source="CC Content\ccbgssse056-ba_silver.esl" destination="ccbgssse056-ba_silver.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Stalhrim Fur">
<description>Includes four pieces of heavy Stalhrim armor as featured in The Elder Scrolls Blades. The quest Ancient Ice starts by reading Skjol's Journal at the camp south-southwest of Skaal Village.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse057-ba_stalhrim.esl</description>
<image path="Images\Apparel\Stalhrim Fur.jpg" />
<files>
<file source="CC Content\ccbgssse057-ba_stalhrim.esl" destination="ccbgssse057-ba_stalhrim.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse057-ba_stalhrim.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Steel Soldier">
<description>Includes four pieces of heavy Steel armor as featured in The Elder Scrolls Blades. The quest Over the Edge starts by reading Suicide at Dragon Bridge in Four Shields Tavern at Dragon Bridge.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse058-ba_steel.esl</description>
<image path="Images\Apparel\Steel Soldier.jpg" />
<files>
<file source="CC Content\ccbgssse058-ba_steel.esl" destination="ccbgssse058-ba_steel.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
</plugins>
</group>
</optionalFileGroups>
</installStep>
<installStep name="Apparel (Page 2 or 2)">
<optionalFileGroups order="Explicit">
<group name="Armor Sets" type="SelectAny">
<plugins order="Explicit">
<plugin name="Lord's Mail">
<description>The legendary Imperial relic known as The Lord's Mail is rumored to be in the possession of Redguard mercenaries. The Imperial Legion has ordered you to retrieve it by any means. The quest Gift of Kynareth starts by reading Letter to General Tullius at Castle Dour in Solitude.
Installation Files:
ccbgssse021-lordsmail.esl</description>
<image path="Images\Apparel\Lord's Mail.jpg" />
<files>
<file source="CC Content\ccbgssse021-lordsmail.esl" destination="ccbgssse021-lordsmail.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Netch Leather">
<description>A tribe of hungry Rieklings seeks your aid to help hunt down a large bull netch. It's not the meat or jelly they wish to consume, however, but its leather. Help the tribe sate their stomachs or save them from their misguided appetites. Featuring the return of Netch Leather armor, including two additional skins. The quest More Than You Can Chew starts by reading the Peddler's Journal on a body of a Dark Elf north-northwest of Skaal Village, and southeast of Haknir's Shoal.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse041-netchleather.esl</description>
<image path="Images\Apparel\Netch Leather Armor.jpg" />
<files>
<file source="CC Content\ccbgssse041-netchleather.esl" destination="ccbgssse041-netchleather.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse041-netchleather.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Spell Knight">
<description>Adorn the armor of the Spell Knight, the Keepers of the Crypt of Hearts, renowned throughout High Rock for their bravery and valor. Learn the story of the Spell Knight whose heart was stolen by a witch and obtain the armor that was their standard. The Spell Knight Armor comes in three variants, including iron, steel, and ebony. The quest Crypt of the Heart starts by reading Crypt of the Heart - Draft at the Silver-Blood Inn in Markarth.
Armor Created by ElleH
Quest Created by Kris Takahashi
Installation Files:
ccedhsse002-splkntset.esl</description>
<image path="Images\Apparel\Spell Knight.jpg" />
<files>
<file source="CC Content\ccedhsse002-splkntset.esl" destination="ccedhsse002-splkntset.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccedhsse002-splkntset.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Vigil Enforcer">
<description>While Stendarr may offer mercy, the Vigil have none to spare. Among the ranks of these holy warriors are armored paladins who shed their priestly robes for hide and steel. Collect and craft four unique armor sets and deliver Stendarr's justice to both the abominations and those corrupted by them. The quest Unholy Vigil starts by reading the Letter to Keeper Carcette in the Hall of the Vigilant south of Dawnstar.
Armor Created by Maty743
Quest Created by Kris Takahashi
Installation Files:
ccmtysse002-ve.esl</description>
<image path="Images\Apparel\Vigil Enforcer.jpg" />
<files>
<file source="CC Content\ccmtysse002-ve.esl" destination="ccmtysse002-ve.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccmtysse002-ve.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
<group name="Horse Armor" type="SelectAny">
<plugins order="Explicit">
<plugin name="Elven">
<description>Tamriel is a dangerous place. Protect your horse from danger with this beautiful handcrafted elven horse armor. Obtained via hostler at any stable.
Installation Files:
ccbgssse011-hrsarmrelvn.esl</description>
<image path="Images\Apparel\Horse Armor.jpg" />
<files>
<file source="CC Content\ccbgssse011-hrsarmrelvn.esl" destination="ccbgssse011-hrsarmrelvn.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Steel">
<description>Tamriel is a dangerous place. Protect your horse from danger with this beautiful handcrafted steel horse armor. Obtained via hostler at any stable.
Installation Files:
ccbgssse012-hrsarmrstl.esl</description>
<image path="Images\Apparel\Horse Steel.jpg" />
<files>
<file source="CC Content\ccbgssse012-hrsarmrstl.esl" destination="ccbgssse012-hrsarmrstl.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
</plugins>
</group>
<group name="Misc" type="SelectAny">
<plugins order="Explicit">
<plugin name="Adventurer's Backback">
<description>Don't head off into the wilderness without your Adventurer's Backpack. Craft 16 variations with assorted effects. Backpacks can be purchased at vendors and crafted via Forge.
Quest Created by FadingSignal
Installation Files:
ccfsvsse001-backpacks.esl</description>
<image path="Images\Apparel\Adventurer's Backpack.jpg" />
<files>
<file source="CC Content\ccfsvsse001-backpacks.esl" destination="ccfsvsse001-backpacks.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Fearsome Fists">
<description>From Iron to Dragonplate, this creation offers 15 gauntlet variants that can be crafted, purchased or found in the world. Each pair has been affixed with spikes, blades or horns to give impact to your unarmed attacks. Mix and match with existing armors to diversify your look. Items appear at vendors, in chests and can be crafted at any forge.
Created by HothTrooper44
Installation Files:
cccbhsse001-gaunt.esl</description>
<image path="Images\Apparel\Fearsom FIsts.jpg" />
<files>
<file source="CC Content\cccbhsse001-gaunt.esl" destination="cccbhsse001-gaunt.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="cccbhsse001-gaunt.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Grey Cowl Returns">
<description>The legend of the Gray Fox is known throughout history, yet the ones who wear the cowl remain nameless. To become the next Gray Fox, you must first restore the identity of the Cowl's bearer, and only then can your crimes be bereft of a name. The quest The Gray Cowl of Nocturnal starts by confronting a thief in the Riften graveyard.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse020-graycowl.esl</description>
<image path="Images\Apparel\Grey Cowl Returns.jpg" />
<files>
<file source="CC Content\ccbgssse020-graycowl.esl" destination="ccbgssse020-graycowl.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Nordic Jewelry">
<description>Beset with a jewel made of the highest quality stalhrim, these elegant, handcrafted jewelry pieces combine traditional Nordic design with an elegance fit for a Jarl. Each gem is expertly chosen for its purity, color, and magical affinity. The ornate setting is made of the finest quicksilver that is guaranteed to retain its finish. Choose from three craftable options including a Nordic amulet, ring, or circlet, and travel the holds of Skyrim with style and grace. The quest Nordic Jewelry starts by reading the Certificate of Authenticity obtained if you buy Nordic jewelry from Madesi, Bersi Honey-Hand, Endarie or Belethor.
Installation Files:
ccedhsse001-norjewel.esl</description>
<image path="Images\Apparel\Nordic Jewelry.jpg" />
<files>
<file source="CC Content\ccedhsse001-norjewel.esl" destination="ccedhsse001-norjewel.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccedhsse001-norjewel.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
</optionalFileGroups>
</installStep>
<installStep name="Equipment Sets">
<optionalFileGroups order="Explicit">
<group name="Selection" type="SelectAny">
<plugins order="Explicit">
<plugin name="Arms of Chaos">
<description>The original Staff of Chaos, or Balac-thurm, was shattered into pieces and lost to time. In the years since, mages have sought to recreate its magic. Follow the path of these mages as you obtain an ancient ring and restore the artifacts of chaos, including two new staves and an enchanted amulet. The quest The Arms of Chaos starts by reading Hyenril's Journal at Skytemple Ruins, north of the College of Winterhold.
Created by PrivateEye
Quest Created by Kris Takahashi
Installation Files:
ccpewsse002-armsofchaos.esl</description>
<image path="Images\Equipment Sets\Arms of Chaos.jpg" />
<files>
<file source="CC Content\ccpewsse002-armsofchaos.esl" destination="ccpewsse002-armsofchaos.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccpewsse002-armsofchaos.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Civil War Champions">
<description>In the midst of an unending war, the Stormcloaks and Imperials have agreed to a duel. Two champions are to meet on the field of battle, to decide once and for all whose warriors are the fiercest. Choose a side, don the armor of the champion, and prove your mettle. The quest Battle of the Champions starts by reading Battle of the Champions at The Drunken Huntsman in Whiterun or waiting for a letter from a commanding officer.
Created by Borx25
Quest Created by Kris Takahashi
Installation Files:
ccffbsse001-imperialdragon.esl</description>
<image path="Images\Equipment Sets\Civil War Champions.jpg" />
<files>
<file source="CC Content\ccffbsse001-imperialdragon.esl" destination="ccffbsse001-imperialdragon.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccffbsse001-imperialdragon.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Divine Crusader">
<description>Now you, too, can wield the powerful equipment of the Divine Crusader, Pelinal Whitestrake - once reserved only for the revered Knights of the Nine. Armor can be found by exploring Four Skull Lookout far east-northeast of Markarth.
Created by Maty743
Installation Files:
ccmtysse001-knightsofthenine.esl</description>
<image path="Images\Equipment Sets\Divine Crusader.jpg" />
<files>
<file source="CC Content\ccmtysse001-knightsofthenine.esl" destination="ccmtysse001-knightsofthenine.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Redguard Elite Armaments">
<description>Connect with a network of Redguard agents known as the Remnants, and help them recover one of their own from the Thalmor. Includes a brand new set of light armor plus two new weapons, such as the legendary Yokudan sword Boneshaver. The quest Interception starts by talking to Azadi in Shor's Stone far north of Riften.
Created by ElleH and Sheoburgler
Installation Files:
ccedhsse003-redguard.esl</description>
<image path="Images\Equipment Sets\Redguard Elite Armaments.jpg" />
<files>
<file source="CC Content\ccedhsse003-redguard.esl" destination="ccedhsse003-redguard.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccedhsse003-redguard.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
</optionalFileGroups>
</installStep>
<installStep name="Weapons">
<optionalFileGroups order="Explicit">
<group name="Swords" type="SelectAny">
<plugins order="Explicit">
<plugin name="Chrysamere">
<description>Known as the Paladin's Blade and Sword of Heroes, this legendary claymore is imbued with powerful magic, like Fire Resistance, Spell Absorption, and devastating damage. Weapon can be found in Forelhost southeast of Riften.
Installation Files:
ccbgssse007-chrysamere.esl</description>
<image path="Images\Weapons\Chrysamere.jpg" />
<files>
<file source="CC Content\ccbgssse007-chrysamere.esl" destination="ccbgssse007-chrysamere.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Dawnfang and Duskfang">
<description>Sealed away in the depths of the Riften Ratways is a dark and terrible secret, and at its heart, a sword of two minds. Transformed by the light of the sun and the moons, Dawnfang and Duskfang grants you the power to wield fire and ice and drink the souls of the vanquished. But to do that, you must first free the soul that binds it. The quest A Soul Divided starts by exploring the Riften Ratway.
Created by SkinnyTechBoy
Installation Files:
ccbgssse013-dawnfang.esl</description>
<image path="Images\Weapons\Dawnfang and Duskfang.jpg" />
<files>
<file source="CC Content\ccbgssse013-dawnfang.esl" destination="ccbgssse013-dawnfang.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Goldbrand">
<description>The legendary katana Goldbrand has been wielded by those who have turned the pages of history. Now, this weapon has returned to Skyrim at the resting place of one such hero. Discover the ancient tomb and be the one to write its next chapter. The A Matter of Pride quest starts by finding Eranya in the Sacellum of Boethiah east of Windhelm.
Installation Files:
ccbgssse005-goldbrand.esl</description>
<image path="Images\Weapons\Goldbrand.jpg" />
<files>
<file source="CC Content\ccbgssse005-goldbrand.esl" destination="ccbgssse005-goldbrand.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse005-goldbrand.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="The Contest">
<description>Behind the din of tavern chatter, two warriors are embroiled in an argument. To settle it, they embark on a quest to see who can slay a monstrous spider. Follow their trail and learn what became of them. Includes the legendary Fists of Randagulf and the Ice Blade of the Monarch quest by Kris Takahashi. The Caught in a Webquest starts by reading Adonato Leotelli’s Journal in Candlehearth Hall.
Installation Files:
ccbgssse069-contest.esl</description>
<image path="Images\Weapons\The Contest.jpg" />
<files>
<file source="CC Content\ccbgssse069-contest.esl" destination="ccbgssse069-contest.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Umbra">
<description>The history of this Daedric artifact is recounted in the rise and fall of those that have wielded it. Forged from wicked hands and vile mind, legend says that Umbra itself lives. Umbra introduces a brand new Skyrim dungeon featuring stunning visuals, puzzle solving, and an exhilarating boss fight. The quest Vile Whispers starts by reading the Vigilant's Report in Champion's Rest, found in the mountains north-northeast of Riften.
Additional Art Support by Elianora
Installation Files:
ccbgssse016-umbra.esm</description>
<image path="Images\Weapons\Umbra.jpg" />
<files>
<file source="CC Content\ccbgssse016-umbra.esm" destination="ccbgssse016-umbra.esm" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse005-goldbrand.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
<group name="Blunt" type="SelectAny">
<plugins order="Explicit">
<plugin name="Headman's Cleaver">
<description>The Bloodfall Queen has had her cleaver stolen by an old foe. Track the bandits to their hideout and claim the Headman's Cleaver as your reward. After all, the Queen can replace the weapon - what she desires is revenge. The Blood in the Water quest can be provided when asking an innkeeper if they’ve heard any rumors lately.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse068-bloodfall.esl</description>
<image path="Images\Weapons\Headman's Cleaver.jpg" />
<files>
<file source="CC Content\ccbgssse068-bloodfall.esl" destination="ccbgssse068-bloodfall.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Stendarr's Hammer">
<description>Rumored to have been wielded by Stendarr, the God of Righteous Might and Merciful Forbearance himself, this two-handed hammer will deliver devastation to any foe. Weapon can be stolen from the Dwemer Museum in Markarth.
Installation Files:
ccbgssse006-stendarshammer.esl</description>
<image path="Images\Weapons\Stendarr's Hammer.jpg" />
<files>
<file source="CC Content\ccbgssse006-stendarshammer.esl" destination="ccbgssse006-stendarshammer.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Sunder and Wraithguard">
<description>Crafted by the Dwemer Tonal Architect Lord Kagrenac, Sunder and Wraithguard represent two of the three tools created to tap into the Heart of Lorkhan. Imbued with ancient magic, the weapons are said to empower not only their wielder, but each other. The quest Legends Lost starts by reading the Lost Caravan Guard's Note at the New Gnisis Cornerclub in Windhelm.
Additional Art Support by Elianora
Installation Files:
ccbgssse008-wraithguard.esl</description>
<image path="Images\Weapons\Sunder and Wraithguard.jpg" />
<files>
<file source="CC Content\ccbgssse008-wraithguard.esl" destination="ccbgssse008-wraithguard.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse008-wraithguard.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
<group name="Ranged" type="SelectAny">
<plugins order="Explicit">
<plugin name="Bow of Shadows">
<description>Forged by Nocturnal and used by assassins, it grants the user the gifts of invisibility and speed. The In the Shadows quest starts by speaking to the Jarl’s Steward in Dragonsreach.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse038-bowofshadows.esl</description>
<image path="Images\Weapons\Bow of Shadows.jpg" />
<files>
<file source="CC Content\ccbgssse038-bowofshadows.esl" destination="ccbgssse038-bowofshadows.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse038-bowofshadows.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Elite Crossbows">
<description>The crossbow has long been the weapon of choice for skilled hunters, whether the prey be animals of the forest or creatures of the night. Forged from the rarest of metals, the Ebony and Elven crossbows represent two of the most deadly ranged weapons in all of Tamriel. The quest Night Hunter starts by reading Kragrash's Letter at Ironback Hideout northwest of Solitude.
Installation Files:
ccbgssse043-crosselv.esl</description>
<image path="Images\Weapons\Elite Crossbows.jpg" />
<files>
<file source="CC Content\ccbgssse043-crosselv.esl" destination="ccbgssse043-crosselv.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse043-crosselv.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Expanded Crossbows">
<description>Available now at the Fletcher in Solitude, eight crossbows made from the finest Tamrielic materials! Choose from simple but elegant crossbows of Imperial, Orcish, Silver, or Nordic design, or high grade versions of Glass, Stalhrim, Daedric and Dragonbone. Purchase these finely assembled weapons at the Fletcher, or acquire one and learn to craft them yourself.
Created by Borx25
Installation Files:
ccffbsse002-crossbowpack.esl</description>
<image path="Images\Weapons\Expanded Crossbow Pack.jpg" />
<files>
<file source="CC Content\ccffbsse002-crossbowpack.esl" destination="ccffbsse002-crossbowpack.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Ruin's Edge">
<description>Wield this deadly dark bow, favored weapon of Syl, the Duchess of Dementia. Each arrow shot has the chance to cast a spell, like Paralyze, Silence, Demoralize, or Frenzy. Weapon is located in Stony Creek Cave far southeast of Windhelm.
Installation Files:
ccbgssse004-ruinsedge.esl</description>
<image path="Images\Weapons\Ruin's Edge.jpg" />
<files>
<file source="CC Content\ccbgssse004-ruinsedge.esl" destination="ccbgssse004-ruinsedge.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse004-ruinsedge.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
</plugins>
</group>
<group name="Misc" type="SelectAny">
<plugins order="Explicit">
<plugin name="Arcane Archer Pack">
<description>Give your hunting a magickal advantage with equipment specially designed for archers, like Telekinesis Arrows, Soul Stealer Arrows, Fire and Ice Arrows, Lightning Arrows, and a unique power that equips a Bound Quiver. Telekinesis arrows are found in The Arcanaeum in the College of Winterhold, Soul Stealer Arrows can be found in Kagrumez. All other arrows can be purchased at vendors and appear in containers.
Installation Files:
cbgssse002-exoticarrows.esl</description>
<image path="Images\Weapons\Arcane Archer Pack.jpg" />
<files>
<file source="CC Content\ccbgssse002-exoticarrows.esl" destination="ccbgssse002-exoticarrows.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Shadowrend">
<description>To obtain the legendary Shadowrend – an enchanted sword or battleaxe of tremendous power – you need only face the most worthy foe imaginable: yourself. The quest Through a Glass, Darkly starts by claiming the weapon in the hot springs near the Atronach Stone.
Quest Implemented by Unoctium
Installation Files:
ccbgssse018-shadowrend.esl</description>
<image path="Images\Weapons\Shadowrend.jpg" />
<files>
<file source="CC Content\ccbgssse018-shadowrend.esl" destination="ccbgssse018-shadowrend.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse018-shadowrend.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Staff of Hasedoki">
<description>It's said the wizard Hasedoki traveled all of Tamriel in search of his equal, before binding his soul to a staff. Through the years this mysterious weapon has changed many hands, as if warding off anyone who isn't worthy enough to claim it. Now, it's your turn. The quest The Staff of Hasedoki starts by reading the Smuggler's Trade Notes at the bandit camp west of Dragonsreach.
Quest Created by Kris Takahashi
Installation Files:
ccbgssse045-hasedoki.esl</description>
<image path="Images\Weapons\Staff of Hasedoki.jpg" />
<files>
<file source="CC Content\ccbgssse045-hasedoki.esl" destination="ccbgssse045-hasedoki.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccbgssse045-hasedoki.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Staff of Sheogorath">
<description>Symbol of office for the Madgod Sheogorath, this grotesque staff has the power to stop opponents in their tracks. Also included is a bonus artifact, the Fork of Horripilation. The quest Put a Fork in it starts by reading a Mysterious Note at The Retching Netch in Raven Rock.
Installation Files:
ccbgssse019-staffofsheogorath.esl</description>
<image path="Images\Weapons\Staff of Sheogorath.jpg" />
<files>
<file source="CC Content\ccbgssse019-staffofsheogorath.esl" destination="ccbgssse019-staffofsheogorath.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Staves">
<description>Features seven classic staves from the Elder Scrolls III Morrowind. Purchase staves with unique enchantments from Master Neloth, or buy an unenchanted staff and apply one yourself. Items appear at vendors and in chests.
Installation Files:
ccbgssse066-staves.esl</description>
<image path="Images\Weapons\Staves.jpg" />
<files>
<file source="CC Content\ccbgssse066-staves.esl" destination="ccbgssse066-staves.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
</plugins>
</group>
</optionalFileGroups>
</installStep>
<installStep name="Gameplay">
<optionalFileGroups order="Explicit">
<group name="Mechanics" type="SelectAny">
<plugins order="Explicit">
<plugin name="Survival Mode">
<description>In Survival Mode, your greatest adversary is Skyrim itself. Unrelenting cold, harsh wilderness, famine and fatigue - do you have the strength to endure? Creation can be turned on or off in Settings menu. For details, consult Help Menu.
RECOMMENDED
It's recommended that this remains enabled as it came with the Anniversary Edition free and can be disabled in the game settings.
Installation Files:
ccQDRSSE001-SurvivalMode.esl</description>
<image path="Images\Gameplay\Survival Mode.jpg" />
<files>
<file source="CC Content\ccQDRSSE001-SurvivalMode.esl" destination="ccQDRSSE001-SurvivalMode.esl" priority="0" />
</files>
<typeDescriptor>
<dependencyType>
<defaultType name="Optional"/>
<patterns>
<pattern>
<dependencies operator="And">
<fileDependency file="ccQDRSSE001-SurvivalMode.esl" state="Active"/>
</dependencies>
<type name="Recommended"/>
</pattern>
</patterns>
</dependencyType>
</typeDescriptor>
</plugin>
<plugin name="Camping">
<description>Make Skyrim that much more accommodating with this cozy movable campsite, complete with a lean-to for sleeping, campfire for warmth and some cooking, and a new fast travel marker. Creation craftable via Forge.
Installation Files:
ccqdrsse002-firewood.esl</description>
<image path="Images\Gameplay\Camping.jpg" />
<files>
<file source="CC Content\ccqdrsse002-firewood.esl" destination="ccqdrsse002-firewood.esl" priority="0" />
</files>
<typeDescriptor>
<type name="NotUsable"/>
</typeDescriptor>
</plugin>
<plugin name="Farming">
<description>Build, upgrade, and manage your own farmstead in the heart of Whiterun. Elect a steward to oversee the day-to-day and purchase upgrades such as animal pens, windmills, apiaries and stables. Whether it's building a commercial empire, growing crops, or working with animals, there are no shortage of gameplay options here. The quest The Unquiet Dead starts by investigating Goldenhills Plantation east of Rorikstead.