0dcbe982a164a0acd15cbb939ec0ef8531c3c801
[shipsimu.git] / application / ship-simu / templates / de / game / electronic / cellphone.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3 A common cellular phone.
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>cellphone</name>
33                 <type>communication</type>
34                 <!-- Simplified dimension of the electronics because it will be placed
35                      into a small box for transportation. //-->
36                 <dimension>
37                         <width>30</width>
38                         <height>35</height>
39                         <length>30</length>
40                 </dimension>
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                         <technology-dependency>
48                                 <name>cellular_network</name>
49                                 <level>1</level>
50                         </technology-dependency>
51                 </technology-dependency-list>
52                 <!-- A list research dependencies for this electronical device. //-->
53                 <research-dependency-list>
54                         <!-- A single technollogical dependency. //-->
55                         <research-dependency>
56                                 <id>{?research_id?}</id>
57                                 <name>{?research_name?}</name>
58                                 <level>{?research_level?}</level>
59                         </research-dependency>
60                 </research-dependency-list>
61         </dependencies>
62 </electronic>