Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Boss_FS17/data/levels/FinalBossFS17.oxw @ 11380

Last change on this file since 11380 was 11380, checked in by nyogaraj, 7 years ago

new level

File size: 1.9 KB
Line 
1<LevelInfo
2 name = "Kleshtrimania"
3 description = "Final Boss"
4 tags = "test"
5 screenshot = "emptylevel.png"
6/>
7
8<?lua
9  include("stats.oxo")
10  include("HUDTemplates3.oxo")
11  include("templates/lodInformation.oxt")
12  include("templates/HeavyCruiser.oxt")
13?>
14
15<?lua
16  include("templates/spaceshipEscort.oxt")
17  include("templates/endurancetest_template.oxt")
18  ?>
19
20<Level
21        gametype = "Mission"
22>
23  <templates>
24    <Template link=lodtemplate_default />
25  </templates>
26  <?lua include("includes/notifications.oxi") ?>
27
28  <Scene
29    ambientlight = "0.8, 0.8, 0.8"
30    skybox       = "Orxonox/Starbox"
31  >
32
33    <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/>
34
35    <SpawnPoint team=0 position="-200,0,0" lookat="1,1,1" spawnclass=SpaceShip pawndesign=spaceshipescort />
36
37    <ModularSpaceShip velocity= "20,0,0" position="0,0,200" lookat= "0,0,0" health="1000" maxhealth="1000" initialhealth="1000" scale3D="1,1,1">
38      <templates>
39        <Template link=endurance />
40      </templates>
41    </ModularSpaceShip>
42
43
44<MovableEntity position="0,0,0" rotationrate="45" rotationaxis="0,0,1">
45    <attached>
46        <Model position="0,0,0" mesh="cube.mesh" scale3D="2,2,20" />
47        <MovableEntity position="0,0,0" rotationrate="180" rotationaxis="0,1,0">
48            <attached>
49                <Model position="0,0,0" mesh="sphere.mesh" scale3D="1,1,10" />
50            </attached>
51        </MovableEntity>
52    </attached>
53</MovableEntity>
54
55
56
57    <!--
58
59    <StaticEntity position="0,-10000,0" direction="0,-1,0" collisionType=static mass=100000 friction=0.01 >
60    <attached>
61        <Model position="0,0,0" mesh="Transporter.mesh" scale3D="10000,10000,1000" />
62    </attached>
63    <collisionShapes>
64        <BoxCollisionShape position="0,0,0" halfExtents="10000,10000,1000" />
65    </collisionShapes>
66</StaticEntity>
67
68 
69-->
70
71   
72  </Scene>
73</Level>
Note: See TracBrowser for help on using the repository browser.