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