Changeset 9348 for code/trunk/data/levels/templates
- Timestamp:
- Aug 30, 2012, 11:08:17 PM (12 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 .project 1 2 build 2 3 codeblocks 4 dependencies 3 5 vs 4 dependencies
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
code/trunk/data/levels/templates/FPS.oxt
r8858 r9348 17 17 linearDamping = 0.7 18 18 angularDamping = 0.9999999 19 friction 20 19 friction = 0.01 20 21 21 weapon = "hs-w01.mesh" 22 22 > … … 24 24 <BoxCollisionShape position="0,-20,0" halfExtents="15,25,15" /> 25 25 </collisionShapes> 26 26 27 27 <camerapositions> 28 28 <CameraPosition position="-1,1,2.2" drag=false mouselook=true /> 29 29 </camerapositions> 30 30 31 31 <?lua 32 32 include("../includes/weaponSettingsFPS.oxi") 33 33 ?> 34 34 … … 40 40 <camerapositions> 41 41 <CameraPosition position="0,0,20" drag=false mouselook=true /> 42 42 43 43 <!-- 44 44 CameraPosition position="0,150,-25" pitch=-90 drag=true /> … … 47 47 <CameraPosition position="-50,5,-8" yaw=-90 drag=true /> 48 48 <CameraPosition position="50,5,-8" yaw=90 drag=true / 49 49 50 50 </camerapositions> 51 51 </FpsPlayer> -
code/trunk/data/levels/templates/pickupRepresentationTemplates.oxt
r8706 r9348 17 17 </Template> 18 18 19 <Template name=smallshieldpickup >19 <Template name=smallshieldpickup baseclass=ShieldPickup> 20 20 <ShieldPickup 21 representation = "smallshieldpickup" 21 22 duration = 10 22 23 shieldabsorption = 0.7 … … 43 44 </Template> 44 45 45 <Template name=mediumshieldpickup >46 <Template name=mediumshieldpickup baseclass=ShieldPickup> 46 47 <ShieldPickup 48 representation = "mediumshieldpickup" 47 49 duration = 30 48 50 shieldabsorption = 0.8 … … 70 72 </Template> 71 73 72 <Template name=hugeshieldpickup >74 <Template name=hugeshieldpickup baseclass=ShieldPickup> 73 75 <ShieldPickup 76 representation = "hugeshieldpickup" 74 77 duration = 60 75 78 shieldabsorption = 0.95 … … 98 101 </Template> 99 102 100 <Template name=smallhealthpickup >103 <Template name=smallhealthpickup baseclass=HealthPickup> 101 104 <HealthPickup 105 representation = "smallhealthpickup" 102 106 health = 10 103 107 healthType = "limited" … … 123 127 </Template> 124 128 125 <Template name=mediumhealthpickup >129 <Template name=mediumhealthpickup baseclass=HealthPickup> 126 130 <HealthPickup 131 representation = "mediumhealthpickup" 127 132 health = 50 128 133 healthType = "limited" … … 148 153 </Template> 149 154 150 <Template name=hugehealthpickup >155 <Template name=hugehealthpickup baseclass=HealthPickup> 151 156 <HealthPickup 157 representation = "hugehealthpickup" 152 158 health = 100 153 159 healthType = "limited" … … 173 179 </Template> 174 180 175 <Template name=crazyhealthpickup >181 <Template name=crazyhealthpickup baseclass=HealthPickup> 176 182 <HealthPickup 183 representation = "crazyhealthpickup" 177 184 health = 1000 178 185 healthType = "permanent" … … 216 223 </Template> 217 224 225 <!-- DamageBoost pickups --> 226 227 <Template name=smalldamageboostpickupRepresentation> 228 <PickupRepresentation> 229 <spawner-representation> 230 <StaticEntity> 231 <attached> 232 <Billboard position="0,0,0" colour="0.95,0.10,0.05" material="Sphere2" scale=0.1 > 233 <attached> 234 <Billboard position="0,0,0" colour="0.30,0.30,0.30" material="damageSmall" scale=0.7 /> 235 </attached> 236 </Billboard> 237 </attached> 238 </StaticEntity> 239 </spawner-representation> 240 </PickupRepresentation> 241 </Template> 242 243 <Template name=smalldamageboostpickup baseclass=DamageBoostPickup> 244 <DamageBoostPickup 245 representation = "smalldamageboostpickup" 246 duration = 10.0 247 damageMultiplier = 2.0 248 activationType = "immediate" 249 durationType = "continuous" 250 /> 251 </Template> 252 253 <Template name=mediumdamageboostpickupRepresentation> 254 <PickupRepresentation> 255 <spawner-representation> 256 <StaticEntity> 257 <attached> 258 <Billboard position="0,0,0" colour="0.95,0.10,0.05" material="Sphere2" scale=0.1 > 259 <attached> 260 <Billboard position="0,0,0" colour="0.30,0.30,0.30" material="damageMedium" scale=0.7 /> 261 </attached> 262 </Billboard> 263 </attached> 264 </StaticEntity> 265 </spawner-representation> 266 </PickupRepresentation> 267 </Template> 268 269 <Template name=mediumdamageboostpickup baseclass=DamageBoostPickup> 270 <DamageBoostPickup 271 representation = "mediumdamageboostpickup" 272 duration = 10.0 273 damageMultiplier = 5.0 274 activationType = "immediate" 275 durationType = "continuous" 276 /> 277 </Template> 278 279 <Template name=largedamageboostpickupRepresentation> 280 <PickupRepresentation> 281 <spawner-representation> 282 <StaticEntity> 283 <attached> 284 <Billboard position="0,0,0" colour="0.95,0.10,0.05" material="Sphere2" scale=0.1 > 285 <attached> 286 <Billboard position="0,0,0" colour="0.30,0.30,0.30" material="damageLarge" scale=0.7 /> 287 </attached> 288 </Billboard> 289 </attached> 290 </StaticEntity> 291 </spawner-representation> 292 </PickupRepresentation> 293 </Template> 294 295 <Template name=largedamageboostpickup baseclass=DamageBoostPickup> 296 <DamageBoostPickup 297 representation = "largedamageboostpickup" 298 duration = 10.0 299 damageMultiplier = 7.0 300 activationType = "immediate" 301 durationType = "continuous" 302 /> 303 </Template> 304 305 218 306 <!-- Speed pickups --> 219 307 … … 234 322 </Template> 235 323 236 <Template name=smallspeedpickup >324 <Template name=smallspeedpickup baseclass=SpeedPickup> 237 325 <SpeedPickup 326 representation = "smallspeedpickup" 238 327 duration = 10.0 239 328 speedAdd = 0.0 … … 260 349 </Template> 261 350 262 <Template name=mediumspeedpickup >351 <Template name=mediumspeedpickup baseclass=SpeedPickup> 263 352 <SpeedPickup 353 representation = "mediumspeedpickup" 264 354 duration = 10.0 265 355 speedAdd = 0.0 … … 286 376 </Template> 287 377 288 <Template name=hugespeedpickup >378 <Template name=hugespeedpickup baseclass=SpeedPickup> 289 379 <SpeedPickup 380 representation = "hugespeedpickup" 290 381 duration = 10.0 291 382 speedAdd = 0.0 … … 312 403 </Template> 313 404 314 <Template name=smalljumppickup >405 <Template name=smalljumppickup baseclass=SpeedPickup> 315 406 <SpeedPickup 407 representation = "smalljumppickup" 316 408 duration = 0.7 317 409 speedAdd = 5000.0 … … 340 432 </Template> 341 433 342 <Template name=smallinvisiblepickup >434 <Template name=smallinvisiblepickup baseclass=InvisiblePickup> 343 435 <InvisiblePickup 436 representation = "smallinvisiblepickup" 344 437 duration = 5.0 345 438 activaionType = "immediate" … … 364 457 </Template> 365 458 366 <Template name=mediuminvisiblepickup >459 <Template name=mediuminvisiblepickup baseclass=InvisiblePickup> 367 460 <InvisiblePickup 461 representation = "mediuminvisiblepickup" 368 462 duration = 10.0 369 463 activaionType = "immediate" … … 388 482 </Template> 389 483 390 <Template name=hugeinvisiblepickup >484 <Template name=hugeinvisiblepickup baseclass=InvisiblePickup> 391 485 <InvisiblePickup 486 representation = "hugeinvisiblepickup" 392 487 duration = 20.0 393 488 activaionType = "immediate" … … 412 507 </Template> 413 508 414 <Template name=smallshrinkpickup> 415 <InvisiblePickup 509 <Template name=smallshrinkpickup baseclass=ShrinkPickup> 510 <ShrinkPickup 511 representation = "smallshrinkpickup" 416 512 duration = 10.0 417 513 shrinkFactor = 2.5 … … 437 533 </Template> 438 534 439 <Template name=mediumshrinkpickup> 440 <InvisiblePickup 535 <Template name=mediumshrinkpickup baseclass=ShrinkPickup> 536 <ShrinkPickup 537 representation = "mediumshrinkpickup" 441 538 duration = 30.0 442 539 shrinkFactor = 5.0 … … 462 559 </Template> 463 560 464 <Template name=hugeshrinkpickup> 465 <InvisiblePickup 561 <Template name=hugeshrinkpickup baseclass=ShrinkPickup> 562 <ShrinkPickup 563 representation = "hugeshrinkpickup" 466 564 duration = 60.0 467 565 shrinkFactor = 10.0 … … 491 589 </Template> 492 590 493 <Template name=triplehealthspeedinvisibilitypickup> 494 <PickupCollection> 591 <Template name=triplehealthspeedinvisibilitypickup baseclass=PickupCollection> 592 <PickupCollection 593 representation = "triplehealthspeedinvisibilitypickup" 594 > 495 595 <pickupables> 496 596 <HealthPickup template=mediumhealthpickup /> … … 551 651 </Template> 552 652 553 <Template name=dronepickup >554 <DronePickup droneTemplate=droneTemplate />555 </Template> 556 653 <Template name=dronepickup baseclass=DronePickup> 654 <DronePickup representation=dronepickup droneTemplate=droneTemplate /> 655 </Template> 656 -
code/trunk/data/levels/templates/spaceshipSpacecruiser.oxt
- Property svn:eol-style set to native
Note: See TracChangeset
for help on using the changeset viewer.