wc3maptranslator 3.0.3 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.codeclimate.yml +0 -1
  2. package/.eslintignore +0 -1
  3. package/.github/workflows/codeql-analysis.yml +54 -0
  4. package/.nycrc +1 -2
  5. package/.travis.yml +1 -2
  6. package/CHANGELOG.md +78 -0
  7. package/LICENSE.md +23 -0
  8. package/README.md +68 -75
  9. package/index.js +11 -15
  10. package/index.ts +12 -30
  11. package/lib/CommonInterfaces.ts +22 -0
  12. package/lib/HexBuffer.ts +11 -14
  13. package/lib/W3Buffer.ts +7 -3
  14. package/lib/translators/CamerasTranslator.ts +36 -41
  15. package/lib/translators/DoodadsTranslator.ts +57 -55
  16. package/lib/translators/ImportsTranslator.ts +29 -31
  17. package/lib/translators/InfoTranslator.ts +252 -204
  18. package/lib/translators/{object/ObjectsTranslator.ts → ObjectsTranslator.ts} +84 -82
  19. package/lib/translators/RegionsTranslator.ts +40 -58
  20. package/lib/translators/SoundsTranslator.ts +112 -96
  21. package/lib/translators/StringsTranslator.ts +23 -49
  22. package/lib/translators/TerrainTranslator.ts +166 -97
  23. package/lib/translators/UnitsTranslator.ts +98 -97
  24. package/lib/translators/index.ts +0 -1
  25. package/package.json +23 -16
  26. package/test/.mocharc.json +4 -0
  27. package/test/HexBufferTest.ts +11 -15
  28. package/test/TranslatorReversion.ts +104 -115
  29. package/test/W3BufferTest.ts +19 -13
  30. package/test/data/cameras.json +16 -0
  31. package/test/data/doodads.json +2730 -0
  32. package/test/data/imports.json +386 -0
  33. package/test/data/info.json +250 -0
  34. package/test/data/obj-abilities.json +4892 -0
  35. package/test/data/obj-buffs.json +38 -0
  36. package/test/data/obj-destructables.json +31 -0
  37. package/test/data/obj-doodads.json +38 -0
  38. package/test/data/obj-items.json +31 -0
  39. package/test/data/obj-units.json +40 -0
  40. package/test/data/obj-upgrades.json +38 -0
  41. package/test/data/regions.json +206 -0
  42. package/test/data/sounds.json +50 -0
  43. package/test/data/strings.json +115 -0
  44. package/test/data/terrain.json +1 -0
  45. package/test/data/units.json +452 -0
  46. package/test/data/war3map.doo +0 -0
  47. package/test/data/war3map.imp +0 -0
  48. package/test/data/war3map.j +3442 -0
  49. package/test/data/war3map.shd +0 -0
  50. package/test/data/war3map.w3a +0 -0
  51. package/test/data/war3map.w3b +0 -0
  52. package/test/data/war3map.w3c +0 -0
  53. package/test/data/war3map.w3d +0 -0
  54. package/test/data/war3map.w3e +0 -0
  55. package/test/data/war3map.w3h +0 -0
  56. package/test/data/war3map.w3i +0 -0
  57. package/test/data/war3map.w3q +0 -0
  58. package/test/data/war3map.w3r +0 -0
  59. package/test/data/war3map.w3s +0 -0
  60. package/test/data/war3map.w3t +0 -0
  61. package/test/data/war3map.w3u +0 -0
  62. package/test/data/war3map.wts +631 -0
  63. package/test/data/war3mapUnits.doo +0 -0
  64. package/examples/index.js +0 -123
  65. package/examples/index.ts +0 -134
  66. package/examples/json/cameras.json +0 -16
  67. package/examples/json/doodads.json +0 -28499
  68. package/examples/json/imports.json +0 -10
  69. package/examples/json/info.json +0 -111
  70. package/examples/json/object-abilities.json +0 -31
  71. package/examples/json/object-buffs.json +0 -24
  72. package/examples/json/object-destructables.json +0 -31
  73. package/examples/json/object-doodads.json +0 -24
  74. package/examples/json/object-items.json +0 -45
  75. package/examples/json/object-units.json +0 -45
  76. package/examples/json/object-upgrades.json +0 -31
  77. package/examples/json/regions.json +0 -36
  78. package/examples/json/sounds.json +0 -46
  79. package/examples/json/strings.json +0 -83
  80. package/examples/json/terrain.json +0 -46633
  81. package/examples/json/units.json +0 -332
  82. package/examples/package.json +0 -17
  83. package/examples/tsconfig.json +0 -27
  84. package/examples/war/war3map.doo +0 -0
  85. package/examples/war/war3map.imp +0 -0
  86. package/examples/war/war3map.w3a +0 -0
  87. package/examples/war/war3map.w3b +0 -0
  88. package/examples/war/war3map.w3c +0 -0
  89. package/examples/war/war3map.w3d +0 -0
  90. package/examples/war/war3map.w3e +0 -0
  91. package/examples/war/war3map.w3h +0 -0
  92. package/examples/war/war3map.w3i +0 -0
  93. package/examples/war/war3map.w3q +0 -0
  94. package/examples/war/war3map.w3r +0 -0
  95. package/examples/war/war3map.w3s +0 -0
  96. package/examples/war/war3map.w3t +0 -0
  97. package/examples/war/war3map.w3u +0 -0
  98. package/examples/war/war3map.wts +0 -99
  99. package/lib/translators/index.js +0 -16
  100. package/test/mocha.opts +0 -4
