This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jptracks.nfo.bak
9720 lines (8622 loc) · 382 KB
/
jptracks.nfo.bak
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
# 0 "jptracksd.hnfo"
# 0 "<built-in>"
# 0 "<command-line>"
# 1 "jptracksd.hnfo"
# 1 "nfo/nfo_header.pnfo" 1
// Automatically generated by GRFCODEC. Do not modify!
// (Info version 7)
// Escapes: 2+ 2- 2< 2> 2u< 2u> 2/ 2% 2u/ 2u% 2* 2& 2| 2^ 2sto = 2s 2rst = 2r 2psto 2ror = 2rot 2cmp 2ucmp 2<< 2u>> 2>>
// Escapes: 71 70 7= 7! 7< 7> 7G 7g 7gG 7GG 7gg 7c 7C
// Escapes: D= = DR D+ = DF D- = DC Du* = DM D* = DnF Du<< = DnC D<< = DO D& D| Du/ D/ Du% D%
// Format: spritenum pcxfile xpos ypos compression ysize xsize xrel yrel
0 * 4 43 10 00 00
// Escapes: 71 70 7= 7! 7< 7> 7G 7g 7gG 7GG 7gg 7c 7C
// Escapes: D= D+ D- Du* D* Du<< D<< D& D| Du/ D/ Du% D%
// Escapes: DR DF DC DM DnF DnC DO
// Format: spritenum pcxfile xpos ypos compression ysize xsize xrel yrel
//@@WARNING DISABLE 100
//@@WARNING DISABLE 144
# 2 "jptracksd.hnfo" 2
# 1 "nfo/action14.pnfo" 1
//check TTDPatch or OpenTTD
1 * 9 09 9D 04 \7= 01 00 00 00 01
2 * 11 0B 03 7F 06 "r20960" 00
//check OpenTTD version
3 * 9 09 A1 04 \7= FF FF FF FF 02
4 * 9 09 A1 04 \7< \w20959 00 11 01
5 * 6 09 9A 01 \7= FF 01
6 * 11 0B 03 7F 06 "r20960" 00
//VERSION NUMBER
7 * 19 14 "C" "INFO" "B" "VRSN" \w4 \d320 00 00
//MINIMAL COMPATIBLE VERSION
8 * 19 14 "C" "INFO" "B" "MINV" \w4 \d300 00 00
//NUMBER OF PARAMETERS
10 * 16 14 "C" "INFO" "B" "NPAR" \w1 \b11 00 00
//PARAMETER NAMES AND DESCRIPTIONS
11 * 45 14 "C" "INFO" "C" "PARA" "C" \d0 "T" "NAME" 7F "Mode" 00
"T" "DESC" 7F "Choose between generic or country-specific modes. When set to 'automatic', the Japanese mode is used only if the Japanese train set is used.\n Japanese mode is significantly different from international mode. The country-specific settings mostly concern speed limits and some graphical details." 00
00 00 00 00
11 * 45 14 "C" "INFO" "C" "PARA" "C" \d1 "T" "NAME" 7F "Track selection" 00
"T" "DESC" 7F "Choose how many track types to play with. In the reduced setting, the urban track types are disabled. In the minimal setting, only track type for each gauge and electrification system is present, without speed limits." 00
00 00 00 00
14 * 104 14 "C" "INFO" "C" "PARA" "C" \d2 "T" "NAME" 7F "Finescale tracks" 00
"T" "DESC" 7F "Use narrower track sprites." 00
00 00 00 00
11 * 45 14 "C" "INFO" "C" "PARA" "C" \d3 "T" "NAME" 7F "Construction costs" 00
00 00 00 00
11 * 45 14 "C" "INFO" "C" "PARA" "C" \d4 "T" "NAME" 7F "Maintenance costs" 00
"T" "DESC" 7F "You must activate 'Advanced Settings -> Economy -> Infrastructure maintenance' for this setting to take effect." 00
00 00 00 00
16 * 185 14 "C" "INFO" "C" "PARA" "C" \d5 "T" "NAME" 7F "Use custom tunnel portals" 00
"T" "DESC" 7F "If this setting is disabled, the default graphics for tunnel portals will be used instead of the ones provided by this set." 00
00 00 00 00
16 * 185 14 "C" "INFO" "C" "PARA" "C" \d6 "T" "NAME" 7F "Use custom catenary" 00
"T" "DESC" 7F "If this setting is disabled, the default graphics for catenary wire and poles will be used instead of the ones provided by this set." 00
00 00 00 00
17 * 172 14 "C" "INFO" "C" "PARA" "C" \d7 "T" "NAME" 7F "Use custom depots" 00
"T" "DESC" 7F "If this setting is disabled, the default graphics for train depots will be used instead of the ones provided by this set." 00
00 00 00 00
18 * 98 14 "C" "INFO" "C" "PARA" "C" \d8 "T" "NAME" 7F "Fences" 00
"T" "DESC" 7F "Replaces or deactivates the default fences for railtracks." 00
00 00 00 00
19 * 117 14 "C" "INFO" "C" "PARA" "C" \d9 "T" "NAME" 7F "Use company colors" 00
"T" "DESC" 7F "Depots and fences use company colors if this option is enabled." 00
00 00 00 00
19 * 117 14 "C" "INFO" "C" "PARA" "C" \d10 "T" "NAME" 7F "GUI elements" 00
"T" "DESC" 7F "Choose GUI elements for original graphics or OpenGFX." 00
00 00 00 00
//TYPES OF PARAMETERS
31 * 28 14 "C" "INFO" "C" "PARA" "C" \d2 "B" "TYPE" \w1 1 00 00 00 00
31 * 28 14 "C" "INFO" "C" "PARA" "C" \d5 "B" "TYPE" \w1 1 00 00 00 00
32 * 28 14 "C" "INFO" "C" "PARA" "C" \d6 "B" "TYPE" \w1 1 00 00 00 00
32 * 28 14 "C" "INFO" "C" "PARA" "C" \d7 "B" "TYPE" \w1 1 00 00 00 00
33 * 28 14 "C" "INFO" "C" "PARA" "C" \d9 "B" "TYPE" \w1 1 00 00 00 00
//PARAMETER LIMITS
36 * 35 14 "C" "INFO" "C" "PARA" "C" \d0 "B" "LIMI" \w8 \d0 \d4 00 00 00 00
36 * 35 14 "C" "INFO" "C" "PARA" "C" \d1 "B" "LIMI" \w8 \d0 \d2 00 00 00 00
37 * 35 14 "C" "INFO" "C" "PARA" "C" \d2 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
38 * 35 14 "C" "INFO" "C" "PARA" "C" \d3 "B" "LIMI" \w8 \d0 \d4 00 00 00 00
39 * 35 14 "C" "INFO" "C" "PARA" "C" \d4 "B" "LIMI" \w8 \d0 \d4 00 00 00 00
40 * 35 14 "C" "INFO" "C" "PARA" "C" \d5 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
40 * 35 14 "C" "INFO" "C" "PARA" "C" \d6 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
41 * 35 14 "C" "INFO" "C" "PARA" "C" \d7 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
42 * 35 14 "C" "INFO" "C" "PARA" "C" \d8 "B" "LIMI" \w8 \d0 \d3 00 00 00 00
44 * 35 14 "C" "INFO" "C" "PARA" "C" \d9 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
44 * 35 14 "C" "INFO" "C" "PARA" "C" \d10 "B" "LIMI" \w8 \d0 \d1 00 00 00 00
//PARAMETER VALUE TEXTS
46 * 91 14 "C" "INFO" "C" "PARA" "C" \d0 "C" "VALU" "T" \d0 7F "Automatic (Japanese/International)" 00 "T" \d1 7F "International" 00 "T" \d2 7F "German" 00 "T" \d3 7F "British" 00 "T" \d4 7F "North American" 00
00 00 00 00 00
46 * 91 14 "C" "INFO" "C" "PARA" "C" \d1 "C" "VALU" "T" \d0 7F "Full" 00 "T" \d1 7F "Reduced" 00 "T" \d2 7F "Minimal" 00
00 00 00 00 00
46 * 91 14 "C" "INFO" "C" "PARA" "C" \d3 "C" "VALU" "T" \d0 7F "very low" 00 "T" \d1 7F "low" 00 "T" \d2 7F "normal" 00 "T" \d3 7F "high" 00 "T" \d4 7F "very high" 00
00 00 00 00 00
46 * 91 14 "C" "INFO" "C" "PARA" "C" \d4 "C" "VALU" "T" \d0 7F "very low" 00 "T" \d1 7F "low" 00 "T" \d2 7F "normal" 00 "T" \d3 7F "high" 00 "T" \d4 7F "very high" 00
00 00 00 00 00
50 * 164 14 "C" "INFO" "C" "PARA" "C" \d8 "C" "VALU" "T" \d0 7F "none" 00 "T" \d1 7F "unchanged (original TTD if not changed by another set)" 00 "T" \d2 7F "only for urban and highspeed tracks" 00 "T" \d3 7F "for all railtypes" 00
00 00 00 00 00
50 * 164 14 "C" "INFO" "C" "PARA" "C" \d10 "C" "VALU" "T" \d0 7F "Original graphics" 00 "T" \d1 7F "OpenGFX" 00
00 00 00 00 00
//DEFAULT VALUES FOR PARAMETERS
51 * 31 14 "C" "INFO" "C" "PARA" "C" \d0 "B" "DFLT" \w4 \d0 00 00 00 00
51 * 31 14 "C" "INFO" "C" "PARA" "C" \d1 "B" "DFLT" \w4 \d0 00 00 00 00
52 * 31 14 "C" "INFO" "C" "PARA" "C" \d2 "B" "DFLT" \w4 \d0 00 00 00 00
53 * 31 14 "C" "INFO" "C" "PARA" "C" \d3 "B" "DFLT" \w4 \d2 00 00 00 00
54 * 31 14 "C" "INFO" "C" "PARA" "C" \d4 "B" "DFLT" \w4 \d2 00 00 00 00
55 * 31 14 "C" "INFO" "C" "PARA" "C" \d5 "B" "DFLT" \w4 \d1 00 00 00 00
55 * 31 14 "C" "INFO" "C" "PARA" "C" \d6 "B" "DFLT" \w4 \d1 00 00 00 00
56 * 31 14 "C" "INFO" "C" "PARA" "C" \d7 "B" "DFLT" \w4 \d1 00 00 00 00
57 * 31 14 "C" "INFO" "C" "PARA" "C" \d8 "B" "DFLT" \w4 \d3 00 00 00 00
58 * 31 14 "C" "INFO" "C" "PARA" "C" \d9 "B" "DFLT" \w4 \d1 00 00 00 00
59 * 31 14 "C" "INFO" "C" "PARA" "C" \d10 "B" "DFLT" \w4 \d0 00 00 00 00
# 3 "jptracksd.hnfo" 2
//#include "nfo/action14_uk.pnfo"
//#include "nfo/action14_de.pnfo"
//* we used to need to specify the palette...
//* but now we have OpenTTD!
# 1 "nfo/action14dospal.pnfo" 1
//PALETTE INFO
9 * 16 14 "C" "INFO" "B" "PALS" \w1 "D" 00 00
# 8 "jptracksd.hnfo" 2
# 1 "nfo/action8.pnfo" 1
61 * 168 08 07 "DP" 30 00 "Japan Set3: Tracks" 00
"\94Japan \8BSet\8A\943: Tracks\95 - v3.2 - January 2016\98\n"
"Drawn by \95Dandan, Onodera, Sanchimaru\98\n"
"Some graphics based on OpenGFX graphics.\n"
"Coded by \95Dandan\98, \95stevenh" 00
# 9 "jptracksd.hnfo" 2
# 1 "nfo/header.pnfo" 1
//
//PROCESS PARAMETERS
//
//SET DEFAULT VALUES.
//should be done by action 14, but we want to be on the safe side, as there appears to have been a bug at some point
62 * 9 0D 00 80 FF 00 00 00 00 00
63 * 9 0D 01 80 FF 00 00 00 00 00
64 * 9 0D 02 80 FF 00 00 00 00 00
65 * 9 0D 03 80 FF 02 00 00 00 00
66 * 9 0D 04 80 FF 02 00 00 00 00
67 * 9 0D 05 80 FF 01 00 00 00 00
67 * 9 0D 06 80 FF 01 00 00 00 00
68 * 9 0D 07 80 FF 01 00 00 00 00
69 * 9 0D 08 80 FF 03 00 00 00 00
70 * 9 0D 09 80 FF 01 00 00 00 00
71 * 9 0D 0A 80 FF 00 00 00 00 00
//PARAMETER 10: JAPANESE MODE
73 * 6 09 00 01 \7! 00 01
72 * 9 09 88 04 \7GG "SZ" 0D 00 02
74 * 9 0D 10 00 FF 00 01 00 00 00
73 * 6 09 9A 01 \7= FF 01
74 * 9 0D 10 00 FF 00 00 00 00 00
//PARAMETER 11: TRACK SELECTION
0 * 0 09 01 01 \7= 02 05 //if minimal, skip to end
0 * 0 09 01 01 \7= 01 02 //if reduced, skip 2 sprites
0 * 0 0D 11 00 FF 00 03 00 00 00 //'full', set 11 to 03 (i.e. both bits set)
0 * 0 09 9A 01 \7= FF 03 //skip to end
0 * 0 0D 11 00 FF 00 02 00 00 00 //'reduced' set bit 1
0 * 0 09 9A 01 \7= FF 01 //skip to end
0 * 0 0D 11 00 FF 00 00 00 00 00 //'minimal', set no bits.
# 10 "jptracksd.hnfo" 2
# 1 "nfo/strings_useng.pnfo" 1
//
// TEXT STRINGS
//
-1 * 0 0C "This is the start of this language file."
// JAPANESE MODE
161 * 6 09 10 01 \7= 01 F0
//Build rail toolbar caption (09)
92 * 33 04 10 FF 01 10 DC 94 "Narrow gauge line" 00
92 * 33 04 10 FF 01 11 DC 94 "Narrow gauge line" 00
92 * 33 04 10 FF 01 12 DC 94 "Narrow gauge line (electrified)" 00
92 * 33 04 10 FF 01 13 DC 94 "Narrow gauge modern line (electrified)" 00
92 * 33 04 10 FF 01 14 DC 94 "Standard gauge line (electrified)" 00
92 * 33 04 10 FF 01 15 DC 94 "Standard gauge modern line (electrified)" 00
92 * 33 04 10 FF 01 16 DC 94 "Shinkansen highspeed line (electrified)" 00
92 * 33 04 10 FF 01 17 DC 94 "Shinkansen modern highspeed line (electrified)" 00
92 * 33 04 10 FF 01 18 DC 94 "Standard gauge line (3rd rail powered)" 00
92 * 33 04 10 FF 01 19 DC 94 "Standard gauge urban line (3rd rail powered)" 00
92 * 33 04 10 FF 01 1B DC 94 "Narrow gauge urban line (electrified)" 00
92 * 33 04 10 FF 01 1C DC 94 "Standard gauge urban line (electrified)" 00
92 * 33 04 10 FF 01 1D DC 94 "Standard gauge line" 00
//Rail construction dropdown text (0A)
//NLOW/NGRL
92 * 33 04 10 FF 01 20 DC "Narrow gauge line\94" 00
92 * 33 04 10 FF 01 21 DC "Narrow gauge line\94" 00
92 * 33 04 10 FF 01 22 DC "Narrow gauge line \95(electrified)\94" 00
92 * 33 04 10 FF 01 23 DC "Narrow gauge modern line \95(electrified)\94" 00
92 * 33 04 10 FF 01 24 DC "Standard gauge line \95(electrified)\94" 00
92 * 33 04 10 FF 01 25 DC "Standard gauge modern line \95(electrified)\94" 00
92 * 33 04 10 FF 01 26 DC "Shinkansen highspeed line \95(electrified)\94" 00
92 * 33 04 10 FF 01 27 DC "Shinkansen modern highspeed line \95(electrified)\94" 00
92 * 33 04 10 FF 01 28 DC "Standard gauge line \8F(3rd rail powered)\94" 00
92 * 33 04 10 FF 01 29 DC "Standard gauge urban line \8F(3rd rail powered)\94" 00
92 * 33 04 10 FF 01 2B DC "Narrow gauge urban line \95(electrified)\94" 00
92 * 33 04 10 FF 01 2C DC "Standard gauge urban line \95(electrified)\94" 00
92 * 33 04 10 FF 01 2D DC "Standard gauge line\94" 00
//Build vehicle window caption (0B)
//NLOW/NGRL
108 * 31 04 10 FF 01 30 DC 94 "New narrow gauge trains" 00
108 * 31 04 10 FF 01 31 DC 94 "New narrow gauge trains" 00
108 * 31 04 10 FF 01 32 DC 94 "New electric narrow gauge trains" 00
108 * 31 04 10 FF 01 33 DC 94 "New electric narrow gauge trains" 00
109 * 33 04 10 FF 01 34 DC 94 "New electric standard gauge trains" 00
108 * 31 04 10 FF 01 35 DC 94 "New electric standard gauge trains" 00
109 * 33 04 10 FF 01 36 DC 94 "New Shinkansen trains" 00
108 * 31 04 10 FF 01 37 DC 94 "New Shinkansen trains" 00
108 * 31 04 10 FF 01 38 DC 94 "New 3rd rail powered trains" 00
108 * 31 04 10 FF 01 3B DC 94 "New electric narrow gauge trains" 00
108 * 31 04 10 FF 01 3C DC 94 "New electric standard gauge trains" 00
108 * 31 04 10 FF 01 3D DC 94 "New standard gauge trains" 00
//Autoreplace text (0C)
//NLOW/NGRL
110 * 37 04 10 FF 01 40 DC "Light narrow gauge trains" 00
111 * 26 04 10 FF 01 41 DC "Narrow gauge trains" 00
112 * 35 04 10 FF 01 42 DC "Electric narrow gauge trains" 00
114 * 42 04 10 FF 01 43 DC "Modern electric narrow gauge trains" 00
117 * 37 04 10 FF 01 44 DC "Electric standard gauge trains" 00
117 * 37 04 10 FF 01 45 DC "Modern electric standard gauge trains" 00
119 * 24 04 10 FF 01 46 DC "Shinkansen trains" 00
120 * 31 04 10 FF 01 47 DC "Modern Shinkansen trains" 00
120 * 31 04 10 FF 01 48 DC "metro trains" 00
121 * 30 04 10 FF 01 4B DC "Urban narrow gauge trains" 00
121 * 30 04 10 FF 01 4C DC "Urban standard gauge trains" 00
121 * 30 04 10 FF 01 4D DC "Standard gauge trains" 00
//New engines (0D)
//NLOW/NGRL
122 * 27 04 10 FF 01 50 DC "rail vehicle" 00
123 * 29 04 10 FF 01 54 DC "rail vehicle" 00
124 * 24 04 10 FF 01 56 DC "Shinkansen train" 00
122 * 27 04 10 FF 01 58 DC "metro rail vehicle" 00
122 * 27 04 10 FF 01 59 DC "rail vehicle" 00
125 * 2 10 F0
161 * 6 09 10 01 \7! 01 F1
//INTERNATIONAL MODE
//Build rail toolbar caption (09)
127 * 25 04 10 FF 01 10 DC "Branch line" 00
127 * 25 04 10 FF 01 11 DC "Main line" 00
127 * 25 04 10 FF 01 12 DC "Modern main line" 00
127 * 25 04 10 FF 01 13 DC "Highspeed line" 00
127 * 25 04 10 FF 01 14 DC "Main line (electrified)" 00
127 * 25 04 10 FF 01 15 DC "Modern line (electrified)" 00
127 * 25 04 10 FF 01 16 DC "Highspeed line (electrified)" 00
127 * 25 04 10 FF 01 17 DC "Modern highspeed line (electrified)" 00
127 * 25 04 10 FF 01 18 DC "Main line (3rd rail powered)" 00
127 * 25 04 10 FF 01 19 DC "Main line (dual electrified)" 00
127 * 25 04 10 FF 01 1A DC "Urban line (electrified)" 00
127 * 25 04 10 FF 01 1B DC "Urban line (3rd rail powered)" 00
127 * 25 04 10 FF 01 1C DC "Narrow gauge line" 00
127 * 25 04 10 FF 01 1D DC "Narrow gauge line (electrified)" 00
//Rail construction dropdown text (0A)
127 * 25 04 10 FF 01 20 DC "Branch line\94" 00
127 * 25 04 10 FF 01 21 DC "Main line\94" 00
127 * 25 04 10 FF 01 22 DC "Modern main line\94" 00
127 * 25 04 10 FF 01 23 DC "Highspeed line\94" 00
127 * 25 04 10 FF 01 24 DC "Main line \95(electrified)\94" 00
127 * 25 04 10 FF 01 25 DC "Modern line \95(electrified)\94" 00
127 * 25 04 10 FF 01 26 DC "Highspeed line \95(electrified)\94" 00
127 * 25 04 10 FF 01 27 DC "Modern highspeed line \95(electrified)\94" 00
127 * 25 04 10 FF 01 28 DC "Main line \8F(3rd rail powered)\94" 00
127 * 25 04 10 FF 01 29 DC "Main line \8F(dual \95electrified)\94" 00
127 * 25 04 10 FF 01 2A DC "Urban line \95(electrified)\94" 00
127 * 25 04 10 FF 01 2B DC "Urban line \8F(3rd rail powered)\94" 00
127 * 25 04 10 FF 01 2C DC "Narrow gauge line\94" 00
127 * 25 04 10 FF 01 2D DC "Narrow gauge line \95(electrified)\94" 00
//Build vehicle window caption (0B)
//NLOW/NGRL
143 * 18 04 10 FF 01 30 DC 94 "New trains" 00
143 * 18 04 10 FF 01 31 DC 94 "New trains" 00
143 * 18 04 10 FF 01 32 DC 94 "New trains" 00
144 * 31 04 10 FF 01 33 DC 94 "New trains" 00
143 * 18 04 10 FF 01 34 DC 94 "New electric trains" 00
143 * 18 04 10 FF 01 35 DC 94 "New electric trains" 00
143 * 18 04 10 FF 01 36 DC 94 "New electric trains" 00
143 * 18 04 10 FF 01 37 DC 94 "New electric trains" 00
143 * 18 04 10 FF 01 38 DC 94 "New 3rd rail powered trains" 00
143 * 18 04 10 FF 01 39 DC 94 "New dual electric trains" 00
143 * 18 04 10 FF 01 3A DC 94 "New electric trains" 00
143 * 18 04 10 FF 01 3B DC 94 "New 3rd rail powered trains" 00
144 * 31 04 10 FF 01 3C DC 94 "New narrow gauge trains" 00
143 * 18 04 10 FF 01 3D DC 94 "New narrow gauge trains" 00
//Autoreplace text (0C)
//NLOW/NGRL
145 * 24 04 10 FF 01 40 DC "Light trains" 00
146 * 13 04 10 FF 01 41 DC "Trains" 00
148 * 20 04 10 FF 01 42 DC "Modern trains" 00
148 * 20 04 10 FF 01 43 DC "Highspeed trains" 00
147 * 22 04 10 FF 01 44 DC "Electric trains" 00
149 * 29 04 10 FF 01 45 DC "Modern electric trains" 00
151 * 23 04 10 FF 01 46 DC "Electric highspeed trains" 00
151 * 23 04 10 FF 01 47 DC "Modern electric highspeed trains" 00
152 * 29 04 10 FF 01 48 DC "3rd rail powered trains" 00
153 * 37 04 10 FF 01 49 DC "Dual powered electric trains" 00
145 * 24 04 10 FF 01 4A DC "Urban trains" 00
146 * 13 04 10 FF 01 4B DC "Urban 3rd rail powered trains" 00
155 * 35 04 10 FF 01 4C DC "Narrow gauge trains" 00
145 * 24 04 10 FF 01 4D DC "Electric narrow gauge trains" 00
//New engines (0D)
//NLOW/NGRL
157 * 29 04 10 FF 01 50 DC "rail vehicle" 00
158 * 24 04 10 FF 01 53 DC "rail vehicle" 00
159 * 27 04 10 FF 01 5C DC "rail vehicle" 00
//ADJUST SOME NAMES IF EXTENDED TRACK TYPES ARE NOT USED
198 * 6 09 11 01 \71 01 0C
//Build rail toolbar caption (09)
127 * 25 04 10 FF 01 11 DC "Railway" 00
127 * 25 04 10 FF 01 14 DC "Railroad (electrified)" 00
127 * 25 04 10 FF 01 18 DC "Railroad (3rd rail powered)" 00
127 * 25 04 10 FF 01 19 DC "Railroad (dual electrified)" 00
127 * 25 04 10 FF 01 1C DC "Narrow gauge railroad" 00
127 * 25 04 10 FF 01 1D DC "Narrow gauge railroad (electrified)" 00
//Rail construction dropdown text (0A)
127 * 25 04 10 FF 01 21 DC "Railroad\94" 00
127 * 25 04 10 FF 01 24 DC "Railroad \95(electrified)\94" 00
127 * 25 04 10 FF 01 28 DC "Railroad \8F(3rd rail powered)\94" 00
127 * 25 04 10 FF 01 29 DC "Railroad \8F(dual \95electrified)\94" 00
127 * 25 04 10 FF 01 2C DC "Narrow gauge railroad\94" 00
127 * 25 04 10 FF 01 2D DC "Narrow gauge railroad \95(electrified)\94" 00
160 * 2 10 F1
-1 * 0 0C "This is the end of this language file."
# 11 "jptracksd.hnfo" 2
//#include "nfo/strings_ukeng.pnfo"
//#include "nfo/strings_de.pnfo"
# 1 "nfo/action0.pnfo" 1
//PROPERTIES (ACTION 0)
// JAPANESE MODE
161 * 6 09 10 01 \7= 01 F2
//check if extended track types are used
198 * 6 09 11 01 \70 01 01 //if bit 1 is clear, then we are minimal, so skip
162 * 87 00 10 12 01 00
08 "NAAN" //Rail type label
09 10 DC //Name of rail type
0A 20 DC //Menu text
0B 30 DC //Build window caption
0C 40 DC //Autoreplace text
0D 50 DC //New engines
0E 04 "NABN" "NABE" "NACE" "NUBE"
//Compatible rail type list
0F 04 "NABN" "NABE" "NACE" "NUBE"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w80 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
18 00 //Introduction required rail type list
19 00 //Introduced rail type list
1A 10 //sort order
1D 03 "NAaN" "NBaN" "NBAN" //redirected rail type labels
163 * 87 00 10 13 01 01
08 "NABN" //Rail type label
09 11 DC //Name of rail type
0A 21 DC //Menu text
0B 31 DC //Build window caption
0C 41 DC //Autoreplace text
0D 50 DC //New engines
0E 04 "NAAN" "NABE" "NACE" "NUBE"
//Compatible rail type list
0F 04 "NAAN" "NABE" "NACE" "NUBE"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
17 \d01/01/1920 //Introdate
18 01 "NAAN" //Introduction required rail type list
19 00 //Introduced rail type list
1A 11 //sort order
1D 04 "NGRL" "NBBN" "NACN" "NBCN"
//redirected rail type labels
164 * 75 00 10 12 01 02
08 "NABE" //Rail type label
09 12 DC //Name of rail type
0A 22 DC //Menu text
0B 32 DC //Build window caption
0C 42 DC //Autoreplace text
0D 50 DC //New engines
0E 04 "NABN" "NAAN" "NACE" "NUBE"
//Compatible rail type list
0F 02 "NACE" "NUBE"
//Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 34 //Map colour
18 00 //Introduction required rail type list
19 00 //Introduced rail type list
1A 12 //sort order
1D 06 "ELNG" "NAaE" "NBaE" "NAAE" "NBAE" "NBBE"
//redirected rail type labels
//check if extended track types are used
198 * 6 09 11 01 \70 01 01 //if bit 1 is clear, then we are minimal, so skip
166 * 75 00 10 13 01 03
08 "NACE" //Rail type label
09 13 DC //Name of rail type
0A 23 DC //Menu text
0B 33 DC //Build window caption
0C 43 DC //Autoreplace text
0D 50 DC //New engines
0E 04 "NAAN" "NABN" "NABE" "NUBE"
//Compatible rail type list
0F 02 "NABE" "NUBE"
//Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w160 //Speed limit
15 00 //Acceleration model
16 34 //Map colour
17 \d01/01/1950 //Introdate
18 01 "NABE" //Introduction required rail type list
19 00 //Introduced rail type list
1A 14 //sort order
1D 01 "NBCE" //redirected rail type labels
170 * 84 00 10 12 01 04
08 "ELRL" //Rail type label
09 14 DC //Name of rail type
0A 24 DC //Menu text
0B 34 DC //Build window caption
0C 44 DC //Autoreplace text
0D 54 DC //New engines
0E 04 "SACE" "SUBE" "SAB3" "RAIL"
//Compatible rail type list
0F 02 "SACE" "SUBE" //Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 BD //Map colour
18 00 //Introduction required rail type list
19 00 //Introduced rail type list
1A 21 //sort order
1D 04 "SAAE" "SBAE" "SABE" "SBBE"
//redirected rail type labels
//check if extended track types are used
198 * 6 09 11 01 \70 01 01 //if bit 1 is clear, then we are minimal, so skip
173 * 63 00 10 13 01 05
08 "SACE" //Rail type label
09 15 DC //Name of rail type
0A 25 DC //Menu text
0B 35 DC //Build window caption
0C 45 DC //Autoreplace text
0D 54 DC //New engines
0E 06 "ELRL" "SUBE" "SAEE" "SBEE" "SAB3" "RAIL"
//Compatible rail type list
0F 04 "ELRL" "SUBE" "SAEE" "SBEE"
//Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 01 //Default station graphics
14 \w160 //Speed limit
15 00 //Acceleration model
16 BD //Map colour
17 \d01/01/1950 //Introdate
18 01 "ELRL" //Introduction required rail type list
19 00 //Introduced rail type list
1A 24 //sort order
1D 02 "SADE" "SBDE" //redirected rail type labels
173 * 63 00 10 12 01 06
08 "SAEE" //Rail type label
09 16 DC //Name of rail type
0A 26 DC //Menu text
0B 36 DC //Build window caption
0C 46 DC //Autoreplace text
0D 56 DC //New engines
0E 02 "SUBE" "SBEE" //Compatible rail type list
0F 02 "SUBE" "SBEE" //Powered rail type list
10 03 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 01 //Default station graphics
14 \w240 //Speed limit
15 00 //Acceleration model
16 98 //Map colour
18 00 //Introduction required rail type list
19 01 "SUBE" //Introduced rail type list
1A 25 //sort order
1D 00 //redirected rail type labels
//check if extended track types are used (still in reduced)
198 * 6 09 11 01 \70 01 01 //if bit 1 is clear, then we are minimal, so skip
174 * 69 00 10 13 01 07
08 "SBEE" //Rail type label
09 17 DC //Name of rail type
0A 27 DC //Menu text
0B 37 DC //Build window caption
0C 47 DC //Autoreplace text
0D 56 DC //New engines
0E 02 "SAEE" "SUBE" //Compatible rail type list
0F 02 "SAEE" "SUBE" //Powered rail type list
10 03 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 02 //Default station graphics
14 \w320 //Speed limit
15 00 //Acceleration model
16 98 //Map colour
17 \d01/01/1990 //Introdate
18 01 "SAEE" //Introduction required rail type list
19 00 //Introduced rail type list
1A 26 //sort order
1D 00 //redirected rail type labels
174 * 69 00 10 12 01 08
08 "SAB3" //Rail type label
09 18 DC //Name of rail type
0A 28 DC //Menu text
0B 38 DC //Build window caption
0C 48 DC //Autoreplace text
0D 58 DC //New engines
0E 05 "ELRL" "SACE" "SUBE" "RAIL" "SUB3"
//Compatible rail type list
0F 01 "SUB3" //Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 02 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 BD //Map colour
18 00 //Introduction required rail type list
19 00 //Introduced rail type list
1A 23 //sort order
1D 06 "3RDR" "SAA3" "SBA3" "SBB3" "SAC3" "SBC3"
//redirected rail type labels
//check if Urban tracks are used (these are skipped for minimal and reduced)
167 * 6 09 11 01 \70 00 03 //if bit 0 is clear, then skip for both
174 * 69 00 10 13 01 09
08 "SUB3" //Rail type label
09 19 DC //Name of rail type
0A 29 DC //Menu text
0B 38 DC //Build window caption
0C 48 DC //Autoreplace text
0D 58 DC //New engines
0E 05 "ELRL" "SACE" "SUBE" "RAIL" "SAB3"
//Compatible rail type list
0F 01 "SAB3" //Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 02 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 BD //Map colour
17 \d01/01/1925 //Introdate
18 01 "SAB3" //Introduction required rail type list
19 00 //Introduced rail type list
1A 24 //sort order
1D 00 //redirected rail type labels
168 * 75 00 10 13 01 0B
08 "NUBE" //Rail type label
09 1B DC //Name of rail type
0A 2B DC //Menu text
0B 3B DC //Build window caption
0C 4B DC //Autoreplace text
0D 50 DC //New engines
0E 04 "NAAN" "NABN" "NABE" "NACE"
//Compatible rail type list
0F 02 "NABE" "NACE"
//Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 34 //Map colour
17 \d01/01/1925 //Introdate
18 01 "NABE" //Introduction required rail type list
19 00 //Introduced rail type list
1A 13 //sort order
1D 00 //redirected rail type labels
172 * 78 00 10 13 01 0C
08 "SUBE" //Rail type label
09 1C DC //Name of rail type
0A 2C DC //Menu text
0B 3C DC //Build window caption
0C 4C DC //Autoreplace text
0D 54 DC //New engines
0E 04 "ELRL" "SACE" "SAB3" "RAIL"
//Compatible rail type list
0F 02 "ELRL" "SACE" //Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 BD //Map colour
17 \d01/01/1925 //Introdate
18 01 "ELRL" //Introduction required rail type list
19 00 //Introduced rail type list
1A 22 //sort order
1D 00 //redirected rail type labels
172 * 78 00 10 12 01 0D
08 "RAIL" //Rail type label
09 1D DC //Name of rail type
0A 2D DC //Menu text
0B 3D DC //Build window caption
0C 4D DC //Autoreplace text
0D 54 DC //New engines
0E 04 "ELRL" "SACE" "SAB3" "SUBE"
//Compatible rail type list
0F 04 "ELRL" "SACE" "SAB3" "SUBE"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w130 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
18 00 //Introduction required rail type list
19 00 //Introduced rail type list
1A 20 //sort order
1D 0A "SAAN" "SBAN" "SABN" "SBBN" "SACN" "SBCN" "SADN" "SBDN" "SAEN" "SBEN"
//redirected rail type labels
177 * 14 00 10 04 01 0E
08 "MONO" //Rail type label
10 02 //Rail type flags (01=with catenary)
16 A5 //Map colour
1A 30 //sort order
177 * 14 00 10 04 01 0F
08 "MGLV" //Rail type label
10 02 //Rail type flags (01=with catenary)
16 A5 //Map colour
1A 40 //sort order
//signals
179 * 7 00 08 01 01 03 08 09
//build tracks
179 * 7 00 08 01 01 01 08 05
180 * 6 09 03 01 \7> 03 0B
//signals
179 * 7 00 08 01 01 03 08 08
//build tracks
179 * 7 00 08 01 01 01 08 04
183 * 6 09 03 01 \7> 02 08
//signals
179 * 7 00 08 01 01 03 08 07
//build tracks
179 * 7 00 08 01 01 01 08 03
186 * 6 09 03 01 \7> 01 05
//signals
179 * 7 00 08 01 01 03 08 06
//build tracks
179 * 7 00 08 01 01 01 08 02
189 * 6 09 03 01 \7> 00 02
//signals
179 * 7 00 08 01 01 03 08 05
//build tracks
179 * 7 00 08 01 01 01 08 01
//-------------------------------------------------------------------------------------------------------------------------------
// TRACK AVAILABILITY. Issue above is that Track ID is skipped if extended is off. Therefore below we need to skip adjusting them
// REDUCED SKIP SKIP SKIP SKIP
// MINIMAL SKIP SKIP SKIP SKIP SKIP SKIP SKIP SKIP
// NAAN NABN NABE NACE ELRL SACE SAEE SBEE SAB3 SUB3 xxxx NUBE SUBE RAIL MONO MGLV
// 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
//-------------------------------------------------------------------------------------------------------------------------------
0 * 6 09 11 01 \70 01 \b35 //Check for minimal, skip
0 * 6 09 11 01 \70 00 \b17 //Check for reduced, skip
//-------------------------------------------------------------------------------------------------------------------------------
// FULL (17 sprites)
//-------------------------------------------------------------------------------------------------------------------------------
// CONSTRUCTION COSTS
0 * 32 00 10 01 0A 00 13 \w100 \w150 \w250 \w400 \w300 \w450 \w750 \w1250 \w250 \w250
0 * 0 00 10 01 05 0B 13 \w250 \w300 \w250 \w250 \w2500
// MAINTENANCE COSTS
// NAAN NABN NABE NACE ELRL SACE SAEE SBEE SAB3 SUB3 xxxx NUBE SUBE RAIL MONO MGLV
// 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
0 * 32 00 10 01 0A 00 1C \w16 \w24 \w48 \w64 \w40 \w48 \w96 \w160 \w32 \w32
0 * 0 00 10 01 05 0B 1C \w48 \w40 \w32 \w32 \w240
0 * 6 09 04 01 \7> 03 F2
0 * 32 00 10 01 0A 00 1C \w8 \w12 \w24 \w32 \w20 \w28 \w48 \w80 \w16 \w16
0 * 0 00 10 01 05 0B 1C \w24 \w20 \w16 \w16 \w120
0 * 6 09 04 01 \7> 02 F2
0 * 32 00 10 01 0A 00 1C \w4 \w6 \w12 \w16 \w10 \w14 \w24 \w40 \w8 \w8
0 * 0 00 10 01 05 0B 1C \w12 \w10 \w8 \w8 \w60
0 * 6 09 04 01 \7> 01 F2
0 * 32 00 10 01 0A 00 1C \w2 \w3 \w6 \w8 \w5 \w7 \w12 \w20 \w4 \w4
0 * 0 00 10 01 05 0B 1C \w6 \w5 \w4 \w4 \w30
0 * 6 09 04 01 \7> 00 F2
0 * 32 00 10 01 0A 00 1C \w1 \w2 \w3 \w4 \w3 \w4 \w6 \w10 \w2 \w2
0 * 0 00 10 01 05 0B 1C \w3 \w3 \w2 \w2 \w15
0 * 0 09 9A 01 \7= FF F2 //skip to end
//-------------------------------------------------------------------------------------------------------------------------------
// REDUCED (17 sprites)
//-------------------------------------------------------------------------------------------------------------------------------
// CONSTRUCTION COSTS
0 * 32 00 10 01 09 00 13 \w100 \w150 \w250 \w400 \w300 \w450 \w750 \w1250 \w250
0 * 0 00 10 01 \b3 0D 13 \w250 \w250 \w2500
// MAINTENANCE COSTS
// NAAN NABN NABE NACE ELRL SACE SAEE SBEE SAB3 SUB3 xxxx NUBE SUBE RAIL MONO MGLV
// 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
0 * 32 00 10 01 09 00 1C \w16 \w24 \w48 \w64 \w40 \w48 \w96 \w160 \w32
0 * 0 00 10 01 \b3 0D 1C \w250 \w250 \w2500
0 * 6 09 04 01 \7> 03 F2
0 * 32 00 10 01 09 00 1C \w8 \w12 \w24 \w32 \w20 \w28 \w48 \w80 \w16
0 * 0 00 10 01 \b3 0D 1C \w16 \w16 \w120
0 * 6 09 04 01 \7> 02 F2
0 * 32 00 10 01 09 00 1C \w4 \w6 \w12 \w16 \w10 \w14 \w24 \w40 \w8
0 * 0 00 10 01 \b3 0D 1C \w8 \w8 \w60
0 * 6 09 04 01 \7> 01 F2
0 * 32 00 10 01 09 00 1C \w2 \w3 \w6 \w8 \w5 \w7 \w12 \w20 \w4
0 * 0 00 10 01 \b3 0D 1C \w4 \w4 \w30
0 * 6 09 04 01 \7> 00 F2
0 * 32 00 10 01 09 00 1C \w1 \w2 \w3 \w4 \w3 \w4 \w6 \w10 \w2
0 * 0 00 10 01 \b3 0D 1C \w2 \w2 \w15
0 * 0 09 9A 01 \7= FF F2 //skip to end
//-------------------------------------------------------------------------------------------------------------------------------
// MINIMAL NAAN NABN NABE NACE ELRL SACE SAEE SBEE SAB3 SUB3 xxxx NUBE SUBE RAIL MONO MGLV
// 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
//-------------------------------------------------------------------------------------------------------------------------------
// CONSTRUCTION COSTS
0 * 32 00 10 01 \b2 01 13 \w150 \w250
0 * 32 00 10 01 \b1 04 13 \w300
0 * 32 00 10 01 \b1 06 13 \w750
0 * 32 00 10 01 \b1 08 13 \w250
0 * 32 00 10 01 \b3 0D 13 \w250 \w250 \w2500
// MAINTENANCE COSTS
0 * 32 00 10 01 \b2 01 1C \w24 \w48
0 * 32 00 10 01 \b1 04 1C \w40
0 * 32 00 10 01 \b1 06 1C \w96
0 * 32 00 10 01 \b1 08 1C \w32
0 * 32 00 10 01 \b3 0D 1C \w250 \w250 \w2500
0 * 6 09 04 01 \7> 03 05
0 * 32 00 10 01 \b2 01 1C \w12 \w24
0 * 32 00 10 01 \b1 04 1C \w20
0 * 32 00 10 01 \b1 06 1C \w48
0 * 32 00 10 01 \b1 08 1C \w16
0 * 32 00 10 01 \b3 0D 1C \w16 \w16 \w120
0 * 6 09 04 01 \7> 02 05
0 * 32 00 10 01 \b2 01 1C \w6 \w12
0 * 32 00 10 01 \b1 04 1C \w10
0 * 32 00 10 01 \b1 06 1C \w24
0 * 32 00 10 01 \b1 08 1C \w8
0 * 32 00 10 01 \b3 0D 1C \w8 \w8 \w60
0 * 6 09 04 01 \7> 01 05
0 * 32 00 10 01 \b2 01 1C \w3 \w6
0 * 32 00 10 01 \b1 04 1C \w5
0 * 32 00 10 01 \b1 06 1C \w12
0 * 32 00 10 01 \b1 08 1C \w4
0 * 32 00 10 01 \b3 0D 1C \w4 \w4 \w40
0 * 6 09 04 01 \7> 00 05
0 * 32 00 10 01 \b2 01 1C \w2 \w3
0 * 32 00 10 01 \b1 04 1C \w3
0 * 32 00 10 01 \b1 06 1C \w6
0 * 32 00 10 01 \b1 08 1C \w2
0 * 32 00 10 01 \b3 0D 1C \w2 \w2 \w15
//For MINIMAL: Deactivate all speed limits and adjust redirections if extended track types are not used
0 * 32 00 10 01 \b2 01 14 \w0 \w0
0 * 32 00 10 01 \b1 04 14 \w0
0 * 32 00 10 01 \b1 06 14 \w0
0 * 32 00 10 01 \b1 08 14 \w0
0 * 32 00 10 01 \b3 0D 14 \w0 \w0 \w0
0 * 0 00 10 01 01 01 1D 0D "NGRL" "NAaN" "NBaN" "NAAN" "NBAN" "NABN" "NBBN" "NACN" "NBCN" "NADN" "NBDN" "NAEN" "NBEN"
0 * 0 00 10 01 01 02 1D 0D "ELNG" "NAaE" "NBaE" "NAAE" "NBAE" "NABE" "NBBE" "NACE" "NBCE" "NADE" "NBDE" "NAEE" "NBEE"
0 * 0 00 10 01 01 04 1D 0A "SAaE" "SBaE" "SAAE" "SBAE" "SABE" "SBBE" "SACE" "SBCE" "SADE" "SBDE"
0 * 0 00 10 01 01 06 1D 01 "SBEE"
0 * 0 00 10 01 01 08 1D 0D "3RDR" "SAa3" "SBa3" "SAA3" "SBA3" "SAB3" "SBB3" "SAC3" "SBC3" "SAD3" "SBD3" "SAE3" "SBE3"
0 * 0 00 10 01 01 0D 1D 0C "SAaN" "SBaN" "SAAN" "SBAN" "SABN" "SBBN" "SACN" "SBCN" "SADN" "SBDN" "SAEN" "SBEN"
0 * 0 00 10 02 01 04 0E 02 "RAIL" "SAEE" 0F 01 "SAEE"
//END OF JAPANESE TRACKS
191 * 2 10 F2
//SKIP TO END IF WE ARE JAPANESE
192 * 6 09 10 01 \7! 01 F3
// INTERNATIONAL MODE
//check if extended track types are used
198 * 6 09 11 01 \70 01 01
193 * 98 00 10 12 01 00
08 "SABN" //Rail type label
09 10 DC //Name of rail type
0A 20 DC //Menu text
0B 30 DC //Build window caption
0C 40 DC //Autoreplace text
0D 50 DC //New engines
0E 0B "RAIL" "SBCN" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Compatible rail type list
0F 0B "RAIL" "SBCN" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w80 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
18 01 "RAIL" //Introduction required rail type list
19 00 //Introduced rail type list
1A 00 //sort order
1D 05 "SAaN" "SBaN" "SAAN" "SBAN" "SBBN"
//redirected rail type labels
194 * 104 00 10 12 01 01
08 "RAIL" //Rail type label
09 11 DC //Name of rail type
0A 21 DC //Menu text
0B 31 DC //Build window caption
0C 41 DC //Autoreplace text
0D 50 DC //New engines
0E 0B "SABN" "SBCN" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Compatible rail type list
0F 0B "SABN" "SBCN" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w140 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
18 00 //Introduction required rail type list
19 01 "SABN" //Introduced rail type list
1A 01 //sort order
1D 01 "SACN" //redirected rail type labels
//check if extended track types are used
198 * 6 09 11 01 \70 01 01
194 * 104 00 10 13 01 02
08 "SBCN" //Rail type label
09 12 DC //Name of rail type
0A 22 DC //Menu text
0B 32 DC //Build window caption
0C 42 DC //Autoreplace text
0D 50 DC //New engines
0E 0B "SABN" "RAIL" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Compatible rail type list
0F 0B "SABN" "RAIL" "SADN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Powered rail type list
10 00 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w200 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
17 \d01/01/1950 //Introdate
18 01 "RAIL" //Introduction required rail type list
19 01 "RAIL" //Introduced rail type list
1A 02 //sort order
1D 00 //redirected rail type labels
//check if extended track types are used
198 * 6 09 11 01 \70 01 02 //skip for minimal
//always skip in German mode
0 * 0 09 00 01 \7= 02 01
194 * 104 00 10 13 01 03
08 "SADN" //Rail type label
09 13 DC //Name of rail type
0A 23 DC //Menu text
0B 33 DC //Build window caption
0C 43 DC //Autoreplace text
0D 53 DC //New engines
0E 0B "SABN" "RAIL" "SBCN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Compatible rail type list
0F 0B "SABN" "RAIL" "SBCN" "ELRL" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Powered rail type list
10 02 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w260 //Speed limit
15 00 //Acceleration model
16 0D //Map colour
17 \d01/01/1980 //Introdate
18 01 "RAIL" //Introduction required rail type list
19 01 "RAIL" //Introduced rail type list
1A 03 //sort order
1D 00 //redirected rail type labels
195 * 86 00 10 12 01 04
08 "ELRL" //Rail type label
09 14 DC //Name of rail type
0A 24 DC //Menu text
0B 34 DC //Build window caption
0C 44 DC //Autoreplace text
0D 50 DC //New engines
0E 0B "SABN" "RAIL" "SBCN" "SADN" "SBCE" "SADE" "SAEE" "SAC3" "SACZ" "SUCE" "SUC3"
//Compatible rail type list
0F 05 "SBCE" "SADE" "SAEE" "SACZ" "SUCE"
//Powered rail type list
10 01 //Rail type flags (01=with catenary)
11 00 //Curve speed advantage
12 00 //Default station graphics
14 \w140 //Speed limit
15 00 //Acceleration model
16 34 //Map colour
18 00 //Introduction required rail type list