author | koda |
Sat, 15 Jan 2011 21:32:44 +0100 | |
branch | 0.9.15 |
changeset 4751 | 849740a91d36 |
parent 4744 | ecc2c757d0df |
child 4845 | 9a0f5377c529 |
permissions | -rw-r--r-- |
4359 | 1 |
{$INCLUDE options.inc} |
2 |
||
3 |
unit uVariables; |
|
4 |
interface |
|
5 |
||
4365 | 6 |
uses SDLh, uTypes, uFloat, GLunit, uConsts, Math, uMobile; |
4359 | 7 |
|
8 |
var |
|
9 |
/////// init flags /////// |
|
10 |
cScreenWidth : LongInt = 1024; |
|
11 |
cScreenHeight : LongInt = 768; |
|
12 |
cBits : LongInt = 32; |
|
13 |
//ipcPort is in uIO |
|
14 |
cFullScreen : boolean = false; |
|
15 |
isSoundEnabled : boolean = true; |
|
16 |
isMusicEnabled : boolean = false; |
|
17 |
cLocaleFName : shortstring = 'en.txt'; |
|
18 |
cInitVolume : LongInt = 100; |
|
19 |
cTimerInterval : LongInt = 8; |
|
20 |
PathPrefix : shortstring = './'; |
|
21 |
cShowFPS : boolean = false; |
|
22 |
cAltDamage : boolean = true; |
|
23 |
cReducedQuality : LongWord = rqNone; |
|
24 |
//userNick is in uChat |
|
25 |
recordFileName : shortstring = ''; |
|
4553
442bac2e6ca6
Reenable cReadyDelay - this requires testing on m8y.org from now on until the message is added to other servers
nemo
parents:
4548
diff
changeset
|
26 |
cReadyDelay : Longword = 5000; |
4359 | 27 |
cLogfileBase : shortstring = 'debug'; |
28 |
////////////////////////// |
|
4437
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4396
diff
changeset
|
29 |
|
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4396
diff
changeset
|
30 |
alsoShutdownFrontend: boolean = false; |
05192cdbce9b
un-break build (wrong merge in uConsole) and update project file with the new sources
koda
parents:
4396
diff
changeset
|
31 |
|
4359 | 32 |
isCursorVisible : boolean; |
33 |
isTerminated : boolean; |
|
34 |
isInLag : boolean; |
|
35 |
isPaused : boolean; |
|
36 |
||
37 |
isSEBackup : boolean; |
|
38 |
isInMultiShoot : boolean; |
|
39 |
isSpeed : boolean; |
|
40 |
isFirstFrame : boolean; |
|
41 |
||
42 |
fastUntilLag : boolean; |
|
43 |
||
44 |
GameState : TGameState; |
|
45 |
GameType : TGameType; |
|
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4482
diff
changeset
|
46 |
InputMask : LongWord; |
4359 | 47 |
GameFlags : Longword; |
48 |
TrainingFlags : Longword; |
|
49 |
TurnTimeLeft : Longword; |
|
50 |
ReadyTimeLeft : Longword; |
|
51 |
cSuddenDTurns : LongInt; |
|
52 |
cDamagePercent : LongInt; |
|
53 |
cMineDudPercent : LongWord; |
|
54 |
cTemplateFilter : LongInt; |
|
55 |
cMapGen : LongInt; |
|
56 |
cMazeSize : LongInt; |
|
4396
3cfd2e15464a
After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents:
4390
diff
changeset
|
57 |
cRopePercent : LongWord; |
4359 | 58 |
|
59 |
cHedgehogTurnTime: Longword; |
|
60 |
cMinesTime : LongInt; |
|
61 |
cMaxAIThinkTime : Longword; |
|
62 |
||
63 |
cHealthCaseProb : LongInt; |
|
64 |
cHealthCaseAmount: LongInt; |
|
65 |
cWaterRise : LongInt; |
|
66 |
cHealthDecrease : LongInt; |
|
67 |
||
68 |
cCloudsNumber : LongInt; |
|
69 |
||
70 |
cTagsMask : byte; |
|
71 |
zoom : GLfloat; |
|
72 |
ZoomValue : GLfloat; |
|
73 |
||
74 |
cWaterLine : LongInt; |
|
75 |
cGearScrEdgesDist: LongInt; |
|
76 |
||
77 |
GameTicks : LongWord; |
|
78 |
TrainingTimeInc : Longword; |
|
79 |
TrainingTimeInD : Longword; |
|
80 |
TrainingTimeInM : Longword; |
|
81 |
TrainingTimeMax : Longword; |
|
82 |
||
83 |
TimeTrialStartTime: Longword; |
|
84 |
TimeTrialStopTime : Longword; |
|
85 |
||
86 |
// originally from uConsts |
|
87 |
Pathz: array[TPathType] of shortstring; |
|
88 |
CountTexz: array[1..Pred(AMMO_INFINITE)] of PTexture; |
|
89 |
LAND_WIDTH : LongInt; |
|
90 |
LAND_HEIGHT : LongInt; |
|
91 |
LAND_WIDTH_MASK : LongWord; |
|
92 |
LAND_HEIGHT_MASK : LongWord; |
|
93 |
cMaxCaptions : LongInt; |
|
94 |
||
95 |
cLeftScreenBorder : LongInt; |
|
96 |
cRightScreenBorder : LongInt; |
|
97 |
cScreenSpace : LongInt; |
|
98 |
||
99 |
cCaseFactor : Longword; |
|
100 |
cLandMines : Longword; |
|
101 |
cExplosives : Longword; |
|
102 |
||
103 |
cSeed : shortstring; |
|
104 |
cVolumeDelta : LongInt; |
|
105 |
cHasFocus : boolean; |
|
106 |
cInactDelay : Longword; |
|
107 |
||
108 |
bBetweenTurns : boolean; |
|
109 |
bWaterRising : boolean; |
|
110 |
||
111 |
ShowCrosshair : boolean; |
|
112 |
CursorMovementX : LongInt; |
|
113 |
CursorMovementY : LongInt; |
|
114 |
cDrownSpeed : hwFloat; |
|
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4375
diff
changeset
|
115 |
cDrownSpeedf : real; |
4359 | 116 |
cMaxWindSpeed : hwFloat; |
117 |
cWindSpeed : hwFloat; |
|
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4375
diff
changeset
|
118 |
cWindSpeedf : real; |
4359 | 119 |
cGravity : hwFloat; |
4379
6cd6b77df8b8
No need for Extended data type just to draw some visual gears. It's a shame we have Math unit dependency
unC0Rr
parents:
4375
diff
changeset
|
120 |
cGravityf : real; |
4359 | 121 |
cDamageModifier : hwFloat; |
122 |
cLaserSighting : boolean; |
|
123 |
cVampiric : boolean; |
|
124 |
cArtillery : boolean; |
|
125 |
WeaponTooltipTex : PTexture; |
|
126 |
||
127 |
flagMakeCapture : boolean; |
|
128 |
||
129 |
InitStepsFlags : Longword; |
|
130 |
RealTicks : Longword; |
|
131 |
AttackBar : LongInt; |
|
132 |
||
133 |
WaterColorArray : array[0..3] of HwColor4f; |
|
134 |
||
135 |
CursorPoint : TPoint; |
|
136 |
TargetPoint : TPoint; |
|
137 |
||
138 |
ScreenFade : TScreenFade; |
|
139 |
ScreenFadeValue : LongInt; |
|
140 |
ScreenFadeSpeed : LongInt; |
|
141 |
||
4611 | 142 |
Theme : shortstring; |
4695
ac2cb3b99d70
add a disabling for landback, set it if flakes are enabled
nemo
parents:
4611
diff
changeset
|
143 |
disableLandBack : boolean; |
4611 | 144 |
|
4359 | 145 |
{$IFDEF SDL13} |
146 |
SDLwindow : PSDL_Window; |
|
147 |
{$ENDIF} |
|
148 |
||
4367 | 149 |
WorldDx: LongInt; |
150 |
WorldDy: LongInt; |
|
4361 | 151 |
|
152 |
const |
|
153 |
cHHFileName = 'Hedgehog'; |
|
154 |
cCHFileName = 'Crosshair'; |
|
155 |
cThemeCFGFilename = 'theme.cfg'; |
|
156 |
||
157 |
FontBorder = 2; |
|
158 |
cPathz: array[TPathType] of shortstring = ( |
|
159 |
'', // ptNone |
|
160 |
'', // ptData |
|
161 |
'Graphics', // ptGraphics |
|
162 |
'Themes', // ptThemes |
|
163 |
'Themes/avematan', // ptCurrTheme |
|
164 |
'Teams', // ptTeams |
|
165 |
'Maps', // ptMaps |
|
166 |
'', // ptMapCurrent |
|
167 |
'Demos', // ptDemos |
|
168 |
'Sounds', // ptSounds |
|
169 |
'Graphics/Graves', // ptGraves |
|
170 |
'Fonts', // ptFonts |
|
171 |
'Forts', // ptForts |
|
172 |
'Locale', // ptLocale |
|
173 |
'Graphics/AmmoMenu', // ptAmmoMenu |
|
174 |
'Graphics/Hedgehog', // ptHedgehog |
|
175 |
'Sounds/voices', // ptVoices |
|
176 |
'Graphics/Hats', // ptHats |
|
177 |
'Graphics/Flags', // ptFlags |
|
178 |
'Missions/Maps' // ptMissionMaps |
|
179 |
); |
|
180 |
||
181 |
cTagsMasks : array[0..15] of byte = (7, 0, 0, 0, 15, 6, 4, 5, 0, 0, 0, 0, 0, 14, 12, 13); |
|
182 |
cTagsMasksNoHealth: array[0..15] of byte = (3, 2, 11, 1, 0, 0, 0, 0, 0, 10, 0, 9, 0, 0, 0, 0); |
|
183 |
||
184 |
Fontz: array[THWFont] of THHFont = ( |
|
185 |
(Handle: nil; |
|
186 |
Height: 12; |
|
187 |
style: TTF_STYLE_NORMAL; |
|
188 |
Name: 'DejaVuSans-Bold.ttf'), |
|
189 |
(Handle: nil; |
|
190 |
Height: 24; |
|
191 |
style: TTF_STYLE_NORMAL; |
|
192 |
Name: 'DejaVuSans-Bold.ttf'), |
|
193 |
(Handle: nil; |
|
194 |
Height: 10; |
|
195 |
style: TTF_STYLE_NORMAL; |
|
196 |
Name: 'DejaVuSans-Bold.ttf') |
|
197 |
{$IFNDEF IPHONEOS}, // remove chinese fonts for now |
|
198 |
(Handle: nil; |
|
199 |
Height: 12; |
|
200 |
style: TTF_STYLE_NORMAL; |
|
201 |
Name: 'wqy-zenhei.ttc'), |
|
202 |
(Handle: nil; |
|
203 |
Height: 24; |
|
204 |
style: TTF_STYLE_NORMAL; |
|
205 |
Name: 'wqy-zenhei.ttc'), |
|
206 |
(Handle: nil; |
|
207 |
Height: 10; |
|
208 |
style: TTF_STYLE_NORMAL; |
|
209 |
Name: 'wqy-zenhei.ttc') |
|
210 |
{$ENDIF} |
|
211 |
); |
|
212 |
||
213 |
SpritesData: array[TSprite] of record |
|
214 |
FileName: String[16]; |
|
215 |
Path, AltPath: TPathType; |
|
216 |
Texture: PTexture; |
|
217 |
Surface: PSDL_Surface; |
|
218 |
Width, Height, imageWidth, imageHeight: LongInt; |
|
219 |
saveSurf: boolean; |
|
220 |
priority: GLfloat; |
|
221 |
getDimensions, getImageDimensions: boolean; |
|
222 |
end = ( |
|
223 |
(FileName: 'BlueWater'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
224 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: true; getImageDimensions: true),// sprWater |
|
225 |
(FileName: 'Clouds'; Path: ptCurrTheme;AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
226 |
Width: 256; Height:128; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprCloud |
|
227 |
(FileName: 'Bomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
228 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBomb |
|
229 |
(FileName: 'BigDigits'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
230 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigDigit |
|
231 |
(FileName: 'Frame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
232 |
Width: 4; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprFrame |
|
233 |
(FileName: 'Lag'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
234 |
Width: 65; Height: 65; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprLag |
|
235 |
(FileName: 'Arrow'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
236 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCursor |
|
237 |
(FileName:'BazookaShell'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
238 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBazookaShell |
|
239 |
(FileName: 'Targetp'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
240 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTargetP |
|
241 |
(FileName: 'Bee'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
242 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBee |
|
243 |
(FileName: 'SmokeTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
244 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmokeTrace |
|
245 |
(FileName: 'RopeHook'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
246 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprRopeHook |
|
247 |
(FileName: 'Expl50'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
248 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosion50 |
|
249 |
(FileName: 'MineOff'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
250 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineOff |
|
251 |
(FileName: 'MineOn'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
252 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineOn |
|
253 |
(FileName: 'MineDead'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
254 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMineDead |
|
255 |
(FileName: 'Case'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
256 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprCase |
|
257 |
(FileName: 'FirstAid'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
258 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprFAid |
|
259 |
(FileName: 'dynamite'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
260 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDynamite |
|
261 |
(FileName: 'Power'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
262 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprPower |
|
263 |
(FileName: 'ClBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
264 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprClusterBomb |
|
265 |
(FileName: 'ClParticle'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
266 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprClusterParticle |
|
267 |
(FileName: 'Flame'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
268 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFlame |
|
269 |
(FileName: 'horizont'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
270 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizont |
|
271 |
(FileName: 'horizontL'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
272 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizont |
|
273 |
(FileName: 'horizontR'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
274 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprHorizont |
|
275 |
(FileName: 'Sky'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
276 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSky |
|
277 |
(FileName: 'SkyL'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
278 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSky |
|
279 |
(FileName: 'SkyR'; Path: ptCurrTheme;AltPath: ptNone; Texture: nil; Surface: nil; |
|
280 |
Width: 0; Height: 0; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: true; getImageDimensions: true),// sprSky |
|
281 |
(FileName: 'BorderHorizontal'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
282 |
Width: 33; Height: 2; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLow; getDimensions: false; getImageDimensions: true),// sprAMBorderHorizontal |
|
283 |
(FileName: 'BorderVertical'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
284 |
Width: 2; Height: 33; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLow; getDimensions: false; getImageDimensions: true),// sprAMBorderVertical |
|
285 |
(FileName: 'Slot'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
286 |
Width: 33; Height: 33; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMSlot |
|
287 |
(FileName: 'Ammos'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
288 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMAmmos |
|
289 |
(FileName: 'SlotKeys'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
290 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMSlotKeys |
|
291 |
(FileName: 'Corners'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
292 |
Width: 2; Height: 2; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAMCorners |
|
293 |
(FileName: 'Finger'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
294 |
Width: 32; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprFinger |
|
295 |
(FileName: 'AirBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
296 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAirBomb |
|
297 |
(FileName: 'Airplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
298 |
Width: 254; Height: 101; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAirplane |
|
299 |
(FileName: 'amAirplane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
300 |
Width: 64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmAirplane |
|
301 |
(FileName: 'amGirder'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
302 |
Width: 160; Height:160; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmGirder |
|
303 |
(FileName: 'hhMask'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
304 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHHTelepMask |
|
305 |
(FileName: 'Switch'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
306 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSwitch |
|
307 |
(FileName: 'Parachute'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
308 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprParachute |
|
309 |
(FileName: 'Target'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
310 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTarget |
|
311 |
(FileName: 'RopeNode'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
312 |
Width: 6; Height: 6; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprRopeNode |
|
313 |
(FileName: 'thinking'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
314 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprQuestion |
|
315 |
(FileName: 'PowerBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
316 |
Width: 256; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPowerBar |
|
317 |
(FileName: 'WindBar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
318 |
Width: 151; Height: 17; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindBar |
|
319 |
(FileName: 'WindL'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
320 |
Width: 80; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindL |
|
321 |
(FileName: 'WindR'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
322 |
Width: 80; Height: 13; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWindR |
|
323 |
(FileName: 'Flake'; Path:ptCurrTheme; AltPath: ptNone; Texture: nil; Surface: nil; |
|
324 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFlake |
|
325 |
(FileName: 'amRope'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
326 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandRope |
|
327 |
(FileName: 'amBazooka'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
328 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBazooka |
|
329 |
(FileName: 'amShotgun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
330 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandShotgun |
|
331 |
(FileName: 'amDEagle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
332 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDEagle |
|
333 |
(FileName:'amAirAttack'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
334 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandAirAttack |
|
335 |
(FileName: 'amBaseball'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
336 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBaseball |
|
337 |
(FileName: 'Hammer'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
338 |
Width: 32; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPHammer |
|
339 |
(FileName: 'amBTorch_i'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
340 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBlowTorch |
|
341 |
(FileName: 'amBTorch_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
342 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBlowTorch |
|
343 |
(FileName: 'Teleport'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
344 |
Width: 64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTeleport |
|
345 |
(FileName: 'HHDeath'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
346 |
Width: 32; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHHDeath |
|
347 |
(FileName:'amShotgun_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
348 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprShotgun |
|
349 |
(FileName: 'amDEagle_w'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
350 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDEagle |
|
351 |
(FileName: 'Idle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
352 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprHHIdle |
|
353 |
(FileName: 'Mortar'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
354 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMortar |
|
355 |
(FileName: 'TurnsLeft'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
356 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTurnsLeft |
|
357 |
(FileName: 'amKamikaze'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
358 |
Width: 256; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprKamikaze |
|
359 |
(FileName: 'amWhip'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
360 |
Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWhip |
|
361 |
(FileName: 'Kowtow'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
362 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprKowtow |
|
363 |
(FileName: 'Sad'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
364 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSad |
|
365 |
(FileName: 'Wave'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
366 |
Width: 64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprWave |
|
367 |
(FileName: 'Hurrah'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
368 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprHurrah |
|
369 |
(FileName:'ILoveLemonade';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
370 |
Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprLemonade |
|
371 |
(FileName: 'Shrug'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
372 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShrug |
|
373 |
(FileName: 'Juggle'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
374 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprJuggle |
|
375 |
(FileName: 'ExplPart'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
376 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplPart |
|
377 |
(FileName: 'ExplPart2'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
378 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplPart2 |
|
379 |
(FileName: 'Cake_walk'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
380 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCakeWalk |
|
381 |
(FileName: 'Cake_down'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
382 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCakeDown |
|
383 |
(FileName: 'Ammos_bw'; Path: ptAmmoMenu; AltPath: ptNone; Texture: nil; Surface: nil; |
|
384 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprAMAmmosBW |
|
385 |
(FileName: 'Watermelon'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
386 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprWatermelon |
|
387 |
(FileName: 'EvilTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
388 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprEvilTrace |
|
389 |
(FileName:'HellishBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
390 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHellishBomb |
|
391 |
(FileName: 'Seduction'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
392 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSeduction |
|
393 |
(FileName: 'HHDress'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
394 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprDress |
|
395 |
(FileName: 'Censored'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
396 |
Width: 64; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprCensored |
|
397 |
(FileName: 'Drill'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
398 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprDrill |
|
399 |
(FileName: 'amDrill'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
400 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDrill |
|
401 |
(FileName: 'amBallgun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
402 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBallgun |
|
403 |
(FileName: 'Balls'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
404 |
Width: 32; Height: 20; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprBalls |
|
405 |
(FileName: 'RCPlane'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
406 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPlane |
|
407 |
(FileName: 'amRCPlane'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
408 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandPlane |
|
409 |
(FileName: 'Utility'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
410 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprUtility |
|
411 |
(FileName:'Invulnerable';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
412 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprInvulnerable |
|
413 |
(FileName: 'Vampiric'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
414 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprVampiric |
|
415 |
(FileName: 'amGirder'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
416 |
Width: 512; Height:512; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprGirder |
|
417 |
(FileName:'SpeechCorner';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
418 |
Width: 12; Height: 9; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechCorner |
|
419 |
(FileName: 'SpeechEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
420 |
Width: 25; Height: 9; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechEdge |
|
421 |
(FileName: 'SpeechTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
422 |
Width: 25; Height: 26; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprSpeechTail |
|
423 |
(FileName:'ThoughtCorner';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
424 |
Width: 49; Height: 37; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtCorner |
|
425 |
(FileName:'ThoughtEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
426 |
Width: 23; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtEdge |
|
427 |
(FileName:'ThoughtTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
428 |
Width: 45; Height: 65; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprThoughtTail |
|
429 |
(FileName:'ShoutCorner'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
430 |
Width: 34; Height: 23; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutCorner |
|
431 |
(FileName: 'ShoutEdge'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
432 |
Width: 30; Height: 20; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutEdge |
|
433 |
(FileName: 'ShoutTail'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
434 |
Width: 30; Height: 37; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpLowest; getDimensions: false; getImageDimensions: true),// sprShoutTail |
|
435 |
(FileName:'amSniperRifle';Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
436 |
Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSniperRifle |
|
437 |
(FileName: 'Bubbles'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
438 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprBubbles |
|
439 |
(FileName: 'amJetpack'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
440 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprJetpack |
|
441 |
(FileName: 'Health'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
442 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprHealth |
|
443 |
(FileName: 'amMolotov'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
444 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),//sprHandMolotov |
|
445 |
(FileName: 'Molotov'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
446 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprMolotov |
|
447 |
(FileName: 'Smoke'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
448 |
Width: 22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmoke |
|
449 |
(FileName: 'SmokeWhite'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
450 |
Width: 22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprSmokeWhite |
|
451 |
(FileName: 'Shells'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
452 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpLow; getDimensions: false; getImageDimensions: true),// sprShell |
|
453 |
(FileName: 'Dust'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
454 |
Width: 22; Height: 22; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprDust |
|
455 |
(FileName: 'Explosives'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
456 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosives |
|
457 |
(FileName: 'ExplosivesRoll'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
458 |
Width: 48; Height: 48; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprExplosivesRoll |
|
459 |
(FileName: 'amTeleport'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
460 |
Width: 64; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprAmTeleport |
|
461 |
(FileName: 'Splash'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
462 |
Width: 80; Height: 50; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSplash |
|
463 |
(FileName: 'Droplet'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
464 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprDroplet |
|
465 |
(FileName: 'Birdy'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
466 |
Width: 75; Height: 75; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBirdy |
|
467 |
(FileName: 'amCake'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
468 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCake |
|
469 |
(FileName: 'amConstruction'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
470 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandConstruction |
|
471 |
(FileName: 'amGrenade'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
472 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandGrenade |
|
473 |
(FileName: 'amMelon'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
474 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMelon |
|
475 |
(FileName: 'amMortar'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
476 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMortar |
|
477 |
(FileName: 'amSkip'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
478 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSkip |
|
479 |
(FileName: 'amCluster'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
480 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCluster |
|
481 |
(FileName: 'amDynamite'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
482 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandDynamite |
|
483 |
(FileName: 'amHellish'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
484 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandHellish |
|
485 |
(FileName: 'amMine'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
486 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandMine |
|
487 |
(FileName: 'amSeduction'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
488 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSeduction |
|
489 |
(FileName: 'amVamp'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
490 |
Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandVamp |
|
491 |
(FileName: 'BigExplosion'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
492 |
Width: 385; Height: 385; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprBigExplosion |
|
493 |
(FileName: 'SmokeRing'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
494 |
Width: 200; Height: 200; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSmokeRing |
|
495 |
(FileName: 'BeeTrace'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
496 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHigh; getDimensions: false; getImageDimensions: true),// sprBeeTrace |
|
497 |
(FileName: 'Egg'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
498 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprEgg |
|
499 |
(FileName: 'TargetBee'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
500 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprTargetBee |
|
501 |
(FileName: 'amBee'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
502 |
Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandBee |
|
503 |
(FileName: 'Feather'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
504 |
Width: 15; Height: 25; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpHighest; getDimensions: false; getImageDimensions: true),// sprFeather |
|
505 |
(FileName: 'Piano'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
506 |
Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPiano |
|
507 |
(FileName: 'amSineGun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
508 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSineGun |
|
509 |
(FileName: 'amPortalGun'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
510 |
Width: 128; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPortalGun |
|
511 |
(FileName: 'Portal'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
512 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprPortal |
|
513 |
(FileName: 'cheese'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
514 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprCheese |
|
515 |
(FileName: 'amCheese'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
516 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandCheese |
|
517 |
(FileName: 'amFlamethrower'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
518 |
Width: 128; Height: 128; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandFlamethrower |
|
519 |
(FileName: 'Chunk'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
520 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprChunk |
|
521 |
(FileName: 'Note'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
522 |
Width: 32; Height: 32; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprNote |
|
523 |
(FileName: 'SMineOff'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
524 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSMineOff |
|
525 |
(FileName: 'SMineOn'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; |
|
526 |
Width: 8; Height: 8; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSMineOn |
|
527 |
(FileName: 'amSMine'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
528 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSMine |
|
529 |
(FileName: 'amHammer'; Path: ptHedgehog; AltPath: ptNone; Texture: nil; Surface: nil; |
|
530 |
Width: 128; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true), // sprWhip |
|
531 |
(FileName: 'amResurrector'; Path: ptHedgehog; AltPath: ptNone; |
|
532 |
Texture: nil; Surface: nil; Width: 32; Height: 32; |
|
533 |
imageWidth: 0; imageHeight: 0; saveSurf: false; priority: |
|
534 |
tpMedium; getDimensions: false; getImageDimensions: true), |
|
535 |
//sprHandResurrector |
|
536 |
(FileName: 'Cross'; Path: ptGraphics; altPath: ptNone; |
|
537 |
Texture: nil; Surface: nil; Width: 108; Height: 138; |
|
538 |
imageWidth: 0; imageHeight: 0; saveSurf: false; priority: |
|
539 |
tpMedium; getDimensions: false; getImageDimensions: true), |
|
540 |
//sprCross |
|
541 |
(FileName: 'AirDrill'; Path: ptGraphics; AltPath: ptNone; |
|
542 |
Texture: nil; Surface: nil; Width: 16; Height: 16; |
|
543 |
imageWidth: 0; imageHeight: 0; saveSurf: false; priority: |
|
544 |
tpMedium; getDimensions: false; getImageDimensions: true), |
|
545 |
// sprAirDrill |
|
546 |
(FileName: 'NapalmBomb'; Path: ptGraphics; AltPath: ptNone; |
|
547 |
Texture: nil; Surface: nil; Width: 16; Height: 16; |
|
548 |
imageWidth: 0; imageHeight: 0; saveSurf: false; priority: |
|
549 |
tpMedium; getDimensions: false; getImageDimensions: true), |
|
550 |
// sprNapalmBomb |
|
551 |
(FileName: 'BulletHit'; Path: ptGraphics; AltPath: ptNone; |
|
552 |
Texture: nil; Surface: nil; Width: 32; Height: 32; |
|
553 |
imageWidth: 0; imageHeight: 0; saveSurf: false; priority: |
|
4578 | 554 |
tpMedium; getDimensions: false; getImageDimensions: true), |
4361 | 555 |
// sprNapalmBomb |
4578 | 556 |
(FileName: 'Snowball'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
557 |
Width: 16; Height: 16; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprSnowball |
|
558 |
(FileName: 'amSnowball'; Path: ptCurrTheme; AltPath: ptHedgehog; Texture: nil; Surface: nil; |
|
4611 | 559 |
Width: 64; Height: 64; imageWidth: 0; imageHeight: 0; saveSurf: false; priority: tpMedium; getDimensions: false; getImageDimensions: true),// sprHandSnowball |
560 |
(FileName: 'Snow'; Path: ptCurrTheme; AltPath: ptGraphics; Texture: nil; Surface: nil; |
|
561 |
Width: 4; Height: 4; imageWidth: 0; imageHeight: 0; saveSurf: true; priority: tpMedium; getDimensions: false; getImageDimensions: true) // sprSnow |
|
4361 | 562 |
); |
563 |
||
564 |
||
565 |
Wavez: array [TWave] of record |
|
566 |
Sprite: TSprite; |
|
567 |
FramesCount: Longword; |
|
568 |
Interval: Longword; |
|
569 |
cmd: String[20]; |
|
570 |
Voice: TSound; |
|
571 |
VoiceDelay: LongWord; |
|
572 |
end = ( |
|
573 |
(Sprite: sprKowtow; FramesCount: 12; Interval: 125; cmd: '/rollup'; Voice: sndNone; VoiceDelay: 0), |
|
574 |
(Sprite: sprSad; FramesCount: 14; Interval: 125; cmd: '/sad'; Voice: sndNone; VoiceDelay: 0), |
|
575 |
(Sprite: sprWave; FramesCount: 16; Interval: 125; cmd: '/wave'; Voice: sndHello; VoiceDelay: 5), |
|
576 |
(Sprite: sprHurrah; FramesCount: 14; Interval: 125; cmd: '/hurrah'; Voice: sndNone; VoiceDelay: 0), |
|
577 |
(Sprite: sprLemonade; FramesCount: 24; Interval: 125; cmd: '/ilovelotsoflemonade'; Voice: sndNone; VoiceDelay: 0), |
|
578 |
(Sprite: sprShrug; FramesCount: 24; Interval: 125; cmd: '/shrug'; Voice: sndNone; VoiceDelay: 0), |
|
579 |
(Sprite: sprJuggle; FramesCount: 49; Interval: 38; cmd: '/juggle'; Voice: sndNone; VoiceDelay: 0) |
|
580 |
); |
|
581 |
||
582 |
Soundz: array[TSound] of record |
|
583 |
FileName: String[25]; |
|
584 |
Path : TPathType; |
|
585 |
end = ( |
|
586 |
(FileName: ''; Path: ptNone ),// sndNone |
|
587 |
(FileName: 'grenadeimpact.ogg'; Path: ptSounds),// sndGrenadeImpact |
|
588 |
(FileName: 'explosion.ogg'; Path: ptSounds),// sndExplosion |
|
589 |
(FileName: 'throwpowerup.ogg'; Path: ptSounds),// sndThrowPowerUp |
|
590 |
(FileName: 'throwrelease.ogg'; Path: ptSounds),// sndThrowRelease |
|
591 |
(FileName: 'splash.ogg'; Path: ptSounds),// sndSplash |
|
592 |
(FileName: 'shotgunreload.ogg'; Path: ptSounds),// sndShotgunReload |
|
593 |
(FileName: 'shotgunfire.ogg'; Path: ptSounds),// sndShotgunFire |
|
594 |
(FileName: 'graveimpact.ogg'; Path: ptSounds),// sndGraveImpact |
|
595 |
(FileName: 'minetick.ogg'; Path: ptSounds),// sndMineTicks |
|
596 |
(FileName: 'pickhammer.ogg'; Path: ptSounds),// sndPickhammer |
|
597 |
(FileName: 'gun.ogg'; Path: ptSounds),// sndGun |
|
598 |
(FileName: 'bee.ogg'; Path: ptSounds),// sndBee |
|
599 |
(FileName: 'Jump1.ogg'; Path: ptVoices),// sndJump1 |
|
600 |
(FileName: 'Jump2.ogg'; Path: ptVoices),// sndJump2 |
|
601 |
(FileName: 'Jump3.ogg'; Path: ptVoices),// sndJump3 |
|
602 |
(FileName: 'Yessir.ogg'; Path: ptVoices),// sndYesSir |
|
603 |
(FileName: 'Laugh.ogg'; Path: ptVoices),// sndLaugh |
|
604 |
(FileName: 'Illgetyou.ogg'; Path: ptVoices),// sndIllGetYou |
|
605 |
(FileName: 'Incoming.ogg'; Path: ptVoices),// sndIncoming |
|
606 |
(FileName: 'Missed.ogg'; Path: ptVoices),// sndMissed |
|
607 |
(FileName: 'Stupid.ogg'; Path: ptVoices),// sndStupid |
|
608 |
(FileName: 'Firstblood.ogg'; Path: ptVoices),// sndFirstBlood |
|
609 |
(FileName: 'Boring.ogg'; Path: ptVoices),// sndBoring |
|
610 |
(FileName: 'Byebye.ogg'; Path: ptVoices),// sndByeBye |
|
611 |
(FileName: 'Sameteam.ogg'; Path: ptVoices),// sndSameTeam |
|
612 |
(FileName: 'Nutter.ogg'; Path: ptVoices),// sndNutter |
|
613 |
(FileName: 'Reinforcements.ogg'; Path: ptVoices),// sndReinforce |
|
614 |
(FileName: 'Traitor.ogg'; Path: ptVoices),// sndTraitor |
|
615 |
(FileName: 'Youllregretthat.ogg'; Path: ptVoices),// sndRegret |
|
616 |
(FileName: 'Enemydown.ogg'; Path: ptVoices),// sndEnemyDown |
|
617 |
(FileName: 'Coward.ogg'; Path: ptVoices),// sndCoward |
|
618 |
(FileName: 'Hurry.ogg'; Path: ptVoices),// sndHurry |
|
619 |
(FileName: 'Watchit.ogg'; Path: ptVoices),// sndWatchIt |
|
620 |
(FileName: 'Kamikaze.ogg'; Path: ptVoices),// sndKamikaze |
|
621 |
(FileName: 'cake2.ogg'; Path: ptSounds),// sndCake |
|
622 |
(FileName: 'Ow1.ogg'; Path: ptVoices),// sndOw1 |
|
623 |
(FileName: 'Ow2.ogg'; Path: ptVoices),// sndOw2 |
|
624 |
(FileName: 'Ow3.ogg'; Path: ptVoices),// sndOw3 |
|
625 |
(FileName: 'Ow4.ogg'; Path: ptVoices),// sndOw4 |
|
626 |
(FileName: 'Firepunch1.ogg'; Path: ptVoices),// sndFirepunch1 |
|
627 |
(FileName: 'Firepunch2.ogg'; Path: ptVoices),// sndFirepunch2 |
|
628 |
(FileName: 'Firepunch3.ogg'; Path: ptVoices),// sndFirepunch3 |
|
629 |
(FileName: 'Firepunch4.ogg'; Path: ptVoices),// sndFirepunch4 |
|
630 |
(FileName: 'Firepunch5.ogg'; Path: ptVoices),// sndFirepunch5 |
|
631 |
(FileName: 'Firepunch6.ogg'; Path: ptVoices),// sndFirepunch6 |
|
632 |
(FileName: 'Melon.ogg'; Path: ptVoices),// sndMelon |
|
633 |
(FileName: 'Hellish.ogg'; Path: ptSounds),// sndHellish |
|
634 |
(FileName: 'Yoohoo.ogg'; Path: ptSounds),// sndYoohoo |
|
635 |
(FileName: 'rcplane.ogg'; Path: ptSounds),// sndRCPlane |
|
636 |
(FileName: 'whipcrack.ogg'; Path: ptSounds),// sndWhipCrack |
|
637 |
(FileName:'ride_of_the_valkyries.ogg'; Path: ptSounds),// sndRideOfTheValkyries |
|
638 |
(FileName: 'denied.ogg'; Path: ptSounds),// sndDenied |
|
639 |
(FileName: 'placed.ogg'; Path: ptSounds),// sndPlaced |
|
640 |
(FileName: 'baseballbat.ogg'; Path: ptSounds),// sndBaseballBat |
|
641 |
(FileName: 'steam.ogg'; Path: ptSounds),// sndVaporize |
|
642 |
(FileName: 'warp.ogg'; Path: ptSounds),// sndWarp |
|
643 |
(FileName: 'suddendeath.ogg'; Path: ptSounds),// sndSuddenDeath |
|
644 |
(FileName: 'mortar.ogg'; Path: ptSounds),// sndMortar |
|
645 |
(FileName: 'shutterclick.ogg'; Path: ptSounds),// sndShutter |
|
646 |
(FileName: 'homerun.ogg'; Path: ptSounds),// sndHomerun |
|
647 |
(FileName: 'molotov.ogg'; Path: ptSounds),// sndMolotov |
|
648 |
(FileName: 'Takecover.ogg'; Path: ptVoices),// sndCover |
|
649 |
(FileName: 'Uh-oh.ogg'; Path: ptVoices),// sndUhOh |
|
650 |
(FileName: 'Oops.ogg'; Path: ptVoices),// sndOops |
|
651 |
(FileName: 'Nooo.ogg'; Path: ptVoices),// sndNooo |
|
652 |
(FileName: 'Hello.ogg'; Path: ptVoices),// sndHello |
|
653 |
(FileName: 'ropeshot.ogg'; Path: ptSounds),// sndRopeShot |
|
654 |
(FileName: 'ropeattach.ogg'; Path: ptSounds),// sndRopeAttach |
|
655 |
(FileName: 'roperelease.ogg'; Path: ptSounds),// sndRopeRelease |
|
656 |
(FileName: 'switchhog.ogg'; Path: ptSounds),// sndSwitchHog |
|
657 |
(FileName: 'victory.ogg'; Path: ptVoices),// sndVictory |
|
658 |
(FileName: 'sniperreload.ogg'; Path: ptSounds),// sndSniperReload |
|
659 |
(FileName: 'steps.ogg'; Path: ptSounds),// sndSteps |
|
660 |
(FileName: 'lowgravity.ogg'; Path: ptSounds),// sndLowGravity |
|
661 |
(FileName: 'hell_growl.ogg'; Path: ptSounds),// sndHellishImpact1 |
|
662 |
(FileName: 'hell_ooff.ogg'; Path: ptSounds),// sndHellishImpact2 |
|
663 |
(FileName: 'hell_ow.ogg'; Path: ptSounds),// sndHellishImpact3 |
|
664 |
(FileName: 'hell_ugh.ogg'; Path: ptSounds),// sndHellishImpact4 |
|
665 |
(FileName: 'melonimpact.ogg'; Path: ptSounds),// sndMelonImpact |
|
666 |
(FileName: 'Droplet1.ogg'; Path: ptSounds),// sndDroplet1 |
|
667 |
(FileName: 'Droplet2.ogg'; Path: ptSounds),// sndDroplet2 |
|
668 |
(FileName: 'Droplet3.ogg'; Path: ptSounds),// sndDroplet3 |
|
669 |
(FileName: 'egg.ogg'; Path: ptSounds),// sndEggBreak |
|
670 |
(FileName: 'drillgun.ogg'; Path: ptSounds),// sndDrillRocket |
|
671 |
(FileName: 'PoisonCough.ogg'; Path: ptVoices),// sndPoisonCough |
|
672 |
(FileName: 'PoisonMoan.ogg'; Path: ptVoices),// sndPoisonMoan |
|
673 |
(FileName: 'BirdyLay.ogg'; Path: ptSounds),// sndBirdyLay |
|
674 |
(FileName: 'Whistle.ogg'; Path: ptSounds),// sndWhistle |
|
675 |
(FileName: 'beewater.ogg'; Path: ptSounds),// sndBeeWater |
|
676 |
(FileName: '1C.ogg'; Path: ptSounds),// sndPiano0 |
|
677 |
(FileName: '2D.ogg'; Path: ptSounds),// sndPiano1 |
|
678 |
(FileName: '3E.ogg'; Path: ptSounds),// sndPiano2 |
|
679 |
(FileName: '4F.ogg'; Path: ptSounds),// sndPiano3 |
|
680 |
(FileName: '5G.ogg'; Path: ptSounds),// sndPiano4 |
|
681 |
(FileName: '6A.ogg'; Path: ptSounds),// sndPiano5 |
|
682 |
(FileName: '7B.ogg'; Path: ptSounds),// sndPiano6 |
|
683 |
(FileName: '8C.ogg'; Path: ptSounds),// sndPiano7 |
|
684 |
(FileName: '9D.ogg'; Path: ptSounds),// sndPiano8 |
|
685 |
(FileName: 'skip.ogg'; Path: ptSounds),// sndSkip |
|
686 |
(FileName: 'shotgunfire.ogg'; Path: ptSounds),// sndSineGun |
|
687 |
(FileName: 'Ooff1.ogg'; Path: ptVoices),// sndOoff1 |
|
688 |
(FileName: 'Ooff2.ogg'; Path: ptVoices),// sndOoff2 |
|
689 |
(FileName: 'Ooff3.ogg'; Path: ptVoices),// sndOoff3 |
|
690 |
(FileName: 'whipcrack.ogg'; Path: ptSounds),// sndWhack |
|
691 |
(FileName: 'Comeonthen.ogg'; Path: ptVoices),// sndComeonthen |
|
692 |
(FileName: 'parachute.ogg'; Path: ptSounds),// sndParachute |
|
693 |
(FileName: 'bump.ogg'; Path: ptSounds),// sndBump |
|
694 |
(FileName: 'hogchant3.ogg'; Path: ptSounds) // sndResurrector |
|
695 |
); |
|
696 |
||
697 |
Ammoz: array [TAmmoType] of record |
|
698 |
NameId: TAmmoStrId; |
|
699 |
NameTex: PTexture; |
|
700 |
Probability, NumberInCase: Longword; |
|
701 |
Ammo: TAmmo; |
|
702 |
Slot: 0..cMaxSlotIndex; |
|
703 |
TimeAfterTurn: Longword; |
|
704 |
minAngle, maxAngle: Longword; |
|
705 |
isDamaging: boolean; |
|
706 |
SkipTurns: Longword; |
|
707 |
PosCount: Longword; |
|
708 |
PosSprite: TSprite; |
|
709 |
ejectX, ejectY: Longint; |
|
710 |
end = ( |
|
711 |
(NameId: sidNothing; |
|
712 |
NameTex: nil; |
|
713 |
Probability: 0; |
|
714 |
NumberInCase: 0; |
|
715 |
Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_DontHold or ammoprop_Effect; |
|
716 |
Count: AMMO_INFINITE; |
|
717 |
NumPerTurn: 0; |
|
718 |
Timer: 0; |
|
719 |
Pos: 0; |
|
720 |
AmmoType: amNothing; |
|
721 |
AttackVoice: sndNone); |
|
722 |
Slot: 0; |
|
723 |
TimeAfterTurn: 0; |
|
724 |
minAngle: 0; |
|
725 |
maxAngle: 0; |
|
726 |
isDamaging: false; |
|
727 |
SkipTurns: 9999; |
|
728 |
PosCount: 1; |
|
729 |
PosSprite: sprWater; |
|
730 |
ejectX: 0; |
|
731 |
ejectY: 0), |
|
732 |
||
733 |
// Grenade |
|
734 |
(NameId: sidGrenade; |
|
735 |
NameTex: nil; |
|
736 |
Probability: 0; |
|
737 |
NumberInCase: 1; |
|
738 |
Ammo: (Propz: ammoprop_Timerable or ammoprop_Power or ammoprop_AltUse; |
|
739 |
Count: AMMO_INFINITE; |
|
740 |
NumPerTurn: 0; |
|
741 |
Timer: 3000; |
|
742 |
Pos: 0; |
|
743 |
AmmoType: amGrenade; |
|
744 |
AttackVoice: sndCover); |
|
745 |
Slot: 1; |
|
746 |
TimeAfterTurn: 3000; |
|
747 |
minAngle: 0; |
|
748 |
maxAngle: 0; |
|
749 |
isDamaging: true; |
|
750 |
SkipTurns: 0; |
|
751 |
PosCount: 1; |
|
752 |
PosSprite: sprWater; |
|
753 |
ejectX: 0; |
|
754 |
ejectY: 0), |
|
755 |
||
756 |
// ClusterBomb |
|
757 |
(NameId: sidClusterBomb; |
|
758 |
NameTex: nil; |
|
759 |
Probability: 100; |
|
760 |
NumberInCase: 3; |
|
761 |
Ammo: (Propz: ammoprop_Timerable or ammoprop_Power or ammoprop_AltUse; |
|
762 |
Count: 5; |
|
763 |
NumPerTurn: 0; |
|
764 |
Timer: 3000; |
|
765 |
Pos: 0; |
|
766 |
AmmoType: amClusterBomb; |
|
767 |
AttackVoice: sndCover); |
|
768 |
Slot: 1; |
|
769 |
TimeAfterTurn: 3000; |
|
770 |
minAngle: 0; |
|
771 |
maxAngle: 0; |
|
772 |
isDamaging: true; |
|
773 |
SkipTurns: 0; |
|
774 |
PosCount: 1; |
|
775 |
PosSprite: sprWater; |
|
776 |
ejectX: 0; |
|
777 |
ejectY: 0), |
|
778 |
||
779 |
// Bazooka |
|
780 |
(NameId: sidBazooka; |
|
781 |
NameTex: nil; |
|
782 |
Probability: 0; |
|
783 |
NumberInCase: 1; |
|
784 |
Ammo: (Propz: ammoprop_Power or ammoprop_AltUse; |
|
785 |
Count: AMMO_INFINITE; |
|
786 |
NumPerTurn: 0; |
|
787 |
Timer: 0; |
|
788 |
Pos: 0; |
|
789 |
AmmoType: amBazooka; |
|
790 |
AttackVoice: sndNone); |
|
791 |
Slot: 0; |
|
792 |
TimeAfterTurn: 3000; |
|
793 |
minAngle: 0; |
|
794 |
maxAngle: 0; |
|
795 |
isDamaging: true; |
|
796 |
SkipTurns: 0; |
|
797 |
PosCount: 1; |
|
798 |
PosSprite: sprWater; |
|
799 |
ejectX: 0; //20; |
|
800 |
ejectY: -6), |
|
801 |
||
802 |
// Bee |
|
803 |
(NameId: sidBee; |
|
804 |
NameTex: nil; |
|
805 |
Probability: 100; |
|
806 |
NumberInCase: 1; |
|
807 |
Ammo: (Propz: ammoprop_Power or ammoprop_NeedTarget or ammoprop_DontHold; |
|
808 |
Count: 2; |
|
809 |
NumPerTurn: 0; |
|
810 |
Timer: 0; |
|
811 |
Pos: 0; |
|
812 |
AmmoType: amBee; |
|
813 |
AttackVoice: sndNone); |
|
814 |
Slot: 0; |
|
815 |
TimeAfterTurn: 3000; |
|
816 |
minAngle: 0; |
|
817 |
maxAngle: 0; |
|
818 |
isDamaging: true; |
|
819 |
SkipTurns: 0; |
|
820 |
PosCount: 1; |
|
821 |
PosSprite: sprWater; |
|
822 |
ejectX: 0; //16; |
|
823 |
ejectY: 0), |
|
824 |
||
825 |
// Shotgun |
|
826 |
(NameId: sidShotgun; |
|
827 |
NameTex: nil; |
|
828 |
Probability: 0; |
|
829 |
NumberInCase: 1; |
|
830 |
Ammo: (Propz: ammoprop_ForwMsgs; |
|
831 |
Count: AMMO_INFINITE; |
|
832 |
NumPerTurn: 1; |
|
833 |
Timer: 0; |
|
834 |
Pos: 0; |
|
835 |
AmmoType: amShotgun; |
|
836 |
AttackVoice: sndNone); |
|
837 |
Slot: 2; |
|
838 |
TimeAfterTurn: 3000; |
|
839 |
minAngle: 0; |
|
840 |
maxAngle: 0; |
|
841 |
isDamaging: true; |
|
842 |
SkipTurns: 0; |
|
843 |
PosCount: 1; |
|
844 |
PosSprite: sprWater; |
|
845 |
ejectX: 0; //26; |
|
846 |
ejectY: -6), |
|
847 |
||
848 |
// PickHammer |
|
849 |
(NameId: sidPickHammer; |
|
850 |
NameTex: nil; |
|
851 |
Probability: 0; |
|
852 |
NumberInCase: 1; |
|
853 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_AttackInMove or ammoprop_NoCrosshair or ammoprop_DontHold; |
|
854 |
Count: 2; |
|
855 |
NumPerTurn: 0; |
|
856 |
Timer: 0; |
|
857 |
Pos: 0; |
|
858 |
AmmoType: amPickHammer; |
|
859 |
AttackVoice: sndNone); |
|
860 |
Slot: 6; |
|
861 |
TimeAfterTurn: 0; |
|
862 |
minAngle: 0; |
|
863 |
maxAngle: 0; |
|
864 |
isDamaging: false; |
|
865 |
SkipTurns: 0; |
|
866 |
PosCount: 1; |
|
867 |
PosSprite: sprWater; |
|
868 |
ejectX: 0; |
|
869 |
ejectY: 0), |
|
870 |
||
871 |
// Skip |
|
872 |
(NameId: sidSkip; |
|
873 |
NameTex: nil; |
|
874 |
Probability: 0; |
|
875 |
NumberInCase: 1; |
|
876 |
Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_DontHold; |
|
877 |
Count: AMMO_INFINITE; |
|
878 |
NumPerTurn: 0; |
|
879 |
Timer: 0; |
|
880 |
Pos: 0; |
|
881 |
AmmoType: amSkip; |
|
882 |
AttackVoice: sndNone); |
|
883 |
Slot: 9; |
|
884 |
TimeAfterTurn: 0; |
|
885 |
minAngle: 0; |
|
886 |
maxAngle: 0; |
|
887 |
isDamaging: false; |
|
888 |
SkipTurns: 0; |
|
889 |
PosCount: 1; |
|
890 |
PosSprite: sprWater; |
|
891 |
ejectX: 0; |
|
892 |
ejectY: 0), |
|
893 |
||
894 |
// Rope |
|
895 |
(NameId: sidRope; |
|
896 |
NameTex: nil; |
|
897 |
Probability: 100; |
|
898 |
NumberInCase: 3; |
|
899 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
900 |
ammoprop_ForwMsgs or |
|
901 |
ammoprop_AttackInMove or |
|
902 |
ammoprop_Utility or |
|
903 |
ammoprop_AltAttack; |
|
904 |
Count: 5; |
|
905 |
NumPerTurn: 0; |
|
906 |
Timer: 0; |
|
907 |
Pos: 0; |
|
908 |
AmmoType: amRope; |
|
909 |
AttackVoice: sndNone); |
|
910 |
Slot: 7; |
|
911 |
TimeAfterTurn: 0; |
|
912 |
minAngle: 0; |
|
913 |
maxAngle: cMaxAngle div 2; |
|
914 |
isDamaging: false; |
|
915 |
SkipTurns: 0; |
|
916 |
PosCount: 1; |
|
917 |
PosSprite: sprWater; |
|
918 |
ejectX: 0; |
|
919 |
ejectY: 0), |
|
920 |
||
921 |
// Mine |
|
922 |
(NameId: sidMine; |
|
923 |
NameTex: nil; |
|
924 |
Probability: 100; |
|
925 |
NumberInCase: 1; |
|
926 |
Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_AttackInMove or ammoprop_DontHold or ammoprop_AltUse; |
|
927 |
Count: 2; |
|
928 |
NumPerTurn: 0; |
|
929 |
Timer: 0; |
|
930 |
Pos: 0; |
|
931 |
AmmoType: amMine; |
|
932 |
AttackVoice: sndLaugh); |
|
933 |
Slot: 4; |
|
934 |
TimeAfterTurn: 5000; |
|
935 |
minAngle: 0; |
|
936 |
maxAngle: 0; |
|
937 |
isDamaging: true; |
|
938 |
SkipTurns: 0; |
|
939 |
PosCount: 1; |
|
940 |
PosSprite: sprWater; |
|
941 |
ejectX: 0; |
|
942 |
ejectY: 0), |
|
943 |
||
944 |
// DEagle |
|
945 |
(NameId: sidDEagle; |
|
946 |
NameTex: nil; |
|
947 |
Probability: 20; |
|
948 |
NumberInCase: 2; |
|
949 |
Ammo: (Propz: 0; |
|
950 |
Count: 3; |
|
951 |
NumPerTurn: 3; |
|
952 |
Timer: 0; |
|
953 |
Pos: 0; |
|
954 |
AmmoType: amDEagle; |
|
955 |
AttackVoice: sndNone); |
|
956 |
Slot: 2; |
|
957 |
TimeAfterTurn: 3000; |
|
958 |
minAngle: 0; |
|
959 |
maxAngle: 0; |
|
960 |
isDamaging: true; |
|
961 |
SkipTurns: 0; |
|
962 |
PosCount: 1; |
|
963 |
PosSprite: sprWater; |
|
964 |
ejectX: 0; //23; |
|
965 |
ejectY: -6), |
|
966 |
||
967 |
// Dynamite |
|
968 |
(NameId: sidDynamite; |
|
969 |
NameTex: nil; |
|
970 |
Probability: 100; |
|
971 |
NumberInCase: 1; |
|
972 |
Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_AttackInMove or ammoprop_DontHold or ammoprop_AltUse; |
|
973 |
Count: 1; |
|
974 |
NumPerTurn: 0; |
|
975 |
Timer: 0; |
|
976 |
Pos: 0; |
|
977 |
AmmoType: amDynamite; |
|
978 |
AttackVoice: sndLaugh); |
|
979 |
Slot: 4; |
|
980 |
TimeAfterTurn: 5000; |
|
981 |
minAngle: 0; |
|
982 |
maxAngle: 0; |
|
983 |
isDamaging: true; |
|
984 |
SkipTurns: 0; |
|
985 |
PosCount: 1; |
|
986 |
PosSprite: sprWater; |
|
987 |
ejectX: 0; |
|
988 |
ejectY: 0), |
|
989 |
||
990 |
// FirePunch |
|
991 |
(NameId: sidFirePunch; |
|
992 |
NameTex: nil; |
|
993 |
Probability: 0; |
|
994 |
NumberInCase: 1; |
|
995 |
Ammo: (Propz: ammoprop_NoCrosshair or ammoprop_ForwMsgs or ammoprop_AttackInMove; |
|
996 |
Count: AMMO_INFINITE; |
|
997 |
NumPerTurn: 0; |
|
998 |
Timer: 0; |
|
999 |
Pos: 0; |
|
1000 |
AmmoType: amFirePunch; |
|
1001 |
AttackVoice: sndNone); |
|
1002 |
Slot: 3; |
|
1003 |
TimeAfterTurn: 3000; |
|
1004 |
MinAngle: 0; |
|
1005 |
maxAngle: 0; |
|
1006 |
isDamaging: true; |
|
1007 |
SkipTurns: 0; |
|
1008 |
PosCount: 1; |
|
1009 |
PosSprite: sprWater; |
|
1010 |
ejectX: 0; |
|
1011 |
ejectY: 0), |
|
1012 |
||
1013 |
// Whip |
|
1014 |
(NameId: sidWhip; |
|
1015 |
NameTex: nil; |
|
1016 |
Probability: 0; |
|
1017 |
NumberInCase: 1; |
|
1018 |
Ammo: (Propz: ammoprop_NoCrosshair; |
|
1019 |
Count: AMMO_INFINITE; |
|
1020 |
NumPerTurn: 0; |
|
1021 |
Timer: 0; |
|
1022 |
Pos: 0; |
|
1023 |
AmmoType: amWhip; |
|
1024 |
AttackVoice: sndNone); |
|
1025 |
Slot: 3; |
|
1026 |
TimeAfterTurn: 3000; |
|
1027 |
MinAngle: 0; |
|
1028 |
maxAngle: 0; |
|
1029 |
isDamaging: true; |
|
1030 |
SkipTurns: 0; |
|
1031 |
PosCount: 1; |
|
1032 |
PosSprite: sprWater; |
|
1033 |
ejectX: 0; |
|
1034 |
ejectY: 0), |
|
1035 |
||
1036 |
// BaseballBat |
|
1037 |
(NameId: sidBaseballBat; |
|
1038 |
NameTex: nil; |
|
1039 |
Probability: 100; |
|
1040 |
NumberInCase: 1; |
|
1041 |
Ammo: (Propz: ammoprop_DontHold; |
|
1042 |
Count: 1; |
|
1043 |
NumPerTurn: 0; |
|
1044 |
Timer: 0; |
|
1045 |
Pos: 0; |
|
1046 |
AmmoType: amBaseballBat; |
|
1047 |
AttackVoice: sndNone); |
|
1048 |
Slot: 3; |
|
1049 |
TimeAfterTurn: 5000; |
|
1050 |
minAngle: 0; |
|
1051 |
maxAngle: cMaxAngle div 2; |
|
1052 |
isDamaging: true; |
|
1053 |
SkipTurns: 2; |
|
1054 |
PosCount: 1; |
|
1055 |
PosSprite: sprWater; |
|
1056 |
ejectX: 0; |
|
1057 |
ejectY: 0), |
|
1058 |
||
1059 |
// Parachute |
|
1060 |
(NameId: sidParachute; |
|
1061 |
NameTex: nil; |
|
1062 |
Probability: 100; |
|
1063 |
NumberInCase: 1; |
|
1064 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1065 |
ammoprop_ForwMsgs or |
|
1066 |
ammoprop_AttackInMove or |
|
1067 |
ammoprop_NoCrosshair or |
|
1068 |
ammoprop_DontHold or |
|
1069 |
ammoprop_Utility or |
|
1070 |
ammoprop_AltAttack; |
|
1071 |
Count: 2; |
|
1072 |
NumPerTurn: 0; |
|
1073 |
Timer: 0; |
|
1074 |
Pos: 0; |
|
1075 |
AmmoType: amParachute; |
|
1076 |
AttackVoice: sndNone); |
|
1077 |
Slot: 7; |
|
1078 |
TimeAfterTurn: 0; |
|
1079 |
minAngle: 0; |
|
1080 |
maxAngle: 0; |
|
1081 |
isDamaging: false; |
|
1082 |
SkipTurns: 0; |
|
1083 |
PosCount: 1; |
|
1084 |
PosSprite: sprWater; |
|
1085 |
ejectX: 0; |
|
1086 |
ejectY: 0), |
|
1087 |
||
1088 |
// AirAttack |
|
1089 |
(NameId: sidAirAttack; |
|
1090 |
NameTex: nil; |
|
1091 |
Probability: 100; |
|
1092 |
NumberInCase: 1; |
|
1093 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1094 |
ammoprop_NeedTarget or |
|
1095 |
ammoprop_AttackingPut or |
|
1096 |
ammoprop_DontHold or |
|
1097 |
ammoprop_NotBorder; |
|
1098 |
Count: 1; |
|
1099 |
NumPerTurn: 0; |
|
1100 |
Timer: 0; |
|
1101 |
Pos: 0; |
|
1102 |
AmmoType: amAirAttack; |
|
1103 |
AttackVoice: sndIncoming); |
|
1104 |
Slot: 5; |
|
1105 |
TimeAfterTurn: 0; |
|
1106 |
minAngle: 0; |
|
1107 |
maxAngle: 0; |
|
1108 |
isDamaging: true; |
|
1109 |
SkipTurns: 5; |
|
1110 |
PosCount: 2; |
|
1111 |
PosSprite: sprAmAirplane; |
|
1112 |
ejectX: 0; |
|
1113 |
ejectY: 0), |
|
1114 |
||
1115 |
// MineStrike |
|
1116 |
(NameId: sidMineStrike; |
|
1117 |
NameTex: nil; |
|
1118 |
Probability: 200; |
|
1119 |
NumberInCase: 1; |
|
1120 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1121 |
ammoprop_NeedTarget or |
|
1122 |
ammoprop_AttackingPut or |
|
1123 |
ammoprop_DontHold or |
|
1124 |
ammoprop_NotBorder; |
|
1125 |
Count: 1; |
|
1126 |
NumPerTurn: 0; |
|
1127 |
Timer: 0; |
|
1128 |
Pos: 0; |
|
1129 |
AmmoType: amMineStrike; |
|
1130 |
AttackVoice: sndIncoming); |
|
1131 |
Slot: 5; |
|
1132 |
TimeAfterTurn: 0; |
|
1133 |
minAngle: 0; |
|
1134 |
maxAngle: 0; |
|
1135 |
isDamaging: true; |
|
1136 |
SkipTurns: 5; |
|
1137 |
PosCount: 2; |
|
1138 |
PosSprite: sprAmAirplane; |
|
1139 |
ejectX: 0; |
|
1140 |
ejectY: 0), |
|
1141 |
||
1142 |
// BlowTorch |
|
1143 |
(NameId: sidBlowTorch; |
|
1144 |
NameTex: nil; |
|
1145 |
Probability: 100; |
|
1146 |
NumberInCase: 2; |
|
1147 |
Ammo: (Propz: ammoprop_ForwMsgs; |
|
1148 |
Count: 1; |
|
1149 |
NumPerTurn: 0; |
|
1150 |
Timer: 0; |
|
1151 |
Pos: 0; |
|
1152 |
AmmoType: amBlowTorch; |
|
1153 |
AttackVoice: sndNone); |
|
1154 |
Slot: 6; |
|
1155 |
TimeAfterTurn: 3000; |
|
1156 |
minAngle: 768; |
|
1157 |
maxAngle: 1280; |
|
1158 |
isDamaging: false; |
|
1159 |
SkipTurns: 0; |
|
1160 |
PosCount: 1; |
|
1161 |
PosSprite: sprWater; |
|
1162 |
ejectX: 0; |
|
1163 |
ejectY: 0), |
|
1164 |
||
1165 |
// Girder |
|
1166 |
(NameId: sidGirder; |
|
1167 |
NameTex: nil; |
|
1168 |
Probability: 150; |
|
1169 |
NumberInCase: 3; |
|
1170 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1171 |
ammoprop_NoCrosshair or |
|
1172 |
ammoprop_NeedTarget or |
|
1173 |
ammoprop_Utility or |
|
1174 |
ammoprop_AttackingPut; |
|
1175 |
Count: 1; |
|
1176 |
NumPerTurn: 0; |
|
1177 |
Timer: 0; |
|
1178 |
Pos: 0; |
|
1179 |
AmmoType: amGirder; |
|
1180 |
AttackVoice: sndNone); |
|
1181 |
Slot: 6; |
|
1182 |
TimeAfterTurn: 3000; |
|
1183 |
minAngle: 0; |
|
1184 |
maxAngle: 0; |
|
1185 |
isDamaging: false; |
|
1186 |
SkipTurns: 0; |
|
1187 |
PosCount: 8; |
|
1188 |
PosSprite: sprAmGirder; |
|
1189 |
ejectX: 0; |
|
1190 |
ejectY: 0), |
|
1191 |
||
1192 |
// Teleport |
|
1193 |
(NameId: sidTeleport; |
|
1194 |
NameTex: nil; |
|
1195 |
Probability: 200; |
|
1196 |
NumberInCase: 1; |
|
1197 |
Ammo: (Propz: ammoprop_ForwMsgs or |
|
1198 |
ammoprop_NoCrosshair or |
|
1199 |
ammoprop_NeedTarget or |
|
1200 |
ammoprop_AttackingPut or |
|
1201 |
ammoprop_Utility or |
|
1202 |
ammoprop_DontHold; |
|
1203 |
Count: 2; |
|
1204 |
NumPerTurn: 0; |
|
1205 |
Timer: 0; |
|
1206 |
Pos: 0; |
|
1207 |
AmmoType: amTeleport; |
|
1208 |
AttackVoice: sndNone); |
|
1209 |
Slot: 7; |
|
1210 |
TimeAfterTurn: 0; |
|
1211 |
minAngle: 0; |
|
1212 |
maxAngle: 0; |
|
1213 |
isDamaging: false; |
|
1214 |
SkipTurns: 0; |
|
1215 |
PosCount: 2; |
|
1216 |
PosSprite: sprAmTeleport; |
|
1217 |
ejectX: 0; |
|
1218 |
ejectY: 0), |
|
1219 |
||
1220 |
// Switch |
|
1221 |
(NameId: sidSwitch; |
|
1222 |
NameTex: nil; |
|
1223 |
Probability: 100; |
|
1224 |
NumberInCase: 1; |
|
1225 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1226 |
ammoprop_ForwMsgs or |
|
1227 |
ammoprop_NoCrosshair or |
|
1228 |
ammoprop_Utility or |
|
1229 |
ammoprop_DontHold; |
|
1230 |
Count: 3; |
|
1231 |
NumPerTurn: 0; |
|
1232 |
Timer: 0; |
|
1233 |
Pos: 0; |
|
1234 |
AmmoType: amSwitch; |
|
1235 |
AttackVoice: sndNone); |
|
1236 |
Slot: 9; |
|
1237 |
TimeAfterTurn: 0; |
|
1238 |
minAngle: 0; |
|
1239 |
maxAngle: 0; |
|
1240 |
isDamaging: false; |
|
1241 |
SkipTurns: 0; |
|
1242 |
PosCount: 1; |
|
1243 |
PosSprite: sprWater; |
|
1244 |
ejectX: 0; |
|
1245 |
ejectY: 0), |
|
1246 |
||
1247 |
// Mortar |
|
1248 |
(NameId: sidMortar; |
|
1249 |
NameTex: nil; |
|
1250 |
Probability: 100; |
|
1251 |
NumberInCase: 4; |
|
1252 |
Ammo: (Propz: 0; |
|
1253 |
Count: 4; |
|
1254 |
NumPerTurn: 0; |
|
1255 |
Timer: 0; |
|
1256 |
Pos: 0; |
|
1257 |
AmmoType: amMortar; |
|
1258 |
AttackVoice: sndNone); |
|
1259 |
Slot: 0; |
|
1260 |
TimeAfterTurn: 3000; |
|
1261 |
minAngle: 0; |
|
1262 |
maxAngle: 0; |
|
1263 |
isDamaging: true; |
|
1264 |
SkipTurns: 0; |
|
1265 |
PosCount: 1; |
|
1266 |
PosSprite: sprWater; |
|
1267 |
ejectX: 0; //20; |
|
1268 |
ejectY: -6), |
|
1269 |
||
1270 |
// Kamikaze |
|
1271 |
(NameId: sidKamikaze; |
|
1272 |
NameTex: nil; |
|
1273 |
Probability: 100; |
|
1274 |
NumberInCase: 1; |
|
1275 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_DontHold or ammoprop_AttackInMove; |
|
1276 |
Count: 1; |
|
1277 |
NumPerTurn: 0; |
|
1278 |
Timer: 0; |
|
1279 |
Pos: 0; |
|
1280 |
AmmoType: amKamikaze; |
|
1281 |
AttackVoice: sndNone); |
|
1282 |
Slot: 3; |
|
1283 |
TimeAfterTurn: 0; |
|
1284 |
minAngle: 0; |
|
1285 |
maxAngle: 0; |
|
1286 |
isDamaging: true; |
|
1287 |
SkipTurns: 0; |
|
1288 |
PosCount: 1; |
|
1289 |
PosSprite: sprWater; |
|
1290 |
ejectX: 0; |
|
1291 |
ejectY: 0), |
|
1292 |
||
1293 |
// Cake |
|
1294 |
(NameId: sidCake; |
|
1295 |
NameTex: nil; |
|
1296 |
Probability: 100; |
|
1297 |
NumberInCase: 1; |
|
1298 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_NoCrosshair or ammoprop_DontHold; |
|
1299 |
Count: 1; |
|
1300 |
NumPerTurn: 0; |
|
1301 |
Timer: 0; |
|
1302 |
Pos: 0; |
|
1303 |
AmmoType: amCake; |
|
1304 |
AttackVoice: sndLaugh); |
|
1305 |
Slot: 4; |
|
1306 |
TimeAfterTurn: 0; |
|
1307 |
minAngle: 0; |
|
1308 |
maxAngle: 0; |
|
1309 |
isDamaging: true; |
|
1310 |
SkipTurns: 4; |
|
1311 |
PosCount: 1; |
|
1312 |
PosSprite: sprWater; |
|
1313 |
ejectX: 0; |
|
1314 |
ejectY: 0), |
|
1315 |
||
1316 |
// Seduction |
|
1317 |
(NameId: sidSeduction; |
|
1318 |
NameTex: nil; |
|
1319 |
Probability: 100; |
|
1320 |
NumberInCase: 1; |
|
1321 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_DontHold; |
|
1322 |
Count: 1; |
|
1323 |
NumPerTurn: 0; |
|
1324 |
Timer: 0; |
|
1325 |
Pos: 0; |
|
1326 |
AmmoType: amSeduction; |
|
1327 |
AttackVoice: sndNone); |
|
1328 |
Slot: 3; |
|
1329 |
TimeAfterTurn: 0; |
|
1330 |
minAngle: 0; |
|
1331 |
maxAngle: 0; |
|
1332 |
isDamaging: false; |
|
1333 |
SkipTurns: 0; |
|
1334 |
PosCount: 1; |
|
1335 |
PosSprite: sprWater; |
|
1336 |
ejectX: 0; |
|
1337 |
ejectY: 0), |
|
1338 |
||
1339 |
// Watermelon |
|
1340 |
(NameId: sidWatermelon; |
|
1341 |
NameTex: nil; |
|
1342 |
Probability: 400; |
|
1343 |
NumberInCase: 1; |
|
1344 |
Ammo: (Propz: ammoprop_Timerable or ammoprop_Power or ammoprop_AltUse; |
|
1345 |
Count: 0; |
|
1346 |
NumPerTurn: 0; |
|
1347 |
Timer: 3000; |
|
1348 |
Pos: 0; |
|
1349 |
AmmoType: amWatermelon; |
|
1350 |
AttackVoice: sndMelon); |
|
1351 |
Slot: 1; |
|
1352 |
TimeAfterTurn: 3000; |
|
1353 |
minAngle: 0; |
|
1354 |
maxAngle: 0; |
|
1355 |
isDamaging: true; |
|
1356 |
SkipTurns: 0; |
|
1357 |
PosCount: 1; |
|
1358 |
PosSprite: sprWater; |
|
1359 |
ejectX: 0; |
|
1360 |
ejectY: 0), |
|
1361 |
||
1362 |
// HellishBomb ("Hellish Hand-Grenade") |
|
1363 |
(NameId: sidHellishBomb; |
|
1364 |
NameTex: nil; |
|
1365 |
Probability: 400; |
|
1366 |
NumberInCase: 1; |
|
1367 |
Ammo: (Propz: ammoprop_Power or ammoprop_AltUse; |
|
1368 |
Count: 0; |
|
1369 |
NumPerTurn: 0; |
|
1370 |
Timer: 5000; |
|
1371 |
Pos: 0; |
|
1372 |
AmmoType: amHellishBomb; |
|
1373 |
AttackVoice: sndNone); |
|
1374 |
Slot: 1; |
|
1375 |
TimeAfterTurn: 3000; |
|
1376 |
minAngle: 0; |
|
1377 |
maxAngle: 0; |
|
1378 |
isDamaging: true; |
|
1379 |
SkipTurns: 0; |
|
1380 |
PosCount: 1; |
|
1381 |
PosSprite: sprWater; |
|
1382 |
ejectX: 0; |
|
1383 |
ejectY: 0), |
|
1384 |
||
1385 |
// Napalm |
|
1386 |
(NameId: sidNapalm; |
|
1387 |
NameTex: nil; |
|
1388 |
Probability: 100; |
|
1389 |
NumberInCase: 1; |
|
1390 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1391 |
ammoprop_NeedTarget or |
|
1392 |
ammoprop_AttackingPut or |
|
1393 |
ammoprop_DontHold or |
|
1394 |
ammoprop_NotBorder; |
|
1395 |
Count: 1; |
|
1396 |
NumPerTurn: 0; |
|
1397 |
Timer: 0; |
|
1398 |
Pos: 0; |
|
1399 |
AmmoType: amNapalm; |
|
1400 |
AttackVoice: sndIncoming); |
|
1401 |
Slot: 5; |
|
1402 |
TimeAfterTurn: 0; |
|
1403 |
minAngle: 0; |
|
1404 |
maxAngle: 0; |
|
1405 |
isDamaging: true; |
|
1406 |
SkipTurns: 7; |
|
1407 |
PosCount: 2; |
|
1408 |
PosSprite: sprAmAirplane; |
|
1409 |
ejectX: 0; |
|
1410 |
ejectY: 0), |
|
1411 |
||
1412 |
// Drill ("Drill Rocket") |
|
1413 |
(NameId: sidDrill; |
|
1414 |
NameTex: nil; |
|
1415 |
Probability: 300; |
|
1416 |
NumberInCase: 1; |
|
1417 |
Ammo: (Propz: ammoprop_Power or ammoprop_AltUse; |
|
1418 |
Count: AMMO_INFINITE; |
|
1419 |
NumPerTurn: 0; |
|
1420 |
Timer: 0; |
|
1421 |
Pos: 0; |
|
1422 |
AmmoType: amDrill; |
|
1423 |
AttackVoice: sndNone); |
|
1424 |
Slot: 0; |
|
1425 |
TimeAfterTurn: 3000; |
|
1426 |
minAngle: 0; |
|
1427 |
maxAngle: 0; |
|
1428 |
isDamaging: true; |
|
1429 |
SkipTurns: 0; |
|
1430 |
PosCount: 1; |
|
1431 |
PosSprite: sprDrill; |
|
1432 |
ejectX: 0; //20; |
|
1433 |
ejectY: -6), |
|
1434 |
||
1435 |
// Ballgun |
|
1436 |
(NameId: sidBallgun; |
|
1437 |
NameTex: nil; |
|
1438 |
Probability: 400; |
|
1439 |
NumberInCase: 1; |
|
1440 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_DontHold; |
|
1441 |
Count: AMMO_INFINITE; |
|
1442 |
NumPerTurn: 0; |
|
1443 |
Timer: 5001; |
|
1444 |
Pos: 0; |
|
1445 |
AmmoType: amBallgun; |
|
1446 |
AttackVoice: sndNone); |
|
1447 |
Slot: 4; |
|
1448 |
TimeAfterTurn: 0; |
|
1449 |
minAngle: 0; |
|
1450 |
maxAngle: 0; |
|
1451 |
isDamaging: true; |
|
1452 |
SkipTurns: 0; |
|
1453 |
PosCount: 1; |
|
1454 |
PosSprite: sprWater; |
|
1455 |
ejectX: 0; //20; |
|
1456 |
ejectY: -3), |
|
1457 |
||
1458 |
// RC-Plane |
|
1459 |
(NameId: sidRCPlane; |
|
1460 |
NameTex: nil; |
|
1461 |
Probability: 200; |
|
1462 |
NumberInCase: 1; |
|
1463 |
Ammo: (Propz: ammoprop_ForwMsgs{ or |
|
1464 |
ammoprop_DontHold or |
|
1465 |
ammoprop_AltAttack}; |
|
1466 |
Count: 1; |
|
1467 |
NumPerTurn: 0; |
|
1468 |
Timer: 0; |
|
1469 |
Pos: 0; |
|
1470 |
AmmoType: amRCPlane; |
|
1471 |
AttackVoice: sndNone); |
|
1472 |
Slot: 4; |
|
1473 |
TimeAfterTurn: 0; |
|
1474 |
minAngle: 0; |
|
1475 |
maxAngle: 0; |
|
1476 |
isDamaging: true; |
|
1477 |
SkipTurns: 4; |
|
1478 |
PosCount: 1; |
|
1479 |
PosSprite: sprWater; |
|
1480 |
ejectX: 0; |
|
1481 |
ejectY: 0), |
|
1482 |
||
1483 |
// LowGravity |
|
1484 |
(NameId: sidLowGravity; |
|
1485 |
NameTex: nil; |
|
1486 |
Probability: 20; |
|
1487 |
NumberInCase: 1; |
|
1488 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1489 |
ammoprop_NoCrosshair or |
|
1490 |
ammoprop_DontHold or |
|
1491 |
ammoprop_AltUse or |
|
1492 |
ammoprop_Utility or |
|
1493 |
ammoprop_Effect; |
|
1494 |
Count: 1; |
|
1495 |
NumPerTurn: 0; |
|
1496 |
Timer: 0; |
|
1497 |
Pos: 0; |
|
1498 |
AmmoType: amLowGravity; |
|
1499 |
AttackVoice: sndNone); |
|
1500 |
Slot: 9; |
|
1501 |
TimeAfterTurn: 0; |
|
1502 |
minAngle: 0; |
|
1503 |
maxAngle: 0; |
|
1504 |
isDamaging: false; |
|
1505 |
SkipTurns: 0; |
|
1506 |
PosCount: 1; |
|
1507 |
PosSprite: sprWater; |
|
1508 |
ejectX: 0; |
|
1509 |
ejectY: 0), |
|
1510 |
||
1511 |
// ExtraDamage |
|
1512 |
(NameId: sidExtraDamage; |
|
1513 |
NameTex: nil; |
|
1514 |
Probability: 15; |
|
1515 |
NumberInCase: 1; |
|
1516 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1517 |
ammoprop_NoCrosshair or |
|
1518 |
ammoprop_DontHold or |
|
1519 |
ammoprop_AltUse or |
|
1520 |
ammoprop_Utility or |
|
1521 |
ammoprop_Effect; |
|
1522 |
Count: 1; |
|
1523 |
NumPerTurn: 0; |
|
1524 |
Timer: 0; |
|
1525 |
Pos: 0; |
|
1526 |
AmmoType: amExtraDamage; |
|
1527 |
AttackVoice: sndNone); |
|
1528 |
Slot: 9; |
|
1529 |
TimeAfterTurn: 0; |
|
1530 |
minAngle: 0; |
|
1531 |
maxAngle: 0; |
|
1532 |
isDamaging: false; |
|
1533 |
SkipTurns: 0; |
|
1534 |
PosCount: 1; |
|
1535 |
PosSprite: sprWater; |
|
1536 |
ejectX: 0; |
|
1537 |
ejectY: 0), |
|
1538 |
||
1539 |
// Invulnerable |
|
1540 |
(NameId: sidInvulnerable; |
|
1541 |
NameTex: nil; |
|
1542 |
Probability: 20; |
|
1543 |
NumberInCase: 1; |
|
1544 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1545 |
ammoprop_NoCrosshair or |
|
1546 |
ammoprop_DontHold or |
|
1547 |
ammoprop_AltUse or |
|
1548 |
ammoprop_Utility or |
|
1549 |
ammoprop_Effect; |
|
1550 |
Count: 1; |
|
1551 |
NumPerTurn: 0; |
|
1552 |
Timer: 0; |
|
1553 |
Pos: 0; |
|
1554 |
AmmoType: amInvulnerable; |
|
1555 |
AttackVoice: sndNone); |
|
1556 |
Slot: 8; |
|
1557 |
TimeAfterTurn: 0; |
|
1558 |
minAngle: 0; |
|
1559 |
maxAngle: 0; |
|
1560 |
isDamaging: false; |
|
1561 |
SkipTurns: 0; |
|
1562 |
PosCount: 1; |
|
1563 |
PosSprite: sprWater; |
|
1564 |
ejectX: 0; |
|
1565 |
ejectY: 0), |
|
1566 |
||
1567 |
// ExtraTime |
|
1568 |
(NameId: sidExtraTime; |
|
1569 |
NameTex: nil; |
|
1570 |
Probability: 30; |
|
1571 |
NumberInCase: 1; |
|
1572 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1573 |
ammoprop_NoCrosshair or |
|
1574 |
ammoprop_DontHold or |
|
1575 |
ammoprop_AltUse or |
|
1576 |
ammoprop_Utility or |
|
1577 |
ammoprop_Effect; |
|
1578 |
Count: 1; |
|
1579 |
NumPerTurn: 0; |
|
1580 |
Timer: 0; |
|
1581 |
Pos: 0; |
|
1582 |
AmmoType: amExtraTime; |
|
1583 |
AttackVoice: sndNone); |
|
1584 |
Slot: 9; |
|
1585 |
TimeAfterTurn: 0; |
|
1586 |
minAngle: 0; |
|
1587 |
maxAngle: 0; |
|
1588 |
isDamaging: false; |
|
1589 |
SkipTurns: 0; |
|
1590 |
PosCount: 1; |
|
1591 |
PosSprite: sprWater; |
|
1592 |
ejectX: 0; |
|
1593 |
ejectY: 0), |
|
1594 |
||
1595 |
// LaserSight |
|
1596 |
(NameId: sidLaserSight; |
|
1597 |
NameTex: nil; |
|
1598 |
Probability: 15; |
|
1599 |
NumberInCase: 1; |
|
1600 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1601 |
ammoprop_NoCrosshair or |
|
1602 |
ammoprop_DontHold or |
|
1603 |
ammoprop_AltUse or |
|
1604 |
ammoprop_Utility or |
|
1605 |
ammoprop_Effect; |
|
1606 |
Count: 1; |
|
1607 |
NumPerTurn: 0; |
|
1608 |
Timer: 0; |
|
1609 |
Pos: 0; |
|
1610 |
AmmoType: amLaserSight; |
|
1611 |
AttackVoice: sndNone); |
|
1612 |
Slot: 8; |
|
1613 |
TimeAfterTurn: 0; |
|
1614 |
minAngle: 0; |
|
1615 |
maxAngle: 0; |
|
1616 |
isDamaging: false; |
|
1617 |
SkipTurns: 0; |
|
1618 |
PosCount: 1; |
|
1619 |
PosSprite: sprWater; |
|
1620 |
ejectX: 0; |
|
1621 |
ejectY: 0), |
|
1622 |
||
1623 |
// Vampiric |
|
1624 |
(NameId: sidVampiric; |
|
1625 |
NameTex: nil; |
|
1626 |
Probability: 15; |
|
1627 |
NumberInCase: 1; |
|
1628 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1629 |
ammoprop_NoCrosshair or |
|
1630 |
ammoprop_DontHold or |
|
1631 |
ammoprop_AltUse or |
|
1632 |
ammoprop_Utility or |
|
1633 |
ammoprop_Effect; |
|
1634 |
Count: 1; |
|
1635 |
NumPerTurn: 0; |
|
1636 |
Timer: 0; |
|
1637 |
Pos: 0; |
|
1638 |
AmmoType: amVampiric; |
|
1639 |
AttackVoice: sndNone); |
|
1640 |
Slot: 8; |
|
1641 |
TimeAfterTurn: 0; |
|
1642 |
minAngle: 0; |
|
1643 |
maxAngle: 0; |
|
1644 |
isDamaging: false; |
|
1645 |
SkipTurns: 0; |
|
1646 |
PosCount: 1; |
|
1647 |
PosSprite: sprWater; |
|
1648 |
ejectX: 0; |
|
1649 |
ejectY: 0), |
|
1650 |
||
1651 |
// SniperRifle |
|
1652 |
(NameId: sidSniperRifle; |
|
1653 |
NameTex: nil; |
|
1654 |
Probability: 20; |
|
1655 |
NumberInCase: 2; |
|
1656 |
Ammo: (Propz: 0; |
|
1657 |
Count: 2; |
|
1658 |
NumPerTurn: 1; |
|
1659 |
Timer: 0; |
|
1660 |
Pos: 0; |
|
1661 |
AmmoType: amSniperRifle; |
|
1662 |
AttackVoice: sndNone); |
|
1663 |
Slot: 2; |
|
1664 |
TimeAfterTurn: 3000; |
|
1665 |
minAngle: 0; |
|
1666 |
maxAngle: 0; |
|
1667 |
isDamaging: true; |
|
1668 |
SkipTurns: 0; |
|
1669 |
PosCount: 1; |
|
1670 |
PosSprite: sprWater; |
|
1671 |
ejectX: 0; //40; |
|
1672 |
ejectY: -5), |
|
1673 |
||
1674 |
// Jetpack ("Flying Saucer") |
|
1675 |
(NameId: sidJetpack; |
|
1676 |
NameTex: nil; |
|
1677 |
Probability: 20; |
|
1678 |
NumberInCase: 1; |
|
1679 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1680 |
ammoprop_ForwMsgs or |
|
1681 |
ammoprop_AttackInMove or |
|
1682 |
ammoprop_NoCrosshair or |
|
1683 |
ammoprop_DontHold or |
|
1684 |
ammoprop_Utility or |
|
1685 |
ammoprop_AltAttack; |
|
1686 |
Count: 1; |
|
1687 |
NumPerTurn: 0; |
|
1688 |
Timer: 0; |
|
1689 |
Pos: 0; |
|
1690 |
AmmoType: amJetpack; |
|
1691 |
AttackVoice: sndNone); |
|
1692 |
Slot: 7; |
|
1693 |
TimeAfterTurn: 3000; |
|
1694 |
minAngle: 0; |
|
1695 |
maxAngle: 0; |
|
1696 |
isDamaging: false; |
|
1697 |
SkipTurns: 0; |
|
1698 |
PosCount: 1; |
|
1699 |
PosSprite: sprWater; |
|
1700 |
ejectX: 0; |
|
1701 |
ejectY: 0), |
|
1702 |
||
1703 |
// Molotov |
|
1704 |
(NameId: sidMolotov; |
|
1705 |
NameTex: nil; |
|
1706 |
Probability: 0; |
|
1707 |
NumberInCase: 1; |
|
1708 |
Ammo: (Propz: ammoprop_Power or ammoprop_AltUse; |
|
1709 |
Count: AMMO_INFINITE; |
|
1710 |
NumPerTurn: 0; |
|
1711 |
Timer: 3000; |
|
1712 |
Pos: 0; |
|
1713 |
AmmoType: amMolotov; |
|
1714 |
AttackVoice: sndNone); |
|
1715 |
Slot: 1; |
|
1716 |
TimeAfterTurn: 3000; |
|
1717 |
minAngle: 0; |
|
1718 |
maxAngle: 0; |
|
1719 |
isDamaging: true; |
|
1720 |
SkipTurns: 0; |
|
1721 |
PosCount: 1; |
|
1722 |
PosSprite: sprWater; |
|
1723 |
ejectX: 0; |
|
1724 |
ejectY: 0), |
|
1725 |
||
1726 |
// Birdy |
|
1727 |
(NameId: sidBirdy; |
|
1728 |
NameTex: nil; |
|
1729 |
Probability: 20; |
|
1730 |
NumberInCase: 1; |
|
1731 |
Ammo: (Propz: ammoprop_ForwMsgs or |
|
1732 |
ammoprop_NoCrosshair or |
|
1733 |
ammoprop_DontHold; |
|
1734 |
Count: 1; |
|
1735 |
NumPerTurn: 0; |
|
1736 |
Timer: 0; |
|
1737 |
Pos: 0; |
|
1738 |
AmmoType: amBirdy; |
|
1739 |
AttackVoice: sndNone); |
|
1740 |
Slot: 7; |
|
1741 |
TimeAfterTurn: 3000; |
|
1742 |
minAngle: 0; |
|
1743 |
maxAngle: 0; |
|
1744 |
isDamaging: true; |
|
1745 |
SkipTurns: 0; |
|
1746 |
PosCount: 1; |
|
1747 |
PosSprite: sprWater; |
|
1748 |
ejectX: 0; |
|
1749 |
ejectY: 0), |
|
1750 |
||
1751 |
// PortalGun |
|
1752 |
(NameId: sidPortalGun; |
|
1753 |
NameTex: nil; |
|
1754 |
Probability: 20; |
|
1755 |
NumberInCase: 1; |
|
1756 |
Ammo: (Propz: ammoprop_NoRoundEnd or |
|
1757 |
ammoprop_AttackInMove or |
|
1758 |
ammoprop_DontHold or |
|
1759 |
ammoprop_Utility; |
|
1760 |
Count: 1; |
|
1761 |
NumPerTurn: 3; |
|
1762 |
Timer: 0; |
|
1763 |
Pos: 0; |
|
1764 |
AmmoType: amPortalGun; |
|
1765 |
AttackVoice: sndNone); |
|
1766 |
Slot: 6; |
|
1767 |
TimeAfterTurn: 0; |
|
1768 |
minAngle: 0; |
|
1769 |
maxAngle: 0; |
|
1770 |
isDamaging: false; |
|
1771 |
SkipTurns: 0; |
|
1772 |
PosCount: 1; |
|
1773 |
PosSprite: sprWater; |
|
1774 |
ejectX: -5; //29; |
|
1775 |
ejectY: -7), |
|
1776 |
||
1777 |
// Piano |
|
1778 |
(NameId: sidPiano; |
|
1779 |
NameTex: nil; |
|
1780 |
Probability: 100; |
|
1781 |
NumberInCase: 1; |
|
1782 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1783 |
ammoprop_NeedTarget or |
|
1784 |
ammoprop_AttackingPut or |
|
1785 |
ammoprop_DontHold or |
|
1786 |
ammoprop_NotBorder; |
|
1787 |
Count: 1; |
|
1788 |
NumPerTurn: 0; |
|
1789 |
Timer: 0; |
|
1790 |
Pos: 0; |
|
1791 |
AmmoType: amPiano; |
|
1792 |
AttackVoice: sndIncoming); |
|
1793 |
Slot: 5; |
|
1794 |
TimeAfterTurn: 0; |
|
1795 |
minAngle: 0; |
|
1796 |
maxAngle: 0; |
|
1797 |
isDamaging: true; |
|
1798 |
SkipTurns: 7; |
|
1799 |
PosCount: 1; |
|
1800 |
PosSprite: sprWater; |
|
1801 |
ejectX: 0; |
|
1802 |
ejectY: 0), |
|
1803 |
||
1804 |
// GasBomb |
|
1805 |
(NameId: sidGasBomb; |
|
1806 |
NameTex: nil; |
|
1807 |
Probability: 0; |
|
1808 |
NumberInCase: 1; |
|
1809 |
Ammo: (Propz: ammoprop_Timerable or ammoprop_Power or ammoprop_AltUse; |
|
1810 |
Count: AMMO_INFINITE; |
|
1811 |
NumPerTurn: 0; |
|
1812 |
Timer: 3000; |
|
1813 |
Pos: 0; |
|
1814 |
AmmoType: amGasBomb; |
|
1815 |
AttackVoice: sndCover); |
|
1816 |
Slot: 1; |
|
1817 |
TimeAfterTurn: 3000; |
|
1818 |
minAngle: 0; |
|
1819 |
maxAngle: 0; |
|
1820 |
isDamaging: true; |
|
1821 |
SkipTurns: 0; |
|
1822 |
PosCount: 1; |
|
1823 |
PosSprite: sprWater; |
|
1824 |
ejectX: 0; |
|
1825 |
ejectY: 0), |
|
1826 |
||
1827 |
// SineGun |
|
1828 |
(NameId: sidSineGun; |
|
1829 |
NameTex: nil; |
|
1830 |
Probability: 20; |
|
1831 |
NumberInCase: 2; |
|
1832 |
Ammo: (Propz: ammoprop_AttackInMove; |
|
1833 |
Count: 1; |
|
1834 |
NumPerTurn: 0; |
|
1835 |
Timer: 0; |
|
1836 |
Pos: 0; |
|
1837 |
AmmoType: amSineGun; |
|
1838 |
AttackVoice: sndNone); |
|
1839 |
Slot: 2; |
|
1840 |
TimeAfterTurn: 0; |
|
1841 |
minAngle: 0; |
|
1842 |
maxAngle: 0; |
|
1843 |
isDamaging: true; |
|
1844 |
SkipTurns: 0; |
|
1845 |
PosCount: 1; |
|
1846 |
PosSprite: sprWater; |
|
1847 |
ejectX: 0; |
|
1848 |
ejectY: 0), |
|
1849 |
||
1850 |
// Flamethrower |
|
1851 |
(NameId: sidFlamethrower; |
|
1852 |
NameTex: nil; |
|
1853 |
Probability: 20; |
|
1854 |
NumberInCase: 1; |
|
1855 |
Ammo: (Propz: ammoprop_ForwMsgs or ammoprop_DontHold; |
|
1856 |
Count: 1; |
|
1857 |
NumPerTurn: 0; |
|
1858 |
Timer: 5001; |
|
1859 |
Pos: 0; |
|
1860 |
AmmoType: amFlamethrower; |
|
1861 |
AttackVoice: sndNone); |
|
1862 |
Slot: 2; |
|
1863 |
TimeAfterTurn: 0; |
|
1864 |
minAngle: 0; |
|
1865 |
maxAngle: 0; |
|
1866 |
isDamaging: true; |
|
1867 |
SkipTurns: 0; |
|
1868 |
PosCount: 1; |
|
1869 |
PosSprite: sprWater; |
|
1870 |
ejectX: 0; //20; |
|
1871 |
ejectY: -3), |
|
1872 |
||
1873 |
// Sticky Mine |
|
1874 |
(NameId: sidSMine; |
|
1875 |
NameTex: nil; |
|
1876 |
Probability: 100; |
|
1877 |
NumberInCase: 1; |
|
1878 |
Ammo: (Propz: ammoprop_Power; //FIXME: enable multishoot at altuse, until then removed ammoprop_AltUse |
|
1879 |
Count: 1; |
|
1880 |
NumPerTurn: 1; |
|
1881 |
Timer: 0; |
|
1882 |
Pos: 0; |
|
1883 |
AmmoType: amSMine; |
|
1884 |
AttackVoice: sndLaugh); |
|
1885 |
Slot: 4; |
|
1886 |
TimeAfterTurn: 5000; |
|
1887 |
minAngle: 0; |
|
1888 |
maxAngle: 0; |
|
1889 |
isDamaging: true; |
|
1890 |
SkipTurns: 0; |
|
1891 |
PosCount: 1; |
|
1892 |
PosSprite: sprWater; |
|
1893 |
ejectX: 0; |
|
1894 |
ejectY: 0), |
|
1895 |
||
1896 |
// Hammer |
|
1897 |
(NameId: sidHammer; |
|
1898 |
NameTex: nil; |
|
1899 |
Probability: 0; |
|
1900 |
NumberInCase: 1; |
|
1901 |
Ammo: (Propz: ammoprop_NoCrosshair; |
|
1902 |
Count: 1; |
|
1903 |
NumPerTurn: 0; |
|
1904 |
Timer: 0; |
|
1905 |
Pos: 0; |
|
1906 |
AmmoType: amHammer; |
|
1907 |
AttackVoice: sndNone); |
|
1908 |
Slot: 3; |
|
1909 |
TimeAfterTurn: 1000; |
|
1910 |
MinAngle: 0; |
|
1911 |
maxAngle: 0; |
|
1912 |
isDamaging: true; |
|
1913 |
SkipTurns: 0; |
|
1914 |
PosCount: 1; |
|
1915 |
PosSprite: sprWater; |
|
1916 |
ejectX: 0; |
|
1917 |
ejectY: 0), |
|
1918 |
||
1919 |
// Ressurrector |
|
1920 |
(NameId: sidResurrector; |
|
1921 |
NameTex: nil; |
|
1922 |
Probability: 0; |
|
1923 |
NumberInCase: 1; |
|
1924 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1925 |
ammoprop_Utility or |
|
1926 |
ammoprop_NoRoundEnd; |
|
1927 |
Count: 1; |
|
1928 |
NumPerTurn: 0; |
|
1929 |
Timer: 0; |
|
1930 |
Pos: 0; |
|
1931 |
AmmoType: amResurrector; |
|
1932 |
AttackVoice: sndNone); |
|
1933 |
Slot: 8; |
|
1934 |
TimeAfterTurn: 3000; |
|
1935 |
minAngle: 0; |
|
1936 |
maxAngle: 0; |
|
1937 |
isDamaging: true; |
|
1938 |
SkipTurns: 0; |
|
1939 |
PosCount: 1; |
|
1940 |
PosSprite: sprWater; |
|
1941 |
ejectX: 0; |
|
1942 |
ejectY: 0), |
|
1943 |
||
1944 |
// DrillStrike |
|
1945 |
(NameId: sidDrillStrike; |
|
1946 |
NameTex: nil; |
|
1947 |
Probability: 200; |
|
1948 |
NumberInCase: 1; |
|
1949 |
Ammo: (Propz: ammoprop_NoCrosshair or |
|
1950 |
ammoprop_NeedTarget or |
|
1951 |
ammoprop_AttackingPut or |
|
1952 |
ammoprop_DontHold or |
|
1953 |
ammoprop_NotBorder; |
|
1954 |
Count: 1; |
|
1955 |
NumPerTurn: 0; |
|
1956 |
Timer: 0; |
|
1957 |
Pos: 0; |
|
1958 |
AmmoType: amDrillStrike; |
|
1959 |
AttackVoice: sndIncoming); |
|
1960 |
Slot: 5; |
|
1961 |
TimeAfterTurn: 0; |
|
1962 |
minAngle: 0; |
|
1963 |
maxAngle: 0; |
|
1964 |
isDamaging: true; |
|
1965 |
SkipTurns: 6; |
|
1966 |
PosCount: 2; |
|
1967 |
PosSprite: sprAmAirplane; |
|
1968 |
ejectX: 0; |
|
4578 | 1969 |
ejectY: 0), |
1970 |
// Snowball |
|
1971 |
(NameId: sidSnowball; |
|
1972 |
NameTex: nil; |
|
1973 |
Probability: 0; |
|
1974 |
NumberInCase: 1; |
|
1975 |
Ammo: (Propz: ammoprop_Power or ammoprop_AltUse; |
|
1976 |
Count: 2; |
|
1977 |
NumPerTurn: 0; |
|
1978 |
Timer: 0; |
|
1979 |
Pos: 0; |
|
1980 |
AmmoType: amSnowball; |
|
1981 |
AttackVoice: sndNone); |
|
1982 |
Slot: 0; |
|
1983 |
TimeAfterTurn: 3000; |
|
1984 |
minAngle: 0; |
|
1985 |
maxAngle: 0; |
|
1986 |
isDamaging: true; |
|
1987 |
SkipTurns: 0; |
|
1988 |
PosCount: 1; |
|
1989 |
PosSprite: sprWater; |
|
1990 |
ejectX: 0; |
|
4361 | 1991 |
ejectY: 0) |
1992 |
); |
|
1993 |
||
1994 |
||
1995 |
conversionFormat: TSDL_PixelFormat = ( |
|
1996 |
palette: nil; |
|
1997 |
BitsPerPixel : 32; |
|
1998 |
BytesPerPixel: 4; |
|
1999 |
Rloss : 0; |
|
2000 |
Gloss : 0; |
|
2001 |
Bloss : 0; |
|
2002 |
Aloss : 0; |
|
2003 |
{$IFDEF ENDIAN_LITTLE} |
|
2004 |
Rshift: 0; |
|
2005 |
Gshift: 8; |
|
2006 |
Bshift: 16; |
|
2007 |
Ashift: 24; |
|
2008 |
{$ELSE} |
|
2009 |
Rshift: 24; |
|
2010 |
Gshift: 16; |
|
2011 |
Bshift: 8; |
|
2012 |
Ashift: 0; |
|
2013 |
{$ENDIF} |
|
2014 |
RMask : RMask; |
|
2015 |
GMask : GMask; |
|
2016 |
BMask : BMask; |
|
2017 |
AMask : AMask; |
|
2018 |
colorkey: 0; |
|
2019 |
alpha : 255 |
|
2020 |
); |
|
2021 |
||
4367 | 2022 |
|
2023 |
var |
|
2024 |
Land: TCollisionArray; |
|
2025 |
LandPixels: TLandArray; |
|
2026 |
LandDirty: TDirtyTag; |
|
2027 |
hasBorder: boolean; |
|
2028 |
hasGirders: boolean; |
|
2029 |
isMap: boolean; |
|
2030 |
playHeight, playWidth, leftX, rightX, topY, MaxHedgehogs: Longword; // idea is that a template can specify height/width. Or, a map, a height/width by the dimensions of the image. If the map has pixels near top of image, it triggers border. |
|
2031 |
LandBackSurface: PSDL_Surface; |
|
2032 |
digest: shortstring; |
|
4368 | 2033 |
CurAmmoGear: PGear; |
2034 |
GearsList: PGear; |
|
4370 | 2035 |
AllInactive: boolean; |
2036 |
PrvInactive: boolean; |
|
2037 |
KilledHHs: Longword; |
|
2038 |
SuddenDeathDmg: Boolean; |
|
2039 |
SpeechType: Longword; |
|
2040 |
SpeechText: shortstring; |
|
2041 |
TrainingTargetGear: PGear; |
|
2042 |
skipFlag: boolean; |
|
2043 |
PlacingHogs: boolean; // a convenience flag to indicate placement of hogs is still in progress |
|
2044 |
StepSoundTimer: LongInt; |
|
2045 |
StepSoundChannel: LongInt; |
|
4368 | 2046 |
|
2047 |
CurrentTeam: PTeam; |
|
2048 |
PreviousTeam: PTeam; |
|
2049 |
CurrentHedgehog: PHedgehog; |
|
2050 |
TeamsArray: array[0..Pred(cMaxTeams)] of PTeam; |
|
2051 |
TeamsCount: Longword; |
|
2052 |
ClansArray: array[0..Pred(cMaxTeams)] of PClan; |
|
2053 |
ClansCount: Longword; |
|
2054 |
LocalClan: LongInt; // last non-bot, non-extdriven clan |
|
4465
743673c67d0c
Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents:
4437
diff
changeset
|
2055 |
LocalTeam: LongInt; // last non-bot, non-extdriven clan first team |
743673c67d0c
Allow hog speech when not your turn. Currently is set to 40% opacity (could be fainter) and drawn behind the hogs instead of in front. Also allows hog targetting using a number.
nemo
parents:
4437
diff
changeset
|
2056 |
LocalAmmo: LongInt; // last non-bot, non-extdriven clan's first team's ammo index, updated to next upcoming hog for per-hog-ammo |
4368 | 2057 |
CurMinAngle, CurMaxAngle: Longword; |
2058 |
GameOver: boolean; |
|
4367 | 2059 |
|
4369 | 2060 |
FollowGear: PGear; |
2061 |
WindBarWidth: LongInt; |
|
2062 |
bShowAmmoMenu: boolean; |
|
2063 |
bSelected: boolean; |
|
2064 |
bShowFinger: boolean; |
|
2065 |
Frames: Longword; |
|
2066 |
WaterColor, DeepWaterColor: TSDL_Color; |
|
2067 |
SkyOffset: LongInt; |
|
2068 |
HorizontOffset: LongInt; |
|
2069 |
{$IFDEF COUNTTICKS} |
|
2070 |
cntTicks: LongWord; |
|
2071 |
{$ENDIF} |
|
2072 |
cOffsetY: LongInt; |
|
2073 |
||
4371 | 2074 |
PixelFormat: PSDL_PixelFormat; |
2075 |
SDLPrimSurface: PSDL_Surface; |
|
2076 |
PauseTexture, |
|
2077 |
SyncTexture, |
|
2078 |
ConfirmTexture: PTexture; |
|
2079 |
cScaleFactor: GLfloat; |
|
2080 |
SupportNPOTT: Boolean; |
|
2081 |
Step: LongInt; |
|
2082 |
squaresize : LongInt; |
|
2083 |
numsquares : LongInt; |
|
2084 |
ProgrTex: PTexture; |
|
2085 |
MissionIcons: PSDL_Surface; |
|
2086 |
ropeIconTex: PTexture; |
|
2087 |
rotationQt: GLfloat; |
|
2088 |
||
2089 |
||
2090 |
VisualGearsList: PVisualGear; |
|
2091 |
vobFrameTicks, vobFramesCount, vobCount: Longword; |
|
2092 |
vobVelocity, vobFallSpeed: LongInt; |
|
2093 |
||
2094 |
||
2095 |
hideAmmoMenu: boolean; |
|
2096 |
wheelUp: boolean; |
|
2097 |
wheelDown: boolean; |
|
2098 |
||
2099 |
ControllerNumControllers: Integer; |
|
2100 |
ControllerEnabled: Integer; |
|
2101 |
ControllerNumAxes: array[0..5] of Integer; |
|
2102 |
//ControllerNumBalls: array[0..5] of Integer; |
|
2103 |
ControllerNumHats: array[0..5] of Integer; |
|
2104 |
ControllerNumButtons: array[0..5] of Integer; |
|
2105 |
ControllerAxes: array[0..5] of array[0..19] of Integer; |
|
2106 |
//ControllerBalls: array[0..5] of array[0..19] of array[0..1] of Integer; |
|
2107 |
ControllerHats: array[0..5] of array[0..19] of Byte; |
|
2108 |
ControllerButtons: array[0..5] of array[0..19] of Byte; |
|
2109 |
||
2110 |
DefaultBinds, CurrentBinds: TBinds; |
|
2111 |
||
2112 |
{$IFDEF HWLIBRARY} |
|
2113 |
leftClick: boolean; |
|
2114 |
middleClick: boolean; |
|
2115 |
rightClick: boolean; |
|
2116 |
||
2117 |
upKey: boolean; |
|
2118 |
downKey: boolean; |
|
2119 |
rightKey: boolean; |
|
2120 |
leftKey: boolean; |
|
2121 |
preciseKey: boolean; |
|
2122 |
||
2123 |
backspaceKey: boolean; |
|
2124 |
spaceKey: boolean; |
|
2125 |
enterKey: boolean; |
|
2126 |
tabKey: boolean; |
|
2127 |
||
2128 |
chatAction: boolean; |
|
2129 |
pauseAction: boolean; |
|
2130 |
{$ENDIF} |
|
2131 |
||
4390
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2132 |
var trammo: array[TAmmoStrId] of ansistring; // name of the weapon |
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2133 |
trammoc: array[TAmmoStrId] of ansistring; // caption of the weapon |
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2134 |
trammod: array[TAmmoStrId] of ansistring; // description of the weapon |
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2135 |
trmsg: array[TMsgStrId] of ansistring; // message of the event |
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2136 |
trgoal: array[TGoalStrId] of ansistring; // message of the goal |
f219628ed666
Move localization data to uVariables, some Uses cleanup
unc0rr
parents:
4379
diff
changeset
|
2137 |
|
4359 | 2138 |
procedure initModule; |
2139 |
procedure freeModule; |
|
2140 |
||
2141 |
implementation |
|
2142 |
||
2143 |
||
2144 |
procedure initModule; |
|
2145 |
begin |
|
2146 |
Pathz:= cPathz; |
|
2147 |
{* REFERENCE |
|
2148 |
4096 -> $FFFFF000 |
|
2149 |
2048 -> $FFFFF800 |
|
2150 |
1024 -> $FFFFFC00 |
|
2151 |
512 -> $FFFFFE00 *} |
|
2152 |
if (cReducedQuality and rqLowRes) <> 0 then |
|
2153 |
begin |
|
2154 |
LAND_WIDTH:= 2048; |
|
2155 |
LAND_HEIGHT:= 1024; |
|
2156 |
LAND_WIDTH_MASK:= $FFFFF800; |
|
2157 |
LAND_HEIGHT_MASK:= $FFFFFC00; |
|
2158 |
end |
|
2159 |
else |
|
2160 |
begin |
|
2161 |
LAND_WIDTH:= 4096; |
|
2162 |
LAND_HEIGHT:= 2048; |
|
2163 |
LAND_WIDTH_MASK:= $FFFFF000; |
|
2164 |
LAND_HEIGHT_MASK:= $FFFFF800 |
|
2165 |
end; |
|
2166 |
||
2167 |
cDrownSpeed.QWordValue := 257698038; // 0.06 |
|
2168 |
cDrownSpeedf := 0.06; |
|
2169 |
cMaxWindSpeed.QWordValue:= 1073742; // 0.00025 |
|
2170 |
cWindSpeed.QWordValue := 429496; // 0.0001 |
|
2171 |
cWindSpeedf := 0.0001; |
|
2172 |
cGravity := cMaxWindSpeed * 2; |
|
2173 |
cGravityf := 0.00025 * 2; |
|
2174 |
cDamageModifier := _1; |
|
2175 |
TargetPoint := cTargetPointRef; |
|
2176 |
||
2177 |
// int, longint longword and byte |
|
2178 |
CursorMovementX := 0; |
|
2179 |
CursorMovementY := 0; |
|
2180 |
GameTicks := 0; |
|
2181 |
TrainingTimeInc := 10000; |
|
2182 |
TrainingTimeInD := 500; |
|
2183 |
TrainingTimeInM := 5000; |
|
2184 |
TrainingTimeMax := 60000; |
|
2185 |
TimeTrialStartTime := 0; |
|
2186 |
TimeTrialStopTime := 0; |
|
2187 |
cWaterLine := LAND_HEIGHT; |
|
2188 |
cGearScrEdgesDist := 240; |
|
2189 |
||
4522
0f590eefd531
Add an input mask for setting of gear messages. Intended for intercepting user messages. This is totally untested. I don't think it should desync but seriously needs a lot of testing. Esp the doPut behaviour.
nemo
parents:
4482
diff
changeset
|
2190 |
InputMask := $FFFFFFFF; |
4359 | 2191 |
GameFlags := 0; |
2192 |
TrainingFlags := 0; |
|
2193 |
TurnTimeLeft := 0; |
|
2194 |
cSuddenDTurns := 15; |
|
2195 |
cDamagePercent := 100; |
|
4396
3cfd2e15464a
After repeated requests, variable length rope. Intended for the infinite rope folks, but values less than 100 make rope more interesting IMO.
nemo
parents:
4390
diff
changeset
|
2196 |
cRopePercent := 100; |
4359 | 2197 |
cMineDudPercent := 0; |
2198 |
cTemplateFilter := 0; |
|
2199 |
cMapGen := 0; // MAPGEN_REGULAR |
|
2200 |
cMazeSize := 0; |
|
2201 |
cHedgehogTurnTime := 45000; |
|
4482 | 2202 |
cMinesTime := 3000; |
4359 | 2203 |
cMaxAIThinkTime := 9000; |
2204 |
cCloudsNumber := 9; |
|
2205 |
cHealthCaseProb := 35; |
|
2206 |
cHealthCaseAmount := 25; |
|
2207 |
cWaterRise := 47; |
|
2208 |
cHealthDecrease := 5; |
|
2209 |
||
2210 |
cTagsMask := 0; |
|
2211 |
InitStepsFlags := 0; |
|
2212 |
RealTicks := 0; |
|
2213 |
AttackBar := 0; // 0 - none, 1 - just bar at the right-down corner, 2 - from weapon |
|
2214 |
cCaseFactor := 5; {0..9} |
|
2215 |
cLandMines := 4; |
|
2216 |
cExplosives := 2; |
|
2217 |
||
2218 |
GameState := Low(TGameState); |
|
2219 |
GameType := gmtLocal; |
|
2220 |
zoom := cDefaultZoomLevel; |
|
2221 |
ZoomValue := cDefaultZoomLevel; |
|
2222 |
WeaponTooltipTex:= nil; |
|
2223 |
cLaserSighting := false; |
|
2224 |
cVampiric := false; |
|
2225 |
cArtillery := false; |
|
2226 |
flagMakeCapture := false; |
|
2227 |
bBetweenTurns := false; |
|
2228 |
bWaterRising := false; |
|
2229 |
isCursorVisible := false; |
|
2230 |
isTerminated := false; |
|
2231 |
isInLag := false; |
|
2232 |
isPaused := false; |
|
2233 |
isInMultiShoot := false; |
|
2234 |
isSpeed := false; |
|
2235 |
fastUntilLag := false; |
|
2236 |
isFirstFrame := true; |
|
2237 |
isSEBackup := true; |
|
2238 |
cSeed := ''; |
|
2239 |
cVolumeDelta := 0; |
|
2240 |
cHasFocus := true; |
|
2241 |
cInactDelay := 1250; |
|
2242 |
ReadyTimeLeft := 0; |
|
4695
ac2cb3b99d70
add a disabling for landback, set it if flakes are enabled
nemo
parents:
4611
diff
changeset
|
2243 |
|
ac2cb3b99d70
add a disabling for landback, set it if flakes are enabled
nemo
parents:
4611
diff
changeset
|
2244 |
disableLandBack := false; |
4359 | 2245 |
|
2246 |
ScreenFade := sfNone; |
|
2247 |
||
2248 |
{$IFDEF SDL13} |
|
2249 |
SDLwindow := nil; |
|
2250 |
{$ENDIF} |
|
2251 |
||
2252 |
// those values still aren't perfect |
|
2253 |
cLeftScreenBorder:= round(-cMinZoomLevel * cScreenWidth); |
|
2254 |
cRightScreenBorder:= round(cMinZoomLevel * cScreenWidth + LAND_WIDTH); |
|
2255 |
cScreenSpace:= cRightScreenBorder - cLeftScreenBorder; |
|
2256 |
||
2257 |
if isPhone() then |
|
2258 |
cMaxCaptions:= 3 |
|
2259 |
else |
|
2260 |
cMaxCaptions:= 4; |
|
2261 |
end; |
|
2262 |
||
2263 |
procedure freeModule; |
|
2264 |
begin |
|
2265 |
// re-init flags so they will always contain safe values |
|
2266 |
cScreenWidth := 1024; |
|
2267 |
cScreenHeight := 768; |
|
2268 |
cBits := 32; |
|
2269 |
//ipcPort is in uIO |
|
2270 |
cFullScreen := false; |
|
2271 |
isSoundEnabled := true; |
|
2272 |
isMusicEnabled := false; |
|
2273 |
cLocaleFName := 'en.txt'; |
|
2274 |
cInitVolume := 100; |
|
2275 |
cTimerInterval := 8; |
|
2276 |
PathPrefix := './'; |
|
2277 |
cShowFPS := false; |
|
2278 |
cAltDamage := true; |
|
2279 |
cReducedQuality := rqNone; |
|
2280 |
//userNick is in uChat |
|
2281 |
recordFileName := ''; |
|
4553
442bac2e6ca6
Reenable cReadyDelay - this requires testing on m8y.org from now on until the message is added to other servers
nemo
parents:
4548
diff
changeset
|
2282 |
cReadyDelay := 5000; |
4359 | 2283 |
end; |
2284 |
||
4372 | 2285 |
end. |