Basic fuel and tank templates added, typos fixed
[shipsimu.git] / application / ship-simu / templates / de / game / electronic / base_electronic.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3 A general electronic template. These electronics can be transported by different
4 types of transportation companies. Is can be anything from cellphones over other
5 communication electronics to commercial computers (default) or medical devices.
6
7 For simplification we have only width, length, height and total weight. This is
8 in reality mostly the case because the electronics will be placed into a small
9 box for transportation.
10
11 @author         Roland Haeder <webmaster@ship-simu.org>
12 @version        0.0.0
13 @copyright      Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
14 @license        GNU GPL 3.0 or any newer version
15 @link           http://www.ship-simu.org
16
17 This program is free software: you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation, either version 3 of the License, or
20 (at your option) any later version.
21
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25 GNU General Public License for more details.
26
27 You should have received a copy of the GNU General Public License
28 along with this program. If not, see <http://www.gnu.org/licenses/>
29 //-->
30 <electronic extends="{?goody_template?}">
31         <!-- General data of the electronics. //-->
32         <general-data>
33                 <!-- Id and type for this electronic. //-->
34                 <id>{?id?}</id>
35                 <name>{?name?}</name>
36                 <type>{?type?}</type>
37                 <!-- Simplified dimensions of the electronics because it will be placed
38                      into a small box for transportation. //-->
39                 <dimensions>
40                         <width>{?width?}</width>
41                         <height>{?height?}</height>
42                         <length>{?length?}</length>
43                 </dimensions>
44         </general-data>
45         <!-- An electronical device may depend on one or more technologies, at least
46              'electronics'. //-->
47         <dependencies>
48                 <!-- A list technology dependencies for this electronical device. //-->
49                 <technology-dependency-list>
50                         <!-- A single technollogical dependency. //-->
51                         <technology-dependency>
52                                 <id>{?technology_id?}</id>
53                                 <name>{?technology_name?}</name>
54                                 <level>{?technology_level?}</level>
55                         </technology-dependency>
56                 </technology-dependency-list>
57                 <!-- A list research dependencies for this electronical device. //-->
58                 <research-dependency-list>
59                         <!-- A single technollogical dependency. //-->
60                         <research-dependency>
61                                 <id>{?research_id?}</id>
62                                 <name>{?research_name?}</name>
63                                 <level>{?research_level?}</level>
64                         </research-dependency>
65                 </research-dependency-list>
66         </dependencies>
67 </electronic>