File: indian_techtree.html

package info (click to toggle)
megaglest-data 3.13.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 494,652 kB
  • sloc: xml: 34,142; sh: 33; makefile: 16
file content (967 lines) | stat: -rw-r--r-- 74,812 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
          "http://www.w3.org/TR/html4/loose.dtd">
<head>
<title>Indian Techtree of Glest - Version 0.8.1 beta
 (Megapack) </title>
<link type="text/css" rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta http-equiv="content-type" content="text/html; charset=utf-8">

<!-- stuff for table-sorting, see jquery.com and datatables.net for details
-->
<script type="text/javascript" language="javascript" src="js/jquery-1.12.0.min.js" ></script>
<script type="text/javascript" language="javascript" src="js/jquery.dataTables.min.js"></script>
<!--
<script type="text/javascript" language="javascript" src="js/TableTools.min.js"></script>
-->
<script type="text/javascript" charset="utf-8">
	$(document).ready(function() {

		$('#table_all').dataTable( {
			'bAutoWidth': false,
			"bPaginate": false,
			"bSortClasses": false,
			"sDom": '<"top"iflp>rt<"bottom"><"clear">',
		<!--
			"oTableTools": {
				"sSwfPath": "js/copy_cvs_xls_pdf.swf"
			},
		-->
			"aaSorting": [[ 1, "asc" ]]
			});
	});
</script>
</head>

<body>

 <!-- start header -->
    <div id="header">

      <!-- Contain the right and left header images -->
      <div id="header_left"></div>
      <div id="header_right"></div>
      <div id="logo"><a href="/"><img src="images/logo.png" alt="MegaGlest logo" /></a></div>
    </div>
    <!-- end header -->

    <!-- start content -->
    <div id="content">
      <div id="article">


<h1>Indian Techtree of Glest - Version 0.8.1 beta
 (Megapack) </h1>
<p>
<h4><a href="index.html">Home</a></h4><p><H4>Choose faction: &nbsp;<A HREF=egypt_overview.html>Egypt</a> |&nbsp;
&nbsp;<A HREF=indian_overview.html><I>Indian</I></a> |&nbsp;
&nbsp;<A HREF=magic_overview.html>Magic</a> |&nbsp;
&nbsp;<A HREF=norsemen_overview.html>Norsemen</a> |&nbsp;
&nbsp;<A HREF=persian_overview.html>Persian</a> |&nbsp;
&nbsp;<A HREF=romans_overview.html>Romans</a> |&nbsp;
&nbsp;<A HREF=tech_overview.html>Tech</a>
 </H4><P>
<P>
<H4>Techtree Diagrams: <a href="indian_techtree_clickable_map_buildings.html">Buildings</a> |
<a href="indian_techtree_clickable_map_buildings_units.html">Buildings Units</a> |
<a href="indian_techtree_clickable_map_all.html">All</a></H4>
<P>
<H1>Overview for Faction: Indian</H1>

<H3>Combat Units</H3> <TABLE BORDER=1 WIDTH="100%"><TR> <TH> Name 
						<TH> Total Cost
						<TH> Hit Points 
						<TH> Rege- nerate 
						<TH> Armor Strength 
						<TH> Armor Type 
						<TH> Sight Range 
					 
					<TH> Move Speed
					<TH> Air / Ground
					<TH> Attack Strength Land 
					<TH> Attack Strength Air 
					<TH> Attack Range
				<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/archer/images/archer.bmp" HEIGHT=32 WIDTH=32 ALT="Archer"><A HREF="indian_archer_full.html">Archer</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;60</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>9</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>15</TD><TD ALIGN=CENTER>220
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>70&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>70&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>10</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/axe_indian/images/axe_indian.bmp" HEIGHT=32 WIDTH=32 ALT="Axe Indian"><A HREF="indian_axe_indian_full.html">Axe Indian</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">180</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>35</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>12</TD><TD ALIGN=CENTER>250
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>180&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>1</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower.bmp" HEIGHT=32 WIDTH=32 ALT="Axe Thrower"><A HREF="indian_axe_thrower_full.html">Axe Thrower</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">180</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;70</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>20</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>12</TD><TD ALIGN=CENTER>250
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>140&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>7</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/beehive/images/defense_tower.bmp" HEIGHT=32 WIDTH=32 ALT="Beehive"><A HREF="indian_beehive_full.html">Beehive</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER>7000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>20</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#wood">Wood</A></TD><TD ALIGN=CENTER>16</TD><TD ALIGN=CENTER>--
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>120&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>12</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/bull/images/bull.bmp" HEIGHT=32 WIDTH=32 ALT="Bull"><A HREF="indian_bull_full.html">Bull</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;20</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>4</TD><TD ALIGN=CENTER>3</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#organic">Organic</A></TD><TD ALIGN=CENTER>12</TD><TD ALIGN=CENTER>330
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>125&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>1</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/fire_archer/images/fire_archer.bmp" HEIGHT=32 WIDTH=32 ALT="Fire Archer"><A HREF="indian_fire_archer_full.html">Fire Archer</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">120</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;70</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>15</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>15</TD><TD ALIGN=CENTER>220
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>110&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>110&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>10</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/fire_golem/images/firegolem.bmp" HEIGHT=32 WIDTH=32 ALT="Fire Golem"><A HREF="indian_fire_golem_full.html">Fire Golem</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">3</NOBR>&nbsp;
<TD ALIGN=CENTER>2000</TD><TD ALIGN=CENTER>3</TD><TD ALIGN=CENTER>45</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>10</TD><TD ALIGN=CENTER>50
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>200&nbsp;+-&nbsp;200</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>10</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/horseman/images/horseman.bmp" HEIGHT=32 WIDTH=32 ALT="Horseman"><A HREF="indian_horseman_full.html">Horseman</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">100</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>1300</TD><TD ALIGN=CENTER>2</TD><TD ALIGN=CENTER>50</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>10</TD><TD ALIGN=CENTER>480
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>215&nbsp;+-&nbsp;25</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>3</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/shaman/images/shaman.bmp" HEIGHT=32 WIDTH=32 ALT="Shaman"><A HREF="indian_shaman_full.html">Shaman</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>550</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>8</TD><TD ALIGN=CENTER>210
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>200&nbsp;+-&nbsp;175</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>6</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/spearman/images/spearman.bmp" HEIGHT=32 WIDTH=32 ALT="Spearman"><A HREF="indian_spearman_full.html">Spearman</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;40</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>2</TD><TD ALIGN=CENTER>10</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>14</TD><TD ALIGN=CENTER>220
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>90&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>1</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/stickfighter/images/swordman.bmp" HEIGHT=32 WIDTH=32 ALT="Stickfighter"><A HREF="indian_stickfighter_full.html">Stickfighter</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;35</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;25</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>700</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>7</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>10</TD><TD ALIGN=CENTER>220
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>75&nbsp;+-&nbsp;30</TD><TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>1</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/thunderbird/images/eagle.bmp" HEIGHT=32 WIDTH=32 ALT="Thunderbird"><A HREF="indian_thunderbird_full.html">Thunderbird</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">100</NOBR>&nbsp;
<TD ALIGN=CENTER>1300</TD><TD ALIGN=CENTER>3</TD><TD ALIGN=CENTER>20</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#organic">Organic</A></TD><TD ALIGN=CENTER>15</TD><TD ALIGN=CENTER>350
<TD ALIGN=CENTER>Air</TD>
<TD ALIGN=CENTER>250&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>250&nbsp;+-&nbsp;40</TD><TD ALIGN=CENTER>7</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/totem/images/totem.bmp" HEIGHT=32 WIDTH=32 ALT="Totem"><A HREF="indian_totem_full.html">Totem</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">400</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;&nbsp;50</NOBR>&nbsp;
<TD ALIGN=CENTER>11000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#wood">Wood</A></TD><TD ALIGN=CENTER>19</TD><TD ALIGN=CENTER>--
<TD ALIGN=CENTER>Ground</TD>
<TD ALIGN=CENTER>--
</TD><TD ALIGN=CENTER>150&nbsp;+-&nbsp;50</TD><TD ALIGN=CENTER>15</TD>
</TABLE>
<H3>Worker Units</H3> <TABLE BORDER=1 WIDTH="100%"><TR> <TH> Name 
						<TH> Total Cost
						<TH> Hit Points 
						<TH> Rege- nerate 
						<TH> Armor Strength 
						<TH> Armor Type 
						<TH> Sight Range 
					
					<TH> Move Speed
					<TH> Air / Ground
				<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/shaman/images/shaman.bmp" HEIGHT=32 WIDTH=32 ALT="Shaman"><A HREF="indian_shaman_full.html">Shaman</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>550</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>8</TD><TD ALIGN=CENTER>210</TD>
