-
Notifications
You must be signed in to change notification settings - Fork 0
/
wescamp.rules
1454 lines (1453 loc) · 35.7 KB
/
wescamp.rules
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
create repository build-system
end repository
create repository A_Rough_Life-1.10
end repository
create repository A_Simple_Campaign-1.10
end repository
create repository After_the_Storm-1.10
end repository
create repository Archaic_Era-1.10
end repository
create repository Au_dela_de_l_horizon-1.10
end repository
create repository Bad_Moon_Rising-1.10
end repository
create repository Burning_Souls-1.10
end repository
create repository Children_of_Dragons-1.10
end repository
create repository Dov_MP_Maps-1.10
end repository
create repository Dystopia-1.10
end repository
create repository Eastern_Europe_at_War-1.10
end repository
create repository Elves_and_Wose-1.10
end repository
create repository Era_of_Four_Moons-1.10
end repository
create repository Era_of_High_Sorcery-1.10
end repository
create repository Era_of_Magic-1.10
end repository
create repository Era_of_Myths-1.10
end repository
create repository Grafted_Era-1.10
end repository
create repository Gunpowder_Age-1.10
end repository
create repository Imperial_Era-1.10
end repository
create repository Invasion_from_the_Unknown-1.10
end repository
create repository Love_To_Death-1.10
end repository
create repository Mystery_Campaign-1.10
end repository
create repository Nightmares_of_Meloen-1.10
end repository
create repository Pack_Sapient-1.10
end repository
create repository PantherLord-1.10
end repository
create repository Return_from_Captivity-1.10
end repository
create repository Roar_of_the_Woses-1.10
end repository
create repository Saving_Elensefar-1.10
end repository
create repository Swamplings-1.10
end repository
create repository Sweet_Revenge-1.10
end repository
create repository Tale_of_a_Mage-1.10
end repository
create repository The_Dark_Hordes-1.10
end repository
create repository The_Fall_of_Wesnoth-1.10
end repository
create repository The_Founding_of_Borstep-1.10
end repository
create repository The_Ice_Age-1.10
end repository
create repository The_Settlers_of_Light-1.10
end repository
create repository The_Wesnoth_Forum_Faction_Era-1.10
end repository
create repository To_Lands_Unknown-1.10
end repository
create repository Trinity-1.10
end repository
create repository Troubled_Times-1.10
end repository
create repository Valley_of_the_Ancients-1.10
end repository
create repository WesCamp_Translation_Insertion_Test-1.10
end repository
create repository Wesnoth_Lua_Pack-1.10
end repository
create repository ugly_era-1.10
end repository
create repository A_New_Order-1.4
end repository
create repository Attack_of_the_Undead-1.4
end repository
create repository Bad_Moon_Rising-1.4
end repository
create repository Children_of_Dragons-1.4
end repository
create repository Dead_Water-1.4
end repository
create repository Eliador-1.4
end repository
create repository Extended_Era-1.4
end repository
create repository Flight_Freedom_1_3-1.4
end repository
create repository Hall_of_Lame-1.4
end repository
create repository Invasion_from_the_Unknown-1.4
end repository
create repository Knight_Quest-1.4
end repository
create repository Metamorphoses-1.4
end repository
create repository On_Crimson_Wings-1.4
end repository
create repository Pack_Sapient-1.4
end repository
create repository Raajal-1.4
end repository
create repository Random_Invasion-1.4
end repository
create repository Saving_Elensefar-1.4
end repository
create repository Tale_of_a_Mage-1.4
end repository
create repository The_Final_Exam-1.4
end repository
create repository The_First_Of_The_Dragonriders-1.4
end repository
create repository The_Heist-1.4
end repository
create repository The_Three_Elves-1.4
end repository
create repository Trolls-1.4
end repository
create repository A_Rough_Life-1.6
end repository
create repository Alfhelm-1.6
end repository
create repository An_Ordinary_Adventure-1.6
end repository
create repository Bad_Moon_Rising-1.6
end repository
create repository Dead_Water-1.6
end repository
create repository Dreams_of_Urduk-1.6
end repository
create repository Dungeon_Wars_Creepfest-1.6
end repository
create repository Elf_War-1.6
end repository
create repository Epic_of_Vaniyera-1.6
end repository
create repository Era_of_Strife-1.6
end repository
create repository Era_of_the_Future-1.6
end repository
create repository Extended_Era-1.6
end repository
create repository Fall_of_Silvium-1.6
end repository
create repository Feudal_Era-1.6
end repository
create repository Flight_Freedom_1_5-1.6
end repository
create repository Galis_Contract-1.6
end repository
create repository Imperial_Era-1.6
end repository
create repository Insane_Hermit-1.6
end repository
create repository Invasion_from_the_Unknown-1.6
end repository
create repository KKSlider_Map_Pack-1.6
end repository
create repository Missing_Scepter-1.6
end repository
create repository Ooze_Mini_Campaign-1.6
end repository
create repository Rebellion_During_the_Dark_Age-1.6
end repository
create repository Temples_Of_The_Nagas-1.6
end repository
create repository The_Dark_Hordes-1.6
end repository
create repository The_Fall_of_Wesnoth-1.6
end repository
create repository The_Final_Exam-1.6
end repository
create repository Troubled_Times-1.6
end repository
create repository Up_From_Slavery-1.6
end repository
create repository Wild_Era-1.6
end repository
create repository torneo_wif_2009-1.6
end repository
create repository Era_of_the_Future-1.7
end repository
create repository Invasion_from_the_Unknown-1.7
end repository
create repository Rebellion_During_the_Dark_Age-1.7
end repository
create repository The_Fall_of_Wesnoth-1.7
end repository
create repository The_Final_Exam-1.7
end repository
create repository 2p_campaign_battle_system-1.8
end repository
create repository A_New_Order-1.8
end repository
create repository A_Rough_Life-1.8
end repository
create repository After_the_Storm-1.8
end repository
create repository Alfhelm-1.8
end repository
create repository All_About_Giles-1.8
end repository
create repository Archaic_Era-1.8
end repository
create repository Bad_Moon_Rising-1.8
end repository
create repository Brand_the_brave-1.8
end repository
create repository Brave_Wings-1.8
end repository
create repository Children_of_Dragons-1.8
end repository
create repository Danse_Macabre-1.8
end repository
create repository Dead_Water-1.8
end repository
create repository Dungeon_Wars_Creepfest-1.8
end repository
create repository Eastern_Europe_at_War-1.8
end repository
create repository Elves_and_Wose-1.8
end repository
create repository Elvish_Dynasty-1.8
end repository
create repository Epic_of_Vaniyera-1.8
end repository
create repository Era_of_Four_Moons-1.8
end repository
create repository Era_of_High_Sorcery-1.8
end repository
create repository Era_of_Magic-1.8
end repository
create repository Era_of_Myths-1.8
end repository
create repository Era_of_Strife-1.8
end repository
create repository Era_of_the_Future-1.8
end repository
create repository Extended_Era-1.8
end repository
create repository Fall_of_Silvium-1.8
end repository
create repository Fate_of_a_Princess-1.8
end repository
create repository Flight_Freedom-1.8
end repository
create repository Galis_Contract-1.8
end repository
create repository Grafted_Era-1.8
end repository
create repository Gunpowder_Age-1.8
end repository
create repository High_Seas_Era-1.8
end repository
create repository Imperial_Era-1.8
end repository
create repository Invasion_from_the_Unknown-1.8
end repository
create repository Journey_to_the_East-1.8
end repository
create repository Kromire-1.8
end repository
create repository Love_To_Death-1.8
end repository
create repository MAP-1.8
end repository
create repository Maps_by_Inanna-1.8
end repository
create repository Middle_Ages-1.8
end repository
create repository Mine_Rails-1.8
end repository
create repository Nightmares_of_Meloen-1.8
end repository
create repository North_Wind-1.8
end repository
create repository Ooze_Mini_Campaign-1.8
end repository
create repository Pack_Sapient-1.8
end repository
create repository Rebellion_During_the_Dark_Age-1.8
end repository
create repository Return_from_Captivity-1.8
end repository
create repository Roar_of_the_Woses-1.8
end repository
create repository Royal_Death-1.8
end repository
create repository SXC_Mikael-1.8
end repository
create repository Saving_Elensefar-1.8
end repository
create repository Story_of_Wose-1.8
end repository
create repository Swamplings-1.8
end repository
create repository TCG-1.8
end repository
create repository Tale_of_a_Mage-1.8
end repository
create repository Temples_Of_The_Nagas-1.8
end repository
create repository The_Cost_Of_Living-1.8
end repository
create repository The_Eight_Of_Cembulad-1.8
end repository
create repository The_Final_Exam-1.8
end repository
create repository The_Foolish_Hero-1.8
end repository
create repository The_Founding_of_Alduin_Isle-1.8
end repository
create repository The_Founding_of_Borstep-1.8
end repository
create repository The_Southern_War-1.8
end repository
create repository To_Lands_Unknown-1.8
end repository
create repository Tower_Defense-1.8
end repository
create repository Tribes_of_the_North-1.8
end repository
create repository Trinity-1.8
end repository
create repository Troubled_Times-1.8
end repository
create repository Ucieczka_z_Podziemi-1.8
end repository
create repository Up_From_Slavery-1.8
end repository
create repository Valley_of_the_Ancients-1.8
end repository
create repository WCE-1.8
end repository
create repository betrayal_of_thaeylan-1.8
end repository
create repository torneo_wif_2010-1.8
end repository
create repository torneo_wif_2011-1.8
end repository
create repository After_the_Storm-trunk
end repository
create repository Alfhelm-trunk
end repository
create repository Bad_Moon_Rising-trunk
end repository
create repository Dead_Water-trunk
end repository
create repository Epic_of_Vaniyera-trunk
end repository
create repository Era_of_Strife-trunk
end repository
create repository Fall_of_Silvium-trunk
end repository
create repository Feudal_Era-trunk
end repository
create repository Flight_Freedom_1_5-trunk
end repository
create repository Galis_Contract-trunk
end repository
create repository Imperial_Era-trunk
end repository
create repository Invasion_from_the_Unknown-trunk
end repository
create repository Pack_Sapient-trunk
end repository
create repository The_Dark_Hordes-trunk
end repository
create repository Up_From_Slavery-trunk
end repository
create repository Wild_Era-trunk
end repository
create repository Dark_Elves-root
end repository
create repository Imperial_Era-root
end repository
create repository Mage_Republic-root
end repository
create repository Mystery_Campaign-root
end repository
create repository The_Unstoppable_Legion-root
end repository
create repository Unrest-root
end repository
create repository A_New_Order-root
end repository
create repository An_Orcish_Incursion-root
end repository
create repository Attack_of_the_Undead-root
end repository
create repository Children_of_Dragons-root
end repository
create repository Delfadors_Memoirs-root
end repository
create repository Descent-root
end repository
create repository Eliador-root
end repository
create repository Extended_Era-root
end repository
create repository Extended_Era_xtra_1.2-root
end repository
create repository Flight_Freedom-root
end repository
create repository Invasion_from_the_Unknown-root
end repository
create repository Legend_of_Wesmere-root
end repository
create repository Liberty-root
end repository
create repository Northern_Rebirth-root
end repository
create repository Orcish_Incursion-root
end repository
create repository Pack_Sapient-root
end repository
create repository Saving_Elensefar-root
end repository
create repository Sceptre_of_Fire-root
end repository
create repository Son_Of_The_Black_Eye-root
end repository
create repository The_Dark_Hordes-root
end repository
create repository The_Heist-root
end repository
create repository The_South_Guard-root
end repository
create repository Two_Brothers-root
end repository
create repository Under_the_Burning_Suns-root
end repository
create repository Wesnoth_Holdem-root
end repository
create repository Legend_of_Wesmere-1.4
end repository
create repository Legend_of_Wesmere-trunk
end repository
create repository Rise-1.4
end repository
create repository The_Life_Of_A_Mage-1.4
end repository
create repository The_Silver_Lands-1.8
end repository
match /branches/build-system/
repository build-system
branch master
end match
match /branches/1.10/A_Rough_Life/
repository A_Rough_Life-1.10
branch master
end match
match /branches/1.10/A_Simple_Campaign/
repository A_Simple_Campaign-1.10
branch master
end match
match /branches/1.10/After_the_Storm/
repository After_the_Storm-1.10
branch master
end match
match /branches/1.10/Archaic_Era/
repository Archaic_Era-1.10
branch master
end match
match /branches/1.10/Au_dela_de_l_horizon/
repository Au_dela_de_l_horizon-1.10
branch master
end match
match /branches/1.10/Bad_Moon_Rising/
repository Bad_Moon_Rising-1.10
branch master
end match
match /branches/1.10/Burning_Souls/
repository Burning_Souls-1.10
branch master
end match
match /branches/1.10/Children_of_Dragons/
repository Children_of_Dragons-1.10
branch master
end match
match /branches/1.10/Dov_MP_Maps/
repository Dov_MP_Maps-1.10
branch master
end match
match /branches/1.10/Dystopia/
repository Dystopia-1.10
branch master
end match
match /branches/1.10/Eastern_Europe_at_War/
repository Eastern_Europe_at_War-1.10
branch master
end match
match /branches/1.10/Elves_and_Wose/
repository Elves_and_Wose-1.10
branch master
end match
match /branches/1.10/Era_of_Four_Moons/
repository Era_of_Four_Moons-1.10
branch master
end match
match /branches/1.10/Era_of_High_Sorcery/
repository Era_of_High_Sorcery-1.10
branch master
end match
match /branches/1.10/Era_of_Magic/
repository Era_of_Magic-1.10
branch master
end match
match /branches/1.10/Era_of_Myths/
repository Era_of_Myths-1.10
branch master
end match
match /branches/1.10/Grafted_Era/
repository Grafted_Era-1.10
branch master
end match
match /branches/1.10/Gunpowder_Age/
repository Gunpowder_Age-1.10
branch master
end match
match /branches/1.10/Imperial_Era/
repository Imperial_Era-1.10
branch master
end match
match /branches/1.10/Invasion_from_the_Unknown/
repository Invasion_from_the_Unknown-1.10
branch master
end match
match /branches/1.10/Love_To_Death/
repository Love_To_Death-1.10
branch master
end match
match /branches/1.10/Mystery_Campaign/
repository Mystery_Campaign-1.10
branch master
end match
match /branches/1.10/Nightmares_of_Meloen/
repository Nightmares_of_Meloen-1.10
branch master
end match
match /branches/1.10/Pack_Sapient/
repository Pack_Sapient-1.10
branch master
end match
match /branches/1.10/PantherLord/
repository PantherLord-1.10
branch master
end match
match /branches/1.10/Return_from_Captivity/
repository Return_from_Captivity-1.10
branch master
end match
match /branches/1.10/Roar_of_the_Woses/
repository Roar_of_the_Woses-1.10
branch master
end match
match /branches/1.10/Saving_Elensefar/
repository Saving_Elensefar-1.10
branch master
end match
match /branches/1.10/Swamplings/
repository Swamplings-1.10
branch master
end match
match /branches/1.10/Sweet_Revenge/
repository Sweet_Revenge-1.10
branch master
end match
match /branches/1.10/Tale_of_a_Mage/
repository Tale_of_a_Mage-1.10
branch master
end match
match /branches/1.10/The_Dark_Hordes/
repository The_Dark_Hordes-1.10
branch master
end match
match /branches/1.10/The_Fall_of_Wesnoth/
repository The_Fall_of_Wesnoth-1.10
branch master
end match
match /branches/1.10/The_Founding_of_Borstep/
repository The_Founding_of_Borstep-1.10
branch master
end match
match /branches/1.10/The_Ice_Age/
repository The_Ice_Age-1.10
branch master
end match
match /branches/1.10/The_Settlers_of_Light/
repository The_Settlers_of_Light-1.10
branch master
end match
match /branches/1.10/The_Wesnoth_Forum_Faction_Era/
repository The_Wesnoth_Forum_Faction_Era-1.10
branch master
end match
match /branches/1.10/To_Lands_Unknown/
repository To_Lands_Unknown-1.10
branch master
end match
match /branches/1.10/Trinity/
repository Trinity-1.10
branch master
end match
match /branches/1.10/Troubled_Times/
repository Troubled_Times-1.10
branch master
end match
match /branches/1.10/Valley_of_the_Ancients/
repository Valley_of_the_Ancients-1.10
branch master
end match
match /branches/1.10/WesCamp_Translation_Insertion_Test/
repository WesCamp_Translation_Insertion_Test-1.10
branch master
end match
match /branches/1.10/Wesnoth_Lua_Pack/
repository Wesnoth_Lua_Pack-1.10
branch master
end match
match /branches/1.10/ugly_era/
repository ugly_era-1.10
branch master
end match
match /branches/1.4/A_New_Order/
repository A_New_Order-1.4
branch master
end match
match /branches/1.4/Attack_of_the_Undead/
repository Attack_of_the_Undead-1.4
branch master
end match
match /branches/1.4/Bad_Moon_Rising/
repository Bad_Moon_Rising-1.4
branch master
end match
match /branches/1.4/Children_of_Dragons/
repository Children_of_Dragons-1.4
branch master
end match
match /branches/1.4/Dead_Water/
repository Dead_Water-1.4
branch master
end match
match /branches/1.4/Eliador/
repository Eliador-1.4
branch master
end match
match /branches/1.4/Extended_Era/
repository Extended_Era-1.4
branch master
end match
match /branches/1.4/Flight_Freedom_1_3/
repository Flight_Freedom_1_3-1.4
branch master
end match
match /branches/1.4/Hall_of_Lame/
repository Hall_of_Lame-1.4
branch master
end match
match /branches/1.4/Invasion_from_the_Unknown/
repository Invasion_from_the_Unknown-1.4
branch master
end match
match /branches/1.4/Knight_Quest/
repository Knight_Quest-1.4
branch master
end match
match /branches/1.4/Metamorphoses/
repository Metamorphoses-1.4
branch master
end match
match /branches/1.4/On_Crimson_Wings/
repository On_Crimson_Wings-1.4
branch master
end match
match /branches/1.4/Pack_Sapient/
repository Pack_Sapient-1.4
branch master
end match
match /branches/1.4/Raajal/
repository Raajal-1.4
branch master
end match
match /branches/1.4/Random_Invasion/
repository Random_Invasion-1.4
branch master
end match
match /branches/1.4/Saving_Elensefar/
repository Saving_Elensefar-1.4
branch master
end match
match /branches/1.4/Tale_of_a_Mage/
repository Tale_of_a_Mage-1.4
branch master
end match
match /branches/1.4/The_Final_Exam/
repository The_Final_Exam-1.4
branch master
end match
match /branches/1.4/The_First_Of_The_Dragonriders/
repository The_First_Of_The_Dragonriders-1.4
branch master
end match
match /branches/1.4/The_Heist/
repository The_Heist-1.4
branch master
end match
match /branches/1.4/The_Three_Elves/
repository The_Three_Elves-1.4
branch master
end match
match /branches/1.4/Trolls/
repository Trolls-1.4
branch master
end match
match /branches/1.6/A_Rough_Life/
repository A_Rough_Life-1.6
branch master
end match
match /branches/1.6/Alfhelm/
repository Alfhelm-1.6
branch master
end match
match /branches/1.6/An_Ordinary_Adventure/
repository An_Ordinary_Adventure-1.6
branch master
end match
match /branches/1.6/Bad_Moon_Rising/
repository Bad_Moon_Rising-1.6
branch master
end match
match /branches/1.6/Dead_Water/
repository Dead_Water-1.6
branch master
end match
match /branches/1.6/Dreams_of_Urduk/
repository Dreams_of_Urduk-1.6
branch master
end match
match /branches/1.6/Dungeon_Wars_Creepfest/
repository Dungeon_Wars_Creepfest-1.6
branch master
end match
match /branches/1.6/Elf_War/
repository Elf_War-1.6
branch master
end match
match /branches/1.6/Epic_of_Vaniyera/
repository Epic_of_Vaniyera-1.6
branch master
end match
match /branches/1.6/Era_of_Strife/
repository Era_of_Strife-1.6
branch master
end match
match /branches/1.6/Era_of_the_Future/
repository Era_of_the_Future-1.6
branch master
end match
match /branches/1.6/Extended_Era/
repository Extended_Era-1.6
branch master
end match
match /branches/1.6/Fall_of_Silvium/
repository Fall_of_Silvium-1.6
branch master
end match
match /branches/1.6/Feudal_Era/
repository Feudal_Era-1.6
branch master
end match
match /branches/1.6/Flight_Freedom_1_5/
repository Flight_Freedom_1_5-1.6
branch master
end match
match /branches/1.6/Galis_Contract/
repository Galis_Contract-1.6
branch master
end match
match /branches/1.6/Imperial_Era/
repository Imperial_Era-1.6
branch master
end match
match /branches/1.6/Insane_Hermit/
repository Insane_Hermit-1.6
branch master
end match
match /branches/1.6/Invasion_from_the_Unknown/
repository Invasion_from_the_Unknown-1.6
branch master
end match
match /branches/1.6/KKSlider_Map_Pack/
repository KKSlider_Map_Pack-1.6
branch master
end match
match /branches/1.6/Missing_Scepter/
repository Missing_Scepter-1.6
branch master
end match
match /branches/1.6/Ooze_Mini_Campaign/
repository Ooze_Mini_Campaign-1.6
branch master
end match
match /branches/1.6/Rebellion_During_the_Dark_Age/
repository Rebellion_During_the_Dark_Age-1.6
branch master
end match
match /branches/1.6/Temples_Of_The_Nagas/
repository Temples_Of_The_Nagas-1.6
branch master
end match
match /branches/1.6/The_Dark_Hordes/
repository The_Dark_Hordes-1.6
branch master
end match
match /branches/1.6/The_Fall_of_Wesnoth/
repository The_Fall_of_Wesnoth-1.6
branch master
end match
match /branches/1.6/The_Final_Exam/
repository The_Final_Exam-1.6
branch master
end match
match /branches/1.6/Troubled_Times/
repository Troubled_Times-1.6
branch master
end match
match /branches/1.6/Up_From_Slavery/
repository Up_From_Slavery-1.6
branch master
end match
match /branches/1.6/Wild_Era/
repository Wild_Era-1.6
branch master
end match
match /branches/1.6/torneo_wif_2009/
repository torneo_wif_2009-1.6
branch master
end match
match /branches/1.7/Era_of_the_Future/
repository Era_of_the_Future-1.7
branch master
end match
match /branches/1.7/Invasion_from_the_Unknown/
repository Invasion_from_the_Unknown-1.7
branch master
end match
match /branches/1.7/Rebellion_During_the_Dark_Age/
repository Rebellion_During_the_Dark_Age-1.7
branch master
end match
match /branches/1.7/The_Fall_of_Wesnoth/
repository The_Fall_of_Wesnoth-1.7
branch master
end match
match /branches/1.7/The_Final_Exam/
repository The_Final_Exam-1.7
branch master
end match
match /branches/1.8/2p_campaign_battle_system/
repository 2p_campaign_battle_system-1.8
branch master
end match
match /branches/1.8/A_New_Order/
repository A_New_Order-1.8
branch master
end match
match /branches/1.8/A_Rough_Life/
repository A_Rough_Life-1.8
branch master
end match
match /branches/1.8/After_the_Storm/
repository After_the_Storm-1.8
branch master
end match
match /branches/1.8/Alfhelm/
repository Alfhelm-1.8
branch master
end match
match /branches/1.8/All_About_Giles/
repository All_About_Giles-1.8
branch master
end match
match /branches/1.8/Archaic_Era/
repository Archaic_Era-1.8
branch master
end match
match /branches/1.8/Bad_Moon_Rising/
repository Bad_Moon_Rising-1.8
branch master
end match
match /branches/1.8/Brand_the_brave/
repository Brand_the_brave-1.8
branch master
end match
match /branches/1.8/Brave_Wings/
repository Brave_Wings-1.8
branch master
end match
match /branches/1.8/Children_of_Dragons/
repository Children_of_Dragons-1.8
branch master
end match
match /branches/1.8/Danse_Macabre/
repository Danse_Macabre-1.8
branch master
end match
match /branches/1.8/Dead_Water/
repository Dead_Water-1.8
branch master
end match
match /branches/1.8/Dungeon_Wars_Creepfest/
repository Dungeon_Wars_Creepfest-1.8
branch master
end match
match /branches/1.8/Eastern_Europe_at_War/
repository Eastern_Europe_at_War-1.8
branch master
end match
match /branches/1.8/Elves_and_Wose/
repository Elves_and_Wose-1.8
branch master
end match
match /branches/1.8/Elvish_Dynasty/
repository Elvish_Dynasty-1.8
branch master
end match
match /branches/1.8/Epic_of_Vaniyera/
repository Epic_of_Vaniyera-1.8
branch master
end match
match /branches/1.8/Era_of_Four_Moons/
repository Era_of_Four_Moons-1.8
branch master
end match
match /branches/1.8/Era_of_High_Sorcery/
repository Era_of_High_Sorcery-1.8
branch master
end match
match /branches/1.8/Era_of_Magic/
repository Era_of_Magic-1.8
branch master
end match
match /branches/1.8/Era_of_Myths/
repository Era_of_Myths-1.8
branch master
end match
match /branches/1.8/Era_of_Strife/
repository Era_of_Strife-1.8
branch master
end match
match /branches/1.8/Era_of_the_Future/
repository Era_of_the_Future-1.8
branch master
end match
match /branches/1.8/Extended_Era/
repository Extended_Era-1.8
branch master
end match
match /branches/1.8/Fall_of_Silvium/
repository Fall_of_Silvium-1.8
branch master
end match
match /branches/1.8/Fate_of_a_Princess/
repository Fate_of_a_Princess-1.8
branch master
end match
match /branches/1.8/Flight_Freedom/
repository Flight_Freedom-1.8
branch master
end match
match /branches/1.8/Galis_Contract/
repository Galis_Contract-1.8
branch master
end match
match /branches/1.8/Grafted_Era/
repository Grafted_Era-1.8
branch master
end match
match /branches/1.8/Gunpowder_Age/