Added to generic directory
[shipsimu.git] / application / ship-simu / templates / game / electronic / surround_system.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3 A high-end surround sound system developed e.g. for home-cinema.
4
5 For simplification we have only width, length, height and total weight. This is
6 in reality mostly the case because the electronics will be placed into a small
7 box for transportation.
8
9 @author         Roland Haeder <webmaster@ship-simu.org>
10 @version        0.0.0
11 @copyright      Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
12 @license        GNU GPL 3.0 or any newer version
13 @link           http://www.ship-simu.org
14
15 This program is free software: you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation, either version 3 of the License, or
18 (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>
27 //-->
28 <electronic extends="base_electronic">
29         <!-- General data of the electronics. //-->
30         <general-data>
31                 <!-- Id and type for this electronic. //-->
32                 <name>surround_system</name>
33                 <type>entertainment</type>
34                 <!-- Simplified dimensions of the electronics because it will be placed
35                      into a small box for transportation. //-->
36                 <dimensions>
37                         <width>120</width>
38                         <height>140</height>
39                         <length>120</length>
40                 </dimensions>
41         </general-data>
42         <!-- An electronical device may depend on one or more technologies, at least
43              'electronics'. //-->
44         <dependencies>
45                 <!-- A list technology dependencies for this electronical device. //-->
46                 <technology-dependency-list>
47                         <!-- A single technollogical dependency. //-->
48                         <technology-dependency>
49                                 <name>sound_processor</name>
50                                 <level>3</level>
51                         </technology-dependency>
52                         <technology-dependency>
53                                 <name>sound_equalizer</name>
54                                 <level>5</level>
55                         </technology-dependency>
56                         <technology-dependency>
57                                 <name>radio_receiving</name>
58                                 <level>6</level>
59                         </technology-dependency>
60                 </technology-dependency-list>
61         </dependencies>
62 </electronic>