<TD ALIGN=CENTER>Ground</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/worker/images/worker.bmp" HEIGHT=32 WIDTH=32 ALT="Worker"><A HREF="indian_worker_full.html">Worker</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;75</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TD ALIGN=CENTER>600</TD><TD ALIGN=CENTER>1</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#leather">Leather</A></TD><TD ALIGN=CENTER>9</TD><TD ALIGN=CENTER>190</TD>
<TD ALIGN=CENTER>Ground</TD>
</TABLE>
<H3>Buildings</H3> <TABLE BORDER=1 WIDTH="100%"><TR> <TH> Name 
						<TH> Total Cost
						<TH> Hit Points 
						<TH> Rege- nerate 
						<TH> Armor Strength 
						<TH> Armor Type 
						<TH> Sight Range 
					
					<TH>Storage
				<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/beehive/images/defense_tower.bmp" HEIGHT=32 WIDTH=32 ALT="Beehive"><A HREF="indian_beehive_full.html">Beehive</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER>7000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>20</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#wood">Wood</A></TD><TD ALIGN=CENTER>16</TD><TD></TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/big_tent/images/bigtent.bmp" HEIGHT=32 WIDTH=32 ALT="Big Tent"><A HREF="indian_big_tent_full.html">Big Tent</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-35</NOBR>&nbsp;
<TD ALIGN=CENTER>3000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>5</TD><TD><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;200&nbsp;</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/campfire/images/campfire.bmp" HEIGHT=32 WIDTH=32 ALT="Campfire"><A HREF="indian_campfire_full.html">Campfire</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">100</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">175</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;&nbsp;70</NOBR>&nbsp;
<TD ALIGN=CENTER>5400</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>5</TD><TD></TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/horse_farm/images/farm.bmp" HEIGHT=32 WIDTH=32 ALT="Horse Farm"><A HREF="indian_horse_farm_full.html">Horse Farm</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">100</NOBR>&nbsp;
<TD ALIGN=CENTER>4000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#wood">Wood</A></TD><TD ALIGN=CENTER>5</TD><TD><IMG SRC="../../techs/megapack/resources/food/images/food.bmp" HEIGHT=16 WIDTH=16 ALT="Food">&nbsp;20&nbsp;</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/main_teepee/images/mainteepee.bmp" HEIGHT=32 WIDTH=32 ALT="Main Teepee"><A HREF="indian_main_teepee_full.html">Main Teepee</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">350</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-6</NOBR>&nbsp;
<TD ALIGN=CENTER>9000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>15</TD><TD><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;2000&nbsp;<IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;1200&nbsp;<IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;1500&nbsp;</TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/reed/images/reed.bmp" HEIGHT=32 WIDTH=32 ALT="Reed"><A HREF="indian_reed_full.html">Reed</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">125</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;&nbsp;80</NOBR>&nbsp;
<TD ALIGN=CENTER>3400</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>5</TD><TD></TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/round_tent/images/roundtent.bmp" HEIGHT=32 WIDTH=32 ALT="Round Tent"><A HREF="indian_round_tent_full.html">Round Tent</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">150</NOBR>&nbsp;
<TD ALIGN=CENTER>6000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>6</TD><TD></TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/tent/images/tent.bmp" HEIGHT=32 WIDTH=32 ALT="Tent"><A HREF="indian_tent_full.html">Tent</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;&nbsp;30</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;&nbsp;50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-10</NOBR>&nbsp;
<TD ALIGN=CENTER>1400</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#stone">Stone</A></TD><TD ALIGN=CENTER>5</TD><TD></TD>
<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/units/totem/images/totem.bmp" HEIGHT=32 WIDTH=32 ALT="Totem"><A HREF="indian_totem_full.html">Totem</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">400</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;&nbsp;50</NOBR>&nbsp;
<TD ALIGN=CENTER>11000</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER>-</TD><TD ALIGN=CENTER><a href="attack_and_armor_types.html#wood">Wood</A></TD><TD ALIGN=CENTER>19</TD><TD></TD>
</TABLE>
<H3>Upgrades</H3><TABLE BORDER=1><TR> <TH WIDTH=200> Name 
						<TH> Cost
						<TH> Increases
						<TH> Affects
						<TH> Enables to build
					<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/advanced_iron/images/iron_advanced.bmp" HEIGHT=32 WIDTH=32 ALT="Advanced Iron"><A HREF="indian_advanced_iron_full.html">Advanced Iron</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;Attack&nbsp;Strength:&nbsp;+40, 