@@ -0,0 +1,38 @@
1
+ {
2
+ "original": {
3
+ "BHbd": [
4
+ {
5
+ "id": "fmsp",
6
+ "type": "int",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": 5
10
+ },
11
+ {
12
+ "id": "feff",
13
+ "type": "int",
14
+ "level": 0,
15
+ "column": 0,
16
+ "value": 1
17
+ }
18
+ ]
19
+ },
20
+ "custom": {
21
+ "X000:Xclf": [
22
+ {
23
+ "id": "fnam",
24
+ "type": "string",
25
+ "level": 0,
26
+ "column": 0,
27
+ "value": "TRIGSTR_1682"
28
+ },
29
+ {
30
+ "id": "flig",
31
+ "type": "string",
32
+ "level": 0,
33
+ "column": 0,
34
+ "value": "LEAS"
35
+ }
36
+ ]
37
+ }
38
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "original": {
3
+ "LTrc": [
4
+ {
5
+ "id": "bsmm",
6
+ "type": "int",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": 0
10
+ }
11
+ ]
12
+ },
13
+ "custom": {
14
+ "B000:LTrc": [
15
+ {
16
+ "id": "bnam",
17
+ "type": "string",
18
+ "level": 0,
19
+ "column": 0,
20
+ "value": "TRIGSTR_1679"
21
+ },
22
+ {
23
+ "id": "bgsc",
24
+ "type": "real",
25
+ "level": 0,
26
+ "column": 0,
27
+ "value": 133
28
+ }
29
+ ]
30
+ }
31
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "original": {
3
+ "AOgs": [
4
+ {
5
+ "id": "dmar",
6
+ "type": "unreal",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": 1
10
+ },
11
+ {
12
+ "id": "dmap",
13
+ "type": "unreal",
14
+ "level": 0,
15
+ "column": 0,
16
+ "value": 1.112
17
+ }
18
+ ]
19
+ },
20
+ "custom": {
21
+ "D000:AOgs": [
22
+ {
23
+ "id": "dnam",
24
+ "type": "string",
25
+ "level": 0,
26
+ "column": 0,
27
+ "value": "TRIGSTR_1680"
28
+ },
29
+ {
30
+ "id": "dvar",
31
+ "type": "int",
32
+ "level": 0,
33
+ "column": 0,
34
+ "value": 2
35
+ }
36
+ ]
37
+ }
38
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "original": {
3
+ "clfm": [
4
+ {
5
+ "id": "iicd",
6
+ "type": "int",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": 1
10
+ }
11
+ ]
12
+ },
13
+ "custom": {
14
+ "I000:dkfw": [
15
+ {
16
+ "id": "unam",
17
+ "type": "string",
18
+ "level": 0,
19
+ "column": 0,
20
+ "value": "TRIGSTR_1678"
21
+ },
22
+ {
23
+ "id": "istr",
24
+ "type": "int",
25
+ "level": 0,
26
+ "column": 0,
27
+ "value": 55
28
+ }
29
+ ]
30
+ }
31
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "original": {
3
+ "hpea": [
4
+ {
5
+ "id": "uabi",
6
+ "type": "string",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": "Ahar,Ahrp"
10
+ }
11
+ ],
12
+ "hmtt": [
13
+ {
14
+ "id": "ua1b",
15
+ "type": "int",
16
+ "level": 0,
17
+ "column": 0,
18
+ "value": 30
19
+ }
20
+ ]
21
+ },
22
+ "custom": {
23
+ "H000:Hmkg": [
24
+ {
25
+ "id": "unam",
26
+ "type": "string",
27
+ "level": 0,
28
+ "column": 0,
29
+ "value": "TRIGSTR_1677"
30
+ },
31
+ {
32
+ "id": "uclg",
33
+ "type": "int",
34
+ "level": 0,
35
+ "column": 0,
36
+ "value": 25
37
+ }
38
+ ]
39
+ }
40
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "original": {
3
+ "Rhss": [
4
+ {
5
+ "id": "gglb",
6
+ "type": "int",
7
+ "level": 0,
8
+ "column": 0,
9
+ "value": 12
10
+ }
11
+ ]
12
+ },
13
+ "custom": {
14
+ "R000:Rhfl": [
15
+ {
16
+ "id": "gnam",
17
+ "type": "string",
18
+ "level": 1,
19
+ "column": 0,
20
+ "value": "TRIGSTR_1683"
21
+ },
22
+ {
23
+ "id": "gglb",
24
+ "type": "int",
25
+ "level": 0,
26
+ "column": 0,
27
+ "value": 57
28
+ },
29
+ {
30
+ "id": "gar1",
31
+ "type": "string",
32
+ "level": 1,
33
+ "column": 0,
34
+ "value": "ReplaceableTextures\\CommandButtons\\BTNHumanMissileUpThree.blp"
35
+ }
36
+ ]
37
+ }
38
+ }
@@ -0,0 +1,206 @@
1
+ [
2
+ {
3
+ "name": "UP Center",
4
+ "id": 0,
5
+ "weatherEffect": "0000",
6
+ "ambientSound": "",
7
+ "color": [
8
+ 0,
9
+ 0,
10
+ 0
11
+ ],
12
+ "position": {
13
+ "left": -704,
14
+ "bottom": 480,
15
+ "right": 704,
16
+ "top": 1504
17
+ }
18
+ },
19
+ {
20
+ "name": "Right Center",
21
+ "id": 1,
22
+ "weatherEffect": "0000",
23
+ "ambientSound": "",
24
+ "color": [
25
+ 0,
26
+ 0,
27
+ 0
28
+ ],
29
+ "position": {
30
+ "left": 704,
31
+ "bottom": -960,
32
+ "right": 1696,
33
+ "top": 448
34
+ }
35
+ },
36
+ {
37
+ "name": "Down Center",
38
+ "id": 2,
39
+ "weatherEffect": "0000",
40
+ "ambientSound": "",
41
+ "color": [
42
+ 0,
43
+ 0,
44
+ 0
45
+ ],
46
+ "position": {
47
+ "left": -704,
48
+ "bottom": -1984,
49
+ "right": 704,
50
+ "top": -960
51
+ }
52
+ },
53
+ {
54
+ "name": "Left Center",
55
+ "id": 3,
56
+ "weatherEffect": "0000",
57
+ "ambientSound": "",
58
+ "color": [
59
+ 0,
60
+ 0,
61
+ 0
62
+ ],
63
+ "position": {
64
+ "left": -1760,
65
+ "bottom": -960,
66
+ "right": -704,
67
+ "top": 480
68
+ }
69
+ },
70
+ {
71
+ "name": "Water Up",
72
+ "id": 4,
73
+ "weatherEffect": "0000",
74
+ "ambientSound": "",
75
+ "color": [
76
+ 255,
77
+ 255,
78
+ 255
79
+ ],
80
+ "position": {
81
+ "left": -1600,
82
+ "bottom": 1088,
83
+ "right": 1600,
84
+ "top": 2976
85
+ }
86
+ },
87
+ {
88
+ "name": "Water Right",
89
+ "id": 5,
90
+ "weatherEffect": "0000",
91
+ "ambientSound": "",
92
+ "color": [
93
+ 255,
94
+ 255,
95
+ 255
96
+ ],
97
+ "position": {
98
+ "left": 1344,
99
+ "bottom": -1856,
100
+ "right": 3232,
101
+ "top": 1344
102
+ }
103
+ },
104
+ {
105
+ "name": "Water Down",
106
+ "id": 6,
107
+ "weatherEffect": "0000",
108
+ "ambientSound": "",
109
+ "color": [
110
+ 255,
111
+ 255,
112
+ 255
113
+ ],
114
+ "position": {
115
+ "left": -1600,
116
+ "bottom": -3488,
117
+ "right": 1600,
118
+ "top": -1600
119
+ }
120
+ },
121
+ {
122
+ "name": "Water Left",
123
+ "id": 7,
124
+ "weatherEffect": "0000",
125
+ "ambientSound": "",
126
+ "color": [
127
+ 255,
128
+ 255,
129
+ 255
130
+ ],
131
+ "position": {
132
+ "left": -3232,
133
+ "bottom": -1856,
134
+ "right": -1344,
135
+ "top": 1344
136
+ }
137
+ },
138
+ {
139
+ "name": "LeftTop",
140
+ "id": 8,
141
+ "weatherEffect": "0000",
142
+ "ambientSound": "",
143
+ "color": [
144
+ 128,
145
+ 128,
146
+ 255
147
+ ],
148
+ "position": {
149
+ "left": -1376,
150
+ "bottom": 480,
151
+ "right": -704,
152
+ "top": 1184
153
+ }
154
+ },
155
+ {
156
+ "name": "RightTop",
157
+ "id": 9,
158
+ "weatherEffect": "0000",
159
+ "ambientSound": "",
160
+ "color": [
161
+ 128,
162
+ 128,
163
+ 255
164
+ ],
165
+ "position": {
166
+ "left": 704,
167
+ "bottom": 448,
168
+ "right": 1312,
169
+ "top": 1056
170
+ }
171
+ },
172
+ {
173
+ "name": "RightBottom",
174
+ "id": 10,
175
+ "weatherEffect": "0000",
176
+ "ambientSound": "",
177
+ "color": [
178
+ 128,
179
+ 128,
180
+ 255
181
+ ],
182
+ "position": {
183
+ "left": 704,
184
+ "bottom": -1568,
185
+ "right": 1312,
186
+ "top": -960
187
+ }
188
+ },
189
+ {
190
+ "name": "LeftBottom",
191
+ "id": 11,
192
+ "weatherEffect": "0000",
193
+ "ambientSound": "",
194
+ "color": [
195
+ 128,
196
+ 128,
197
+ 255
198
+ ],
199
+ "position": {
200
+ "left": -1312,
201
+ "bottom": -1600,
202
+ "right": -704,
203
+ "top": -960
204
+ }
205
+ }
206
+ ]
@@ -0,0 +1,50 @@
1
+ [
2
+ {
3
+ "name": "gg_snd_FirstSound",
4
+ "variableName": "gg_snd_FirstSound",
5
+ "path": "Units\\Demon\\HeroPitLord\\HPitLordYesAttack1.wav",
6
+ "eax": "HeroAcksEAX",
7
+ "volume": -1,
8
+ "pitch": 0.75,
9
+ "channel": 0,
10
+ "flags": {
11
+ "looping": false,
12
+ "3dSound": false,
13
+ "stopOutOfRange": true,
14
+ "music": false
15
+ },
16
+ "fadeRate": {
17
+ "in": 10,
18
+ "out": 10
19
+ },
20
+ "distance": {
21
+ "min": 0,
22
+ "max": 10000,
23
+ "cutoff": 3000
24
+ }
25
+ },
26
+ {
27
+ "name": "gg_snd_Warning",
28
+ "variableName": "gg_snd_Warning",
29
+ "path": "Sound\\Interface\\Warning.wav",
30
+ "eax": "DefaultEAXON",
31
+ "volume": -1,
32
+ "pitch": 1,
33
+ "channel": 0,
34
+ "flags": {
35
+ "looping": false,
36
+ "3dSound": false,
37
+ "stopOutOfRange": false,
38
+ "music": false
39
+ },
40
+ "fadeRate": {
41
+ "in": 10,
42
+ "out": 10
43
+ },
44
+ "distance": {
45
+ "min": 0,
46
+ "max": 10000,
47
+ "cutoff": 3000
48
+ }
49
+ }
50
+ ]
@@ -0,0 +1,115 @@
1
+ {
2
+ "1569": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r\n2x |cffFF6666F|r|cffCC3333irelord|r\n|cffFF6666F|r|cffCC3333el|r |cffFF6666B|r|cffCC3333oar|r\n|cffFF6666I|r|cffCC3333nfernal|r/|cffFF6666P|r|cffCC3333it|r |cffFF6666L|r|cffCC3333ord|r\n|cffFFCC00Hellfire|r Aura",
3
+ "1572": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r\n2x |cffFF6666F|r|cffCC3333irelord|r\n|cffFF6666F|r|cffCC3333el|r |cffFF6666B|r|cffCC3333oar|r\n|cffFF6666I|r|cffCC3333nfernal|r/|cffFF6666P|r|cffCC3333it|r |cffFF6666L|r|cffCC3333ord|r\n2x |cffFFCC00Hellfire|r Aura",
4
+ "1573": "|cffFF3333About...|r",
5
+ "1574": "|cffFFFFCCHermit Survival started as a side project. With time it has evolved into a game I can be proud of.\n\nI'd like to thank the following individual for helping me out with testing and ideas, this map wouldn't be what it is today without his valued support:|r |cffFFCC00B.a.b.o.G|r",
6
+ "1575": "|cffFF3333Change Log|r",
7
+ "1576": "[|cffFFCC001.4|r]\n- Added unique spawns at 5 minute intervals\n- Increased Hermit Crab HP\n- Added new item\n- Fire realocates targets 2 seconds faster\n- Many small balance tweaks",
8
+ "1577": "|cffFFFFCCWelcome to |r|cffFFCC00Hermit Survival|r|cffFFFFCC.|r\nversion |cffCC33331.4|r",
9
+ "1578": "|cffFFFFCCDifficulty|r",
10
+ "1579": "|cff66CC33Easy|r",
11
+ "1580": "|cffCC9933Standard|r",
12
+ "1581": "|cffFF3333Hard|r",
13
+ "1582": "|cffFFFFCCSelect your Crab|r",
14
+ "1583": "|cffFFCC99H|r|cffFF9933ermit|r |cffFFCC99C|r|cffFF9933rab|r (|cffCCFFCCCarpenter|r)",
15
+ "1584": "|cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r (|cffFFCCFFWarrior|r)",
16
+ "1585": "|cffFFCC99T|r|cffFF9933rove|r |cffFFCC99L|r|cffFF9933obster|r (|cffFFFFCCMedic|r)",
17
+ "1586": "|cffFFCC99S|r|cffFF9933piny|r |cffFFCC99S|r|cffFF9933napper|r (|cffFF6666Tank|r)",
18
+ "1587": "|cffFFCC99F|r|cffFF9933rog|r |cffFFCC99J|r|cffFF9933ester|r (|cff66FF66Handicap|r)",
19
+ "1588": "|cffFFFFCCThe invasion begins in |r|cffFFCC001|r|cffFFFFCC minute.|r\n|cffFF3333If you haven't picked your crab by then it's too late.|r\n|cffFFFFCCYou can |r|cffFFCC00-repick|r|cffFFFFCC before the minute is up.|r\n|cffFF3333If you die you cannot come back!|r",
20
+ "1589": "|cffFFFFCCYou can |r|cffFFCC00-notip|r|cffFFFFCC to disable tips.|r",
21
+ "1590": "|cffFFCC00-repick|r is disabled",
22
+ "1591": "|cffFFFFCCThe invasion has begun:|r\n|cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r",
23
+ "1592": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r",
24
+ "1593": "|cffFF33FFSkills Upgraded:|r [|cff9999992/4|r]",
25
+ "1594": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r\n|cffFF6666F|r|cffCC3333irelord|r",
26
+ "1595": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r\n|cffFF6666F|r|cffCC3333irelord|r\n|cffFF6666F|r|cffCC3333el|r |cffFF6666B|r|cffCC3333oar|r",
27
+ "1596": "|cffFFFFCCThe invasion has now intensified:|r\n2x |cffFF6666L|r|cffCC3333ava|r |cffFF6666S|r|cffCC3333pawn|r\n2x |cffFF6666F|r|cffCC3333irelord|r\n|cffFF6666F|r|cffCC3333el|r |cffFF6666B|r|cffCC3333oar|r\n|cffFF6666I|r|cffCC3333nfernal|r/|cffFF6666P|r|cffCC3333it|r |cffFF6666L|r|cffCC3333ord|r",
28
+ "1597": "|cffFF33FFSkills Upgraded:|r [|cff9999993/4|r]",
29
+ "1598": "|cffFF33FFSkills Upgraded:|r [|cff9999994/4|r]",
30
+ "1599": "|cffFFCC00The difficulty has been set to |r|cff66CC33Easy|r|cffFFCC00.|r\nEnemies now have:\n75% |cffFFCC00Hit points|r\n75% |cffFFCC00Attack rate|r\n95% |cffFFCC00Movement speed|r\n50% |cffFFCC00Spawn rate|r",
31
+ "1600": "|cffFFCC00The difficulty has been set to |r|cffCC9933Standard|r|cffFFCC00.|r\nEnemies now have:\n100% |cffFFCC00Hit points|r\n100% |cffFFCC00Attack rate|r\n100% |cffFFCC00Movement speed|r\n100% |cffFFCC00Spawn rate|r",
32
+ "1601": "|cffFFCC00The difficulty has been set to |r|cffFF3333Hard|r|cffFFCC00.|r\nEnemies now have:\n125% |cffFFCC00Hit points|r\n125% |cffFFCC00Attack rate|r\n105% |cffFFCC00Movement speed|r\n200% |cffFFCC00Spawn rate|r",
33
+ "1602": "|cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r statistics:",
34
+ "1603": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Hit Points|r.",
35
+ "1604": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Armor|r.",
36
+ "1605": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Regeneration|r.",
37
+ "1606": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Damage|r.",
38
+ "1607": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Speed|r.",
39
+ "1608": "Your |cffFFCC99C|r|cffFF9933ameo|r |cffFFCC99C|r|cffFF9933rab|r has mastered its |cffFFCC00Canon|r.",
40
+ "1609": "|cffFF3333Victory Count|r:",
41
+ "1610": "|cff3333FFRepick Available|r:",
42
+ "1611": "The ones that survived until the very end deserved to win, good job.\nIf you didn't survive dont worry this game takes practice.\nThe game will end in |cffFFCC0010|r seconds.",
43
+ "1612": "Toasted!",
44
+ "1613": "|cffFFCC00Tips|r enabled.",
45
+ "1614": "|cffFFCC00Tips|r disabled.",
46
+ "1615": "Minions",
47
+ "1616": "Player 2",
48
+ "1617": "Player 3",
49
+ "1618": "Player 4",
50
+ "1619": "Player 5",
51
+ "1620": "Player 6",
52
+ "1621": "Player 7",
53
+ "1622": "Player 8",
54
+ "1623": "Player 9",
55
+ "1624": "Player 10",
56
+ "1625": "Player 11",
57
+ "1626": "Player 12",
58
+ "1627": "|cff99CCFFHermit Players|r",
59
+ "1628": "|cffFF6666Hell's Minions|r",
60
+ "1629": "Type: |Cffffcc00Creep|R",
61
+ "1630": "100% |cffFFCC00Chaos|r|n75% |cffFFCC00Hero|r",
62
+ "1631": "100% |cffFFCC00Hero|r|n65% |cffFFCC00Chaos|r",
63
+ "1632": "110% |cffFFCC00Hero|r|n100% |cffFFCC00Chaos|r",
64
+ "1633": "0% |cffFFCC00Chaos|r|n0% |cffFFCC00Hero|r",
65
+ "1634": "100% |cffFFCC00Chaos|r|n75% |cffFFCC00Hero|r",
66
+ "1635": "100% |cffFFCC00Hero|r|n65% |cffFFCC00Chaos|r",
67
+ "1636": "110% |cffFFCC00Hero|r|n100% |cffFFCC00Chaos|r",
68
+ "1637": "0% |cffFFCC00Chaos|r|n0% |cffFFCC00Hero|r",
69
+ "1638": "100% |cffFFCC00Chaos|r|n75% |cffFFCC00Hero|r",
70
+ "1639": "100% |cffFFCC00Hero|r|n65% |cffFFCC00Chaos|r",
71
+ "1640": "110% |cffFFCC00Hero|r|n100% |cffFFCC00Chaos|r",
72
+ "1641": "0% |cffFFCC00Chaos|r|n0% |cffFFCC00Hero|r",
73
+ "1642": "Kill Tokens:",
74
+ "1643": "Game Speed:",
75
+ "1644": "110% |cffFFCC00Creep|r|n100% |cffFFCC00Hero|r|n75% |cffFFCC00Fortified|r",
76
+ "1645": "100% |cffFFCC00Creep|r|n100% |cffFFCC00Fortified|r|n65% |cffFFCC00Hero|r",
77
+ "1646": "110% |cffFFCC00Creep|r|n100% |cffFFCC00Hero|r|n75% |cffFFCC00Fortified|r",
78
+ "1647": "100% |cffFFCC00Creep|r|n100% |cffFFCC00Fortified|r|n65% |cffFFCC00Hero|r",
79
+ "1648": "110% |cffFFCC00Creep|r|n100% |cffFFCC00Hero|r|n75% |cffFFCC00Fortified|r",
80
+ "1649": "100% |cffFFCC00Creep|r|n100% |cffFFCC00Fortified|r|n65% |cffFFCC00Hero|r",
81
+ "1650": "Kill Tokens",
82
+ "1651": "Idle Crab (|Cfffed312F8|R)",
83
+ "1652": "Information (|Cfffed312F9|R)",
84
+ "1653": "Subject Description",
85
+ "1654": "Information",
86
+ "1655": "Facts & Archives",
87
+ "1656": "Hints & Strategies",
88
+ "1657": "Quest Not Yet Discovered",
89
+ "1658": "This number represents the cumulated level of the enemies you have killed.",
90
+ "1659": "Lumber has no use.",
91
+ "1660": "version |cffFF33331.4|r",
92
+ "1661": " ",
93
+ "1662": " ",
94
+ "1663": "The amount of food you are using over the total amount you can currently sustain.|n|nThis is only of use to |cffFFCC99H|r|cffFF9933ermit|r |cffFFCC99C|r|cffFF9933rab|rs.",
95
+ "1664": "|cffFF3333Tichondrius(C)|r",
96
+ "1665": " ",
97
+ "1666": "Information Library (|Cfffed312F9|R)",
98
+ "1667": "|cffCC9999Bait|r",
99
+ "1668": "|cff996666Incarnation|r",
100
+ "1669": "|cffFF3333Fire Elemental|r",
101
+ "1670": "|cffCC3333Hermit|r Survival v1.4e",
102
+ "1671": "4+",
103
+ "1672": "|cffFF0000-|r |cffFFFFCCSurvive|r 20 |cffFFFFCCminutes.|r\n|cffFF0000-|r |cffFFFFCCSelect one of four unit types:|r\n|cff99CCFFHermit Crab|r, |cff99CCFFCameo Crab|r, |cff99CCFFTrove Lobster|r, |cff99CCFFSpiny Snapper|r",
104
+ "1673": "Tichondrius(C)",
105
+ "1674": "|cff99CCFFTichondrius(C)|r",
106
+ "1675": "|cffCC3333Hermit |cffFFFFCCSurvival|r",
107
+ "1676": "|cffFF0000-|r |cffFFFFCCSurvive|r 20 |cffFFFFCCminutes.|r\n|cffFF0000-|r |cffFFFFCCWork as a team.|r\n|cffFF0000-|r |cffFFFFCCOnce you die it's over. You don't come back.|r\n|cffFF0000-|r |cffFFFFCCTry different difficulties only when you're ready for them.|r\n|cffFF0000-|r |cffFFFFCCTry to pick complementary units.|r\n|cffFF0000-|r |cffFFFFCCHave fun!|r\n\nVersion |cffCC33331.4e|r\nReleased |cffFFFFCCJanuary 1, 2010|r",
108
+ "1677": "CustomUnit1",
109
+ "1678": "CustomItem1",
110
+ "1679": "Rock Chunks - Custom",
111
+ "1680": "CustomStatue",
112
+ "1681": "CustomAbility1",
113
+ "1682": "CustomAbility1",
114
+ "1683": "CustomUpgrade1"
115
+ }