Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

new Boss level files

File size: 2.7 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/Bossspawnship.oxt")
17  include("templates/Bossship.oxt")
18
19  ?>
20
21<Level
22        gametype = "Mission"
23>
24  <templates>
25    <Template link=lodtemplate_default />
26  </templates>
27  <?lua include("includes/notifications.oxi") ?>
28
29  <Scene
30    ambientlight = "0.8, 0.8, 0.8"
31    skybox       = "Orxonox/Starbox"
32  >
33
34    <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"/>
35
36    <SpawnPoint team=0 position="-200,0,0" lookat="1,1,1" spawnclass=SpaceShip pawndesign=spaceshipescort />
37
38    <ModularSpaceShip velocity= "20,0,0" position="0,0,200" lookat= "0,0,0" health="1000" maxhealth="1000" initialhealth="1000" scale3D="1,1,1">
39      <templates>
40        <Template link= bossship />
41      </templates>
42    </ModularSpaceShip>
43
44
45<MovableEntity position="0,0,0" rotationrate="45" rotationaxis="0,0,1">
46    <attached>
47        <Model position="0,0,0" mesh="IceStar.mesh" scale3D="100,100,100" />
48        <MovableEntity position="0,0,0" rotationrate="180" rotationaxis="0,1,0">
49            <attached>
50                <Model position="0,0,0" mesh="sphere.mesh" scale3D="1,1,10" />
51            </attached>
52        </MovableEntity>
53    </attached>
54</MovableEntity>
55
56<MovableEntity position="0,0,0" rotationrate="45" rotationaxis="0,1,0">
57    <attached>
58        <Model position="0,0,0" mesh="IceStar.mesh" scale3D="100,100,100" />
59        <MovableEntity position="0,0,0" rotationrate="180" rotationaxis="0,1,0">
60            <attached>
61                <Model position="0,0,0" mesh="sphere.mesh" scale3D="1,1,10" />
62            </attached>
63        </MovableEntity>
64    </attached>
65</MovableEntity>
66<!--
67<StaticEntity position="0,-10000,0" direction="0,-1,0" collisionType=static mass=100000 friction=0.01 >
68    <attached>
69        <Model position="0,0,0" mesh="IceStar.mesh" scale3D="10000,10000,1000" />
70    </attached>
71    <collisionShapes>
72        <BoxCollisionShape position="0,0,0" halfExtents="10000,10000,1000" />
73    </collisionShapes>
74</StaticEntity>
75-->
76
77
78
79    <!--
80
81    <StaticEntity position="0,-10000,0" direction="0,-1,0" collisionType=static mass=100000 friction=0.01 >
82    <attached>
83        <Model position="0,0,0" mesh="Transporter.mesh" scale3D="10000,10000,1000" />
84    </attached>
85    <collisionShapes>
86        <BoxCollisionShape position="0,0,0" halfExtents="10000,10000,1000" />
87    </collisionShapes>
88</StaticEntity>
89
90 
91-->
92
93   
94  </Scene>
95</Level>
Note: See TracBrowser for help on using the repository browser.