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