Armor:&nbsp;+5<TD ALIGN=CENTER>&nbsp;<A HREF="indian_axe_indian_full.html">Axe Indian</A>, <A HREF="indian_horseman_full.html">Horseman</A>, <A HREF="indian_axe_thrower_full.html">Axe Thrower</A>
<TD>&nbsp;<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/bull_food/images/bullfood.bmp" HEIGHT=32 WIDTH=32 ALT="Bull Food"><A HREF="indian_bull_food_full.html">Bull Food</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;<TD ALIGN=CENTER>&nbsp;
<TD><A HREF="indian_bull_full.html">Bull</A><TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/iron/images/iron.bmp" HEIGHT=32 WIDTH=32 ALT="Iron"><A HREF="indian_iron_full.html">Iron</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;<TD ALIGN=CENTER>&nbsp;
<TD><A HREF="indian_axe_thrower_full.html">Axe Thrower</A>, <A HREF="indian_horseman_full.html">Horseman</A>, <A HREF="indian_axe_indian_full.html">Axe Indian</A><TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/petroleum/images/petroleum.bmp" HEIGHT=32 WIDTH=32 ALT="Petroleum"><A HREF="indian_petroleum_full.html">Petroleum</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;Sight:&nbsp;+1, 
Attack&nbsp;Strength:&nbsp;+40<TD ALIGN=CENTER>&nbsp;<A HREF="indian_fire_archer_full.html">Fire Archer</A>
<TD>&nbsp;<TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/stables/images/stables.bmp" HEIGHT=32 WIDTH=32 ALT="Stables"><A HREF="indian_stables_full.html">Stables</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;<TD ALIGN=CENTER>&nbsp;
<TD><A HREF="indian_horseman_full.html">Horseman</A><TR><TD> <IMG SRC="../../techs/megapack/factions/indian/upgrades/training_field/images/training_field.bmp" HEIGHT=32 WIDTH=32 ALT="Training Field"><A HREF="indian_training_field_full.html">Training Field</A></TD><TD><NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TD ALIGN=CENTER   >&nbsp;Production&nbsp;Speed:&nbsp;+150<TD ALIGN=CENTER>&nbsp;<A HREF="indian_round_tent_full.html">Round Tent</A>
<TD>Enables command '<i>Hold Position</i>' for: <A HREF="indian_horseman_full.html">Horseman</A>, <A HREF="indian_fire_archer_full.html">Fire Archer</A>, <A HREF="indian_stickfighter_full.html">Stickfighter</A>, <A HREF="indian_archer_full.html">Archer</A></TABLE>
<P>&nbsp;<P><HR><H1>Unit Details for Faction Indian</H1>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="advanced_iron_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/advanced_iron/images/iron_advanced.bmp" HEIGHT=64 WIDTH=64 ALT="Advanced Iron"></TD><TD WIDTH=500> <B>Advanced Iron</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_campfire_full.html">Campfire</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>200</TD></TR>
<TR><TD>Increase Attack&nbsp;Strength:&nbsp;</TD><TD>+40</TD></TR>
<TR><TD>Increase Armor:&nbsp;</TD><TD>+5</TD></TR>
<TR><TD>Affects Units:</TD><TD> <A HREF="indian_axe_indian_full.html">Axe Indian</A>, <A HREF="indian_horseman_full.html">Horseman</A>, <A HREF="indian_axe_thrower_full.html">Axe Thrower</A></TD></TR>
<TR><TD>Needed to build 'Advanced Iron':</TD><TD><A HREF="indian_campfire_full.html">Campfire</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="archer_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/archer/images/archer.bmp" HEIGHT=64 WIDTH=64 ALT="Archer"></TD><TD WIDTH=500> <B>Archer</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_big_tent_full.html">Big Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">60</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>30</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>9</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>15</TD></TR>
<TR><TD>Needed to build 'Archer':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_reed_full.html">Reed</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 220</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/archer/images/archer_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Ground and air units<BR>
Strength: 70+-50<BR>
Range: 10<BR>
Type: <a href="attack_and_armor_types.html#piercing">Piercing</A> <BR>
Attack Speed: 60<BR>
Start Time: 0.5<BR>
This Attack Skill is used on "Hold Position"<BR>
("Hold Position" requires <A HREF="indian_training_field_full.html">Training Field</A>)<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Elite</b> at 5 kills<BR>
Hitpoints: 700 -> 1050<BR>
Armor Strength: 9 -> 13<BR>
Sight: 15 -> 18<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="axe_indian_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/axe_indian/images/axe_indian.bmp" HEIGHT=64 WIDTH=64 ALT="Axe Indian"></TD><TD WIDTH=500> <B>Axe Indian</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_round_tent_full.html">Round Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">180</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>30</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>35</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>12</TD></TR>
<TR><TD>Needed to build 'Axe Indian':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_campfire_full.html">Campfire</A><br>
<A HREF="indian_iron_full.html">Iron</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 250</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/axe_indian/images/axe_indian_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 180+-40<BR>
Range: 1<BR>
Type: <a href="attack_and_armor_types.html#slashing">Slashing</A> <BR>
Attack Speed: 120<BR>
Start Time: 0.3<BR>
</TD></TR>
<TR><TD>Upgrades Available:</TD><TD><A HREF="indian_advanced_iron_full.html">Advanced Iron</A> (Attack&nbsp;Strength:&nbsp;+40, 
Armor:&nbsp;+5)<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="axe_thrower_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower.bmp" HEIGHT=64 WIDTH=64 ALT="Axe Thrower"></TD><TD WIDTH=500> <B>Axe Thrower</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_round_tent_full.html">Round Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">180</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">70</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>20</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>12</TD></TR>
<TR><TD>Needed to build 'Axe Thrower':</TD><TD><A HREF="indian_iron_full.html">Iron</A><br>
<A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_campfire_full.html">Campfire</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 250</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/axe_thrower/images/axe_thrower_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 140+-40<BR>
Range: 7<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 100<BR>
Start Time: 0.3<BR>
</TD></TR>
<TR><TD>Upgrades Available:</TD><TD><A HREF="indian_advanced_iron_full.html">Advanced Iron</A> (Attack&nbsp;Strength:&nbsp;+40, 
Armor:&nbsp;+5)<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="beehive_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/beehive/images/defense_tower.bmp" HEIGHT=64 WIDTH=64 ALT="Beehive"></TD><TD WIDTH=500> <B>Beehive</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_shaman_full.html">Shaman</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>140</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>7000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>20</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#wood">Wood</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>16</TD></TR>
<TR><TD>Needed to build 'Beehive':</TD><TD><A HREF="indian_totem_full.html">Totem</A><br>
<A HREF="indian_reed_full.html">Reed</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD>Attack Command: Attack On<BR><IMG SRC="../../techs/megapack/factions/indian/units/beehive/images/defense_tower_attack_on.bmp" HEIGHT=32 WIDTH=32 ALT="Attack On"></TD><TD>
Target: Only ground units<BR>
Strength: 120+-50<BR>
Range: 12<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 80<BR>
Start Time: 0.3<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="big_tent_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/big_tent/images/bigtent.bmp" HEIGHT=64 WIDTH=64 ALT="Big Tent"></TD><TD WIDTH=500> <B>Big Tent</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-35</NOBR>&nbsp;
<TR><TD>Storage:</TD><TD><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;200&nbsp;
(Hint: This also means a worker can drop of his harvested wood into this building so it's useful to build it near trees.)</TD></TR>
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>3000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>5</TD></TR>
<TR><TD>'Big Tent' is able to Produce:</TD><TD><A HREF="indian_stickfighter_full.html">Stickfighter</A><br>
<A HREF="indian_archer_full.html">Archer</A><br>
</TD></TR>
<TR><TD>Needed to build 'Big Tent':</TD><TD><A HREF="indian_main_teepee_full.html">Main Teepee</A><br>
<A HREF="indian_tent_full.html">Tent</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="bull_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/bull/images/bull.bmp" HEIGHT=64 WIDTH=64 ALT="Bull"></TD><TD WIDTH=500> <B>Bull</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_horse_farm_full.html">Horse Farm</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">20</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>30</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>4</TD></TR>
<TR><TD>Maximum Energy Points:</TD><TD>500</TD></TR>
<TR><TD>Regeneration Energy Points:</TD><TD>80</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>3</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#organic">Organic</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>12</TD></TR>
<TR><TD>Needed to build 'Bull':</TD><TD><A HREF="indian_bull_food_full.html">Bull Food</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 330</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/bull/images/bull_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 125+-40<BR>
Range: 1<BR>
Splash-Radius: 0<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 40<BR>
Start Time: 0<BR>
Energy-Cost: 500<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="bull_food_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/bull_food/images/bullfood.bmp" HEIGHT=64 WIDTH=64 ALT="Bull Food"></TD><TD WIDTH=500> <B>Bull Food</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_reed_full.html">Reed</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>300</TD></TR>
<TR><TD>'Bull Food' is a Upgrade-Requirement for:</TD><TD><A HREF="indian_bull_full.html">Bull</A><br>
</TD></TR>
<TR><TD>Needed to build 'Bull Food':</TD><TD><A HREF="indian_reed_full.html">Reed</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="campfire_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/campfire/images/campfire.bmp" HEIGHT=64 WIDTH=64 ALT="Campfire"></TD><TD WIDTH=500> <B>Campfire</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">100</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">175</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">70</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>5400</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>5</TD></TR>
<TR><TD>'Campfire' is able to Produce:</TD><TD><A HREF="indian_fire_golem_full.html">Fire Golem</A><br>
</TD></TR>
<TR><TD>'Campfire' is able to Upgrade:</TD><TD><A HREF="indian_iron_full.html">Iron</A><br>
<A HREF="indian_advanced_iron_full.html">Advanced Iron</A><br>
</TD></TR>
<TR><TD>'Campfire' is a Requirement for:</TD><TD><A HREF="indian_axe_thrower_full.html">Axe Thrower</A><br>
<A HREF="indian_fire_archer_full.html">Fire Archer</A><br>
<A HREF="indian_axe_indian_full.html">Axe Indian</A><br>
<A HREF="indian_totem_full.html">Totem</A><br>
</TD></TR>
<TR><TD>Needed to build 'Campfire':</TD><TD><A HREF="indian_round_tent_full.html">Round Tent</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="fire_archer_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/fire_archer/images/fire_archer.bmp" HEIGHT=64 WIDTH=64 ALT="Fire Archer"></TD><TD WIDTH=500> <B>Fire Archer</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_round_tent_full.html">Round Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">120</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">70</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>15</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>15</TD></TR>
<TR><TD>Needed to build 'Fire Archer':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_reed_full.html">Reed</A><br>
<A HREF="indian_campfire_full.html">Campfire</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 220</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/fire_archer/images/archer_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Ground and air units<BR>
Strength: 110+-50<BR>
Range: 10<BR>
Type: <a href="attack_and_armor_types.html#piercing">Piercing</A> <BR>
Attack Speed: 60<BR>
Start Time: 0<BR>
This Attack Skill is used on "Hold Position"<BR>
("Hold Position" requires <A HREF="indian_training_field_full.html">Training Field</A>)<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Elite</b> at 5 kills<BR>
Hitpoints: 700 -> 1050<BR>
Armor Strength: 15 -> 22<BR>
Sight: 15 -> 18<BR>
</TD></TR>
<TR><TD>Upgrades Available:</TD><TD><A HREF="indian_petroleum_full.html">Petroleum</A> (Sight:&nbsp;+1, 
Attack&nbsp;Strength:&nbsp;+40)<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="fire_golem_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/fire_golem/images/firegolem.bmp" HEIGHT=64 WIDTH=64 ALT="Fire Golem"></TD><TD WIDTH=500> <B>Fire Golem</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_campfire_full.html">Campfire</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">3</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>150</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>2000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>3</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>45</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>10</TD></TR>
<TR><TD>Needed to build 'Fire Golem':</TD><TD><A HREF="indian_totem_full.html">Totem</A><br>
<A HREF="indian_reed_full.html">Reed</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 50</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/fire_golem/images/firegolem_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 200+-200<BR>
Range: 10<BR>
Splash-Radius: 0<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 50<BR>
Start Time: 0.4<BR>
This Attack Skill is used on "Hold Position"<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Ancient</b> at 10 kills<BR>
Hitpoints: 2000 -> 3000<BR>
Armor Strength: 45 -> 67<BR>
Sight: 10 -> 12<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="horse_farm_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/horse_farm/images/farm.bmp" HEIGHT=64 WIDTH=64 ALT="Horse Farm"></TD><TD WIDTH=500> <B>Horse Farm</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">100</NOBR>&nbsp;
<TR><TD>Storage:</TD><TD><IMG SRC="../../techs/megapack/resources/food/images/food.bmp" HEIGHT=16 WIDTH=16 ALT="Food">&nbsp;20&nbsp;
</TD></TR>
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>4000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#wood">Wood</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>5</TD></TR>
<TR><TD>'Horse Farm' is able to Produce:</TD><TD><A HREF="indian_horseman_full.html">Horseman</A><br>
<A HREF="indian_bull_full.html">Bull</A><br>
</TD></TR>
<TR><TD>'Horse Farm' is able to Upgrade:</TD><TD><A HREF="indian_stables_full.html">Stables</A><br>
</TD></TR>
<TR><TD>Needed to build 'Horse Farm':</TD><TD><A HREF="indian_round_tent_full.html">Round Tent</A><br>
<A HREF="indian_main_teepee_full.html">Main Teepee</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="horseman_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/horseman/images/horseman.bmp" HEIGHT=64 WIDTH=64 ALT="Horseman"></TD><TD WIDTH=500> <B>Horseman</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_horse_farm_full.html">Horse Farm</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">100</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>120</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>1300</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>2</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>50</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>10</TD></TR>
<TR><TD>Needed to build 'Horseman':</TD><TD><A HREF="indian_stables_full.html">Stables</A><br>
<A HREF="indian_iron_full.html">Iron</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 480</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/horseman/images/horseman_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 215+-25<BR>
Range: 3<BR>
Type: <a href="attack_and_armor_types.html#slashing">Slashing</A> <BR>
Attack Speed: 110<BR>
Start Time: 0.8<BR>
This Attack Skill is used on "Hold Position"<BR>
("Hold Position" requires <A HREF="indian_training_field_full.html">Training Field</A>)<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Elite</b> at 6 kills<BR>
Hitpoints: 1300 -> 1950<BR>
Armor Strength: 50 -> 75<BR>
Sight: 10 -> 12<BR>
</TD></TR>
<TR><TD>Upgrades Available:</TD><TD><A HREF="indian_advanced_iron_full.html">Advanced Iron</A> (Attack&nbsp;Strength:&nbsp;+40, 
Armor:&nbsp;+5)<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="iron_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/iron/images/iron.bmp" HEIGHT=64 WIDTH=64 ALT="Iron"></TD><TD WIDTH=500> <B>Iron</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_campfire_full.html">Campfire</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>300</TD></TR>
<TR><TD>'Iron' is a Upgrade-Requirement for:</TD><TD><A HREF="indian_axe_thrower_full.html">Axe Thrower</A><br>
<A HREF="indian_horseman_full.html">Horseman</A><br>
<A HREF="indian_axe_indian_full.html">Axe Indian</A><br>
</TD></TR>
<TR><TD>Needed to build 'Iron':</TD><TD><A HREF="indian_campfire_full.html">Campfire</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="main_teepee_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/main_teepee/images/mainteepee.bmp" HEIGHT=64 WIDTH=64 ALT="Main Teepee"></TD><TD WIDTH=500> <B>Main Teepee</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">350</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-6</NOBR>&nbsp;
<TR><TD>Storage:</TD><TD><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">&nbsp;2000&nbsp;<IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">&nbsp;1200&nbsp;<IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">&nbsp;1500&nbsp;
</TD></TR>
<TR><TD>Production Time:</TD><TD>300</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>9000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>15</TD></TR>
<TR><TD>'Main Teepee' is able to Produce:</TD><TD><A HREF="indian_worker_full.html">Worker</A><br>
</TD></TR>
<TR><TD>'Main Teepee' is a Requirement for:</TD><TD><A HREF="indian_reed_full.html">Reed</A><br>
<A HREF="indian_big_tent_full.html">Big Tent</A><br>
<A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_horse_farm_full.html">Horse Farm</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="petroleum_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/petroleum/images/petroleum.bmp" HEIGHT=64 WIDTH=64 ALT="Petroleum"></TD><TD WIDTH=500> <B>Petroleum</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_totem_full.html">Totem</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>300</TD></TR>
<TR><TD>Increase Sight:&nbsp;</TD><TD>+1</TD></TR>
<TR><TD>Increase Attack&nbsp;Strength:&nbsp;</TD><TD>+40</TD></TR>
<TR><TD>Affects Units:</TD><TD> <A HREF="indian_fire_archer_full.html">Fire Archer</A></TD></TR>
<TR><TD>Needed to build 'Petroleum':</TD><TD><A HREF="indian_totem_full.html">Totem</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="reed_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/reed/images/reed.bmp" HEIGHT=64 WIDTH=64 ALT="Reed"></TD><TD WIDTH=500> <B>Reed</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">125</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">80</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">80</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>3400</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>5</TD></TR>
<TR><TD>'Reed' is able to Upgrade:</TD><TD><A HREF="indian_bull_food_full.html">Bull Food</A><br>
</TD></TR>
<TR><TD>'Reed' is a Requirement for:</TD><TD><A HREF="indian_fire_archer_full.html">Fire Archer</A><br>
<A HREF="indian_beehive_full.html">Beehive</A><br>
<A HREF="indian_fire_golem_full.html">Fire Golem</A><br>
<A HREF="indian_archer_full.html">Archer</A><br>
</TD></TR>
<TR><TD>Needed to build 'Reed':</TD><TD><A HREF="indian_main_teepee_full.html">Main Teepee</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="round_tent_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/round_tent/images/roundtent.bmp" HEIGHT=64 WIDTH=64 ALT="Round Tent"></TD><TD WIDTH=500> <B>Round Tent</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>70</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>6000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>6</TD></TR>
<TR><TD>'Round Tent' is able to Produce:</TD><TD><A HREF="indian_axe_indian_full.html">Axe Indian</A><br>
<A HREF="indian_axe_thrower_full.html">Axe Thrower</A><br>
<A HREF="indian_fire_archer_full.html">Fire Archer</A><br>
<A HREF="indian_spearman_full.html">Spearman</A><br>
</TD></TR>
<TR><TD>'Round Tent' is able to Upgrade:</TD><TD><A HREF="indian_training_field_full.html">Training Field</A><br>
</TD></TR>
<TR><TD>'Round Tent' is a Requirement for:</TD><TD><A HREF="indian_campfire_full.html">Campfire</A><br>
<A HREF="indian_horse_farm_full.html">Horse Farm</A><br>
</TD></TR>
<TR><TD>Needed to build 'Round Tent':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
</TD></TR>
<TR><TD>Upgrades Available:</TD><TD><A HREF="indian_training_field_full.html">Training Field</A> (Production&nbsp;Speed:&nbsp;+150)<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="shaman_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/shaman/images/shaman.bmp" HEIGHT=64 WIDTH=64 ALT="Shaman"></TD><TD WIDTH=500> <B>Shaman</B></TD></TR>
<TR><TD>Type:</TD><TD>Worker Unit<br>
Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_totem_full.html">Totem</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>80</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>550</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>8</TD></TR>
<TR><TD>'Shaman' is able to Build:</TD><TD><A HREF="indian_beehive_full.html">Beehive</A><br>
</TD></TR>
<TR><TD>'Shaman' is able to Produce:</TD><TD><A HREF="indian_thunderbird_full.html">Thunderbird</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 210</TD></TR>
<TR><TD>Attack Command: Molotov<BR><IMG SRC="../../techs/megapack/factions/indian/units/shaman/images/molotov.bmp" HEIGHT=32 WIDTH=32 ALT="Molotov"></TD><TD>
Target: Only ground units<BR>
Strength: 200+-175<BR>
Range: 6<BR>
Splash-Radius: 1<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 35<BR>
Start Time: 0.5<BR>
</TD></TR>
<TR><TD> Repair/Heal Skill: Repair </TD><TD>Repairing: <A HREF="indian_beehive_full.html">Beehive</A><BR>
Repair/Heal Speed: 210<BR>
</TD></TR>
<TR><TD> Repair/Heal Skill: Heal </TD><TD>Healing: <A HREF="indian_worker_full.html">Worker</A>, <A HREF="indian_shaman_full.html">Shaman</A>, <A HREF="indian_stickfighter_full.html">Stickfighter</A>, <A HREF="indian_archer_full.html">Archer</A>, <A HREF="indian_fire_golem_full.html">Fire Golem</A>, <A HREF="indian_bull_full.html">Bull</A>, <A HREF="indian_fire_archer_full.html">Fire Archer</A>, <A HREF="indian_thunderbird_full.html">Thunderbird</A>, <A HREF="indian_axe_indian_full.html">Axe Indian</A>, <A HREF="indian_axe_thrower_full.html">Axe Thrower</A>, <A HREF="indian_horseman_full.html">Horseman</A><BR>
Repair/Heal Speed: 210<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="spearman_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/spearman/images/spearman.bmp" HEIGHT=64 WIDTH=64 ALT="Spearman"></TD><TD WIDTH=500> <B>Spearman</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_round_tent_full.html">Round Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">40</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>30</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>2</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>10</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>14</TD></TR>
<TR><TD>Needed to build 'Spearman':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 220</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/spearman/images/spearman_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 90+-40<BR>
Range: 1<BR>
Splash-Radius: 0<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#slashing">Slashing</A> <BR>
Attack Speed: 100<BR>
Start Time: 0.15<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Guardian</b> at 3 kills<BR>
Hitpoints: 700 -> 1050<BR>
Armor Strength: 10 -> 15<BR>
Sight: 14 -> 16<BR>
<B>Chief</b> at 7 kills<BR>
Hitpoints: 1050 -> 1575<BR>
Armor Strength: 15 -> 22<BR>
Sight: 16 -> 20<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="stables_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/stables/images/stables.bmp" HEIGHT=64 WIDTH=64 ALT="Stables"></TD><TD WIDTH=500> <B>Stables</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_horse_farm_full.html">Horse Farm</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>200</TD></TR>
<TR><TD>'Stables' is a Upgrade-Requirement for:</TD><TD><A HREF="indian_horseman_full.html">Horseman</A><br>
</TD></TR>
<TR><TD>Needed to build 'Stables':</TD><TD><A HREF="indian_horse_farm_full.html">Horse Farm</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="stickfighter_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/stickfighter/images/swordman.bmp" HEIGHT=64 WIDTH=64 ALT="Stickfighter"></TD><TD WIDTH=500> <B>Stickfighter</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_big_tent_full.html">Big Tent</A><BR>
Produced by <A HREF="indian_tent_full.html">Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost when produced by Big Tent: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">35</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">25</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Total Cost when produced by Tent: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">35</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">25</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>30</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>700</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>7</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>10</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 220</TD></TR>
<TR><TD>Attack Command: Attack<BR><IMG SRC="../../techs/megapack/factions/indian/units/stickfighter/images/swordman_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Attack"></TD><TD>
Target: Only ground units<BR>
Strength: 75+-30<BR>
Range: 1<BR>
Type: <a href="attack_and_armor_types.html#slashing">Slashing</A> <BR>
Attack Speed: 100<BR>
Start Time: 0<BR>
This Attack Skill is used on "Hold Position"<BR>
("Hold Position" requires <A HREF="indian_training_field_full.html">Training Field</A>)<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Elite</b> at 3 kills<BR>
Hitpoints: 700 -> 1050<BR>
Armor Strength: 7 -> 10<BR>
Sight: 10 -> 12<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="tent_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/tent/images/tent.bmp" HEIGHT=64 WIDTH=64 ALT="Tent"></TD><TD WIDTH=500> <B>Tent</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">30</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">50</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">-10</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>1400</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#stone">Stone</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>5</TD></TR>
<TR><TD>'Tent' is able to Produce:</TD><TD><A HREF="indian_stickfighter_full.html">Stickfighter</A><br>
</TD></TR>
<TR><TD>'Tent' is a Requirement for:</TD><TD><A HREF="indian_round_tent_full.html">Round Tent</A><br>
<A HREF="indian_axe_thrower_full.html">Axe Thrower</A><br>
<A HREF="indian_fire_archer_full.html">Fire Archer</A><br>
<A HREF="indian_big_tent_full.html">Big Tent</A><br>
<A HREF="indian_spearman_full.html">Spearman</A><br>
<A HREF="indian_axe_indian_full.html">Axe Indian</A><br>
<A HREF="indian_archer_full.html">Archer</A><br>
<A HREF="indian_totem_full.html">Totem</A><br>
</TD></TR>
<TR><TD>Needed to build 'Tent':</TD><TD><A HREF="indian_main_teepee_full.html">Main Teepee</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="thunderbird_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/thunderbird/images/eagle.bmp" HEIGHT=64 WIDTH=64 ALT="Thunderbird"></TD><TD WIDTH=500> <B>Thunderbird</B></TD></TR>
<TR><TD>Type:</TD><TD>Combat Unit
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_shaman_full.html">Shaman</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">200</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">100</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>450</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>1300</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>3</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>20</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#organic">Organic</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>15</TD></TR>
<TR><TD>Movement Type:</TD><TD>Air Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 350</TD></TR>
<TR><TD>Attack Command: Throw<BR><IMG SRC="../../techs/megapack/factions/indian/units/thunderbird/images/eagle_attack2.bmp" HEIGHT=32 WIDTH=32 ALT="Throw"></TD><TD>
Target: Only ground units<BR>
Strength: 250+-40<BR>
Range: 7<BR>
Splash-Radius: 1<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 40<BR>
Start Time: 0.3<BR>
This Attack Skill is used on "Hold Position"<BR>
</TD></TR>
<TR><TD>Attack Command: Breath<BR><IMG SRC="../../techs/megapack/factions/indian/units/thunderbird/images/eagle_attack.bmp" HEIGHT=32 WIDTH=32 ALT="Breath"></TD><TD>
Target: Only air units<BR>
Strength: 250+-40<BR>
Range: 1<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 40<BR>
Start Time: 0.3<BR>
</TD></TR>
<TR><TD>Level(s):</TD><TD>
<B>Ancient</b> at 4 kills<BR>
Hitpoints: 1300 -> 1950<BR>
Armor Strength: 20 -> 30<BR>
Sight: 15 -> 18<BR>
<B>Expert</b> at 10 kills<BR>
Hitpoints: 1950 -> 2925<BR>
Armor Strength: 30 -> 45<BR>
Sight: 18 -> 21<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="totem_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/totem/images/totem.bmp" HEIGHT=64 WIDTH=64 ALT="Totem"></TD><TD WIDTH=500> <B>Totem</B></TD></TR>
<TR><TD>Type:</TD><TD>Building</TD></TR>
<TR><TD>Creation:</TD><TD>Built by <A HREF="indian_worker_full.html">Worker</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">400</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">250</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=16 WIDTH=16 ALT="Stone">50</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>50</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>11000</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>-</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#wood">Wood</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>19</TD></TR>
<TR><TD>'Totem' is able to Produce:</TD><TD><A HREF="indian_shaman_full.html">Shaman</A><br>
</TD></TR>
<TR><TD>'Totem' is able to Upgrade:</TD><TD><A HREF="indian_petroleum_full.html">Petroleum</A><br>
</TD></TR>
<TR><TD>'Totem' is a Requirement for:</TD><TD><A HREF="indian_beehive_full.html">Beehive</A><br>
<A HREF="indian_fire_golem_full.html">Fire Golem</A><br>
</TD></TR>
<TR><TD>Needed to build 'Totem':</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_campfire_full.html">Campfire</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD>Attack Command: Air On<BR><IMG SRC="../../techs/megapack/factions/indian/units/totem/images/tower_of_souls_attack_on.bmp" HEIGHT=32 WIDTH=32 ALT="Air On"></TD><TD>
Target: Only air units<BR>
Strength: 150+-50<BR>
Range: 15<BR>
Splash-Radius: 3<BR>
Splash also damages own units!<BR>
Type: <a href="attack_and_armor_types.html#energy">Energy</A> <BR>
Attack Speed: 80<BR>
Start Time: 0.3<BR>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="training_field_full"></A><IMG SRC="../../techs/megapack/factions/indian/upgrades/training_field/images/training_field.bmp" HEIGHT=64 WIDTH=64 ALT="Training Field"></TD><TD WIDTH=500> <B>Training Field</B></TD></TR>
<TR><TD>Type:</TD><TD>Upgrade</TD></TR>
<TR><TD>Creation:</TD><TD>Upgraded by <A HREF="indian_round_tent_full.html">Round Tent</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">150</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=16 WIDTH=16 ALT="Wood">150</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>300</TD></TR>
<TR><TD>Increase Production&nbsp;Speed:&nbsp;</TD><TD>+150</TD></TR>
<TR><TD>Affects Units:</TD><TD> <A HREF="indian_round_tent_full.html">Round Tent</A></TD></TR>
<TR><TD>'Training Field' enables commands:</TD><TD>Hold Position : <A HREF="indian_horseman_full.html">Horseman</A><br>
Hold Position : <A HREF="indian_fire_archer_full.html">Fire Archer</A><br>
Hold Position : <A HREF="indian_stickfighter_full.html">Stickfighter</A><br>
Hold Position : <A HREF="indian_archer_full.html">Archer</A><br>
</TD></TR>
<TR><TD>Needed to build 'Training Field':</TD><TD><A HREF="indian_round_tent_full.html">Round Tent</A><br>
</TD></TR>
</TABLE><P>

<TABLE BORDER=1><TR><TD WIDTH=250><A NAME="worker_full"></A><IMG SRC="../../techs/megapack/factions/indian/units/worker/images/worker.bmp" HEIGHT=64 WIDTH=64 ALT="Worker"></TD><TD WIDTH=500> <B>Worker</B></TD></TR>
<TR><TD>Type:</TD><TD>Worker Unit<br>
</TD></TR>
<TR><TD>Creation:</TD><TD>Produced by <A HREF="indian_main_teepee_full.html">Main Teepee</A><BR>
</TD></TR>
<TR><TD>Total Cost: </TD><TD> <NOBR><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=16 WIDTH=16 ALT="Gold">75</NOBR>&nbsp;<NOBR><IMG SRC="../../techs/megapack/resources/housing/images/housing.bmp" HEIGHT=16 WIDTH=16 ALT="Housing">1</NOBR>&nbsp;
<TR><TD>Production Time:</TD><TD>40</TD></TR>
<TR><TD>Maximum Hitpoints:</TD><TD>600</TD></TR>
<TR><TD>Regeneration of Hitpoints:</TD><TD>1</TD></TR>
<TR><TD>Armor-Strength:</TD><TD>-</TD></TR>
<TR><TD>Armor-Type:</TD><TD><a href="attack_and_armor_types.html#leather">Leather</A></TD></TR>
<TR><TD>Sight-Range:</TD><TD>9</TD></TR>
<TR><TD>'Worker' is able to Build:</TD><TD><A HREF="indian_tent_full.html">Tent</A><br>
<A HREF="indian_big_tent_full.html">Big Tent</A><br>
<A HREF="indian_round_tent_full.html">Round Tent</A><br>
<A HREF="indian_campfire_full.html">Campfire</A><br>
<A HREF="indian_reed_full.html">Reed</A><br>
<A HREF="indian_totem_full.html">Totem</A><br>
<A HREF="indian_horse_farm_full.html">Horse Farm</A><br>
<A HREF="indian_main_teepee_full.html">Main Teepee</A><br>
</TD></TR>
<TR><TD>Movement Type:</TD><TD>Ground Unit</TD>
<TR><TD> Move Command: Move </TD><TD> Speed: 190</TD></TR>
<TR><TD> Repair/Heal Skill: Repair </TD><TD>Repairing: <A HREF="indian_round_tent_full.html">Round Tent</A>, <A HREF="indian_tent_full.html">Tent</A>, <A HREF="indian_big_tent_full.html">Big Tent</A>, <A HREF="indian_totem_full.html">Totem</A>, <A HREF="indian_main_teepee_full.html">Main Teepee</A>, <A HREF="indian_horse_farm_full.html">Horse Farm</A>, <A HREF="indian_reed_full.html">Reed</A>, <A HREF="indian_campfire_full.html">Campfire</A>, <A HREF="indian_beehive_full.html">Beehive</A><BR>
Repair/Heal Speed: 40<BR>
</TD></TR>
<TR><TD> Harvest/Mine Skill: Mine </TD><TD><IMG SRC="../../techs/megapack/resources/gold/images/gold.bmp" HEIGHT=32 WIDTH=32 ALT="Gold"><IMG SRC="../../techs/megapack/resources/stone/images/stone.bmp" HEIGHT=32 WIDTH=32 ALT="Stone"><BR>
Speed: 225<BR>
Max Load: 25<BR>
Hits per Unit: 1<BR>
</TD></TR>
<TR><TD> Harvest/Mine Skill: Harvest Wood </TD><TD><IMG SRC="../../techs/megapack/resources/wood/images/wood.bmp" HEIGHT=32 WIDTH=32 ALT="Wood"><BR>
Speed: 150<BR>
Max Load: 25<BR>
Hits per Unit: 1<BR>
</TD></TR>
</TABLE><P>
<!-- start footer -->
This page was generated by: <I><A HREF="http://rupp.de/glest/">convert_faction_xml2html.pl</A></I>, version: <I>0.8.1 beta</I>, using config-file:  <I>megapack-temp.ini</I>
<br>

<div id="footer">
	<div id="footer_left"></div>
	<div id="footer_right"></div>
	<ul>
		<li><a href="https://megaglest.org/privacy.html">Privacy</a></li>
		<li><a href="https://megaglest.org/license.html"><img src="images/footer_logo.png" alt="GNU GPL and OSI logos" /></a></li>
		<li><a href="https://megaglest.org/credits.html">Credits</a></li>
	</ul>
</div>
</body>
</html>
<!-- end footer -->