-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1049 lines (1026 loc) · 43.5 KB
/
index.html
File metadata and controls
1049 lines (1026 loc) · 43.5 KB
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
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.flaticon.com/authors/madebyoliver" title="Madebyoliver">Madebyoliver</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.flaticon.com/authors/madebyoliver" title="Madebyoliver">Madebyoliver</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<div>Icons made by <a href="http://www.freepik.com" title="Freepik">Freepik</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Panda Tap</title>
<link href="css/main.css" rel="stylesheet" />
<link href="css/TimeCircles.css" rel="stylesheet" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link
href="https://fonts.googleapis.com/css?family=Ubuntu"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Iceland"
rel="stylesheet"
/>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/toastr.min.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="images/icon.png" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-91583372-1", "auto");
ga("send", "pageview");
</script>
</head>
<body>
<!-- Modal About-->
<div class="modal fade" id="modalAbout" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4 class="modal-title">About</h4>
</div>
<div class="modal-body">
<h4>Background</h4>
<p>
Panda Tap is an
<a href="https://www.reddit.com/r/incremental_games/"
>incremental game</a
>. This game is made as a group project.
</p>
<h4>Contact</h4>
<p>
Please feel free to contact us with any questions or comments
about the game. We appreciate all questions and suggestions.
</p>
<h4>Tools</h4>
<p>HTML, CSS, Bootstrap, Javascript, Jquery.</p>
<h4>Known bugs</h4>
<p>None at the moment...</p>
<h4>Donate here</h4>
<button
id="donate"
class="btn btn-default"
onclick="window.open('https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GKHCCYBPG9K5S')"
>
Donate
</button>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modal Help -->
<div class="modal fade" id="modalHelp" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4 class="modal-title">Help</h4>
</div>
<div class="modal-body">
<h4>Introduction</h4>
<p>
Panda Tap is an incremental game based off pandas. Your goal is to
collect rice, defeat monsters, and gain money to advance. To help
you, there are many upgrades to unlock along the way. The upgrades
are divided into income upgrades and hero upgrades.
</p>
<h4>Rice shop</h4>
<p>
Click at the large shop in the upper right to sell rice, which
gives you money.
</p>
<h4>Monsters</h4>
<p>
Click the large button on the bottom right to fight the current
monster. You have a timer to defeat the monster. Each monster has
its own speed, which increases each time you defeat it. After
defeating a monster <strong>ten</strong> times, you will gain
money and increased income. These monsters get harder to defeat as
you progress.
</p>
<h4>Upgrades</h4>
<p>
After collecting enough money, you will be able to upgrade. The
left column have upgrades for your rice shop, while the column at
the center contains upgrades for your hero.
</p>
<h4>Numbers</h4>
<p>Reference list of large numbers:</p>
<li>10<sup>3</sup> - thousand (k)</li>
<li>10<sup>6</sup> - million (m)</li>
<li>10<sup>9</sup> - billion (b)</li>
<li>10<sup>12</sup> - trillion (m)</li>
<li>10<sup>15</sup> - quadrillion (qd)</li>
<li>10<sup>18</sup> - quintillion (qt)</li>
<li>10<sup>21</sup> - sextillion (sx)</li>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-default modalbtn"
data-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modal Changelog -->
<div class="modal fade" id="changelog" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4 class="modal-title">Changelog</h4>
</div>
<div class="modal-body">
<p>v1: Added autosaving.</p>
<p>Beta</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modal Achievements -->
<div class="modal fade" id="achievements" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4 class="modal-title">Achivements</h4>
</div>
<div class="modal-body">
<p></p>
<p></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
<!-- Modal end-->
<!-- Modal Reset -->
<div class="modal fade" id="modalReset" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4 class="modal-title">
<center>Do you really want to reset?</center>
</h4>
</div>
<div class="modal-footer">
<center>
<button
type="button"
class="btn btn-default"
data-dismiss="modal"
id="hardReset"
>
Yes
</button>
<button
type="button"
class="btn btn-default"
data-dismiss="modal"
>
No
</button>
</center>
</div>
</div>
</div>
</div>
<!-- Modal end-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Panda Tap</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div id="navbar">
<ul class="nav navbar-nav navbar-right">
<li class="divider-vertical"></li>
<li>
<a id="save"><i class="fa fa-floppy-o" aria-hidden="true"></i></a>
</li>
<li class="divider-vertical"></li>
<li><a data-toggle="modal" href="#modalHelp">Help</a></li>
<li class="divider-vertical"></li>
<li><a data-toggle="modal" href="#modalAbout">About</a></li>
<li class="divider-vertical"></li>
<li class="dropdown">
<a
href="#"
class="dropdown-toggle"
data-toggle="dropdown"
role="button"
aria-haspopup="true"
aria-expanded="false"
>
<span class="caret"></span
></a>
<ul class="dropdown-menu">
<li>
<a data-toggle="modal" href="#changelog"
><i class="fa fa-book" aria-hidden="true"></i> -
Changelog</a
>
</li>
<li role="separator" class="divider"></li>
<li>
<a data-toggle="modal" href="#achievements"
><i class="fa fa-trophy" aria-hidden="true"></i> -
Achievements</a
>
</li>
<li role="separator" class="divider"></li>
<li>
<a data-toggle="modal" href="#modalReset"
><i class="fa fa-refresh" aria-hidden="true"></i> - Reset
save</a
>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- /.container-fluid -->
</nav>
<div class="page-header"></div>
<div class="dimmed"><a>UNLOCK AT 2ND UPGRADE</a></div>
<div class="row">
<!-- Column 1-->
<!-- Upgrades-->
<div id="part1" class="col-xs-4">
<div id="part1" class="row firstbig">
<h1
id="incomePerSec"
class="bigTooltip"
data-toggle="tooltip"
title="This is the income of your rice shop"
data-placement="bottom"
>
$$$
</h1>
</div>
<div class="row">
<div id="part2" class="col-xs-12 upgrade scroll2">
<h1></h1>
<div class="container-fluid">
<!-- Lazy Panda-->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyLazyPanda"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Lazy Panda</strong></code> is lazy, but will help you produce rice faster <br><br> Increases your income by 0.10 gold"
data-placement="bottom"
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceLazyPanda"></p
></span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="lazyPandaAmount" class="upgradeamount"></p
></span>
</div>
</div>
</div>
<!-- Lazy Panda END -->
<!-- Working Panda-->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyWorkingPanda"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Working Panda</strong></code> likes to work and will help you produce rice <br><br> Increases your income by 1 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceWorkingPanda">
<img src="images/coins.svg" class="themeicon" /> 100
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="workingPandaAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Working Panda END-->
<!-- Rice Farm -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyRiceFarm"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Rice Farm</strong></code> consists of pandas that will help you farm more rice <br><br> Increases your income by 8 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceRiceFarm">
<img src="images/coins.svg" class="themeicon" /> 1100
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="riceFarmAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Rice farm END -->
<!-- Rice Lab -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyRiceLab"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Rice Lab</strong></code> researches and increases rice productions <br><br> Increases your income by 47 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceRiceLab">
<img src="images/coins.svg" class="themeicon" /> 12000
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="riceLabAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Rice Lab END -->
<!-- Rice Factory -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyRiceFactory"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Rice Factory</strong></code> consists of a workforce to reckon with. Helps you produce even more rice <br><br> Increases your income by 260 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceRiceFactory">
<img src="images/coins.svg" class="themeicon" /> 130000
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="riceFactoryAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Rice Factory END -->
<!-- Rice Bank -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyRiceBank"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Rice Bank</strong></code> stores and earns more money for you <br><br> Increases your income by 1400 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback2">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceRiceBank">
<img src="images/coins.svg" class="themeicon" /> 1.4 m
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="riceBankAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Rice Bank END -->
<!-- Panda Temple -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyPandaTemple"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Panda Temple</strong></code> earns reputation and helps your workers for better rice productions <br><br> Increases your income by 7800 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback3">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="pricePandaTemple">
<img src="images/coins.svg" class="themeicon" /> 20 m
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="pandaTempleAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Panda Temple END -->
<!-- Wizard Panda -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyWizardPanda"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Wizard Panda</strong></code> uses magic for better rice harvest. <br><br> Increases your income by 44.000 gold"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback4">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceWizardPanda">
<img src="images/coins.svg" class="themeicon" /> 330 m
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="wizardPandaAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Wizard Panda END -->
<!-- Alchemy Panda -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyAlchemyPanda"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Alchemy Panda</strong></code> brews the latest of alchemy to help you increase the quality of your rice <br><br> Increases your income by 1.60m gold"
disabled
></button>
</div>
<div class="col-xs-4 statback5">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceAlchemyPanda">
<img src="images/coins.svg" class="themeicon" /> 75 b
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="alchemyPandaAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Alchemy Panda END -->
<!-- Bamboo Forest -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyBambooForest"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Bamboo Forest</strong></code> inspires your hired pandas to work harder<br><br> Increases your income by 10m gold"
disabled
></button>
</div>
<div class="col-xs-4 statback6">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceBambooForest">
<img src="images/coins.svg" class="themeicon" /> 1 t
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="bambooForestAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Bamboo Forest END -->
<!-- Research Facility -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyResearchFacility"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Research Facility.</strong></code> reasearches the newest of panda technology <br><br> Increases your income by 65m gold"
disabled
></button>
</div>
<div class="col-xs-4 statback7">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceResearchFacility">
<img src="images/coins.svg" class="themeicon" /> 14 t
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="researchFacilityAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Research Facility END -->
<!-- Panda School -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyPandaSchool"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong>Panda School</strong></code> is important for the education of your pandas, making them even for efficient<br> <br> Increases your income by 430 m gold"
disabled
></button>
</div>
<div class="col-xs-4 statback8">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="pricePandaSchool">
<img src="images/coins.svg" class="themeicon" /> 170 t
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="pandaSchoolAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Panda School END -->
<!-- Ninja Panda -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="buyNinjaPanda"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Ninja Panda</strong></code> swiftly rakes in a ton of money for you <br> <br> Increases your income by 2.9b gold"
disabled
></button>
</div>
<div class="col-xs-4 statback9">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceNinjaPanda">
<img src="images/coins.svg" class="themeicon" /> 2.1 qd
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="ninjaPandaAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
-
<!-- Ninja Panda END -->
<!-- -->
</div>
</div>
</div>
</div>
<!-- Column 2-->
<!-- Hero character -->
<div id="part1" class="col-xs-4 playernamecol">
<div id="part1" class="row secondbig">
<h1 id="playerName">
<input
id="selectName"
type="text"
maxlength="15"
placeholder="Your name here:"
required
/>
<button id="nameSelectBtn">⁣</button>
</h1>
</div>
<div class="row">
<div class="col-xs-12 hero herobackground">
<div class="herostatsbackground">
<h1
id="bossDMG"
data-toggle="tooltip"
title="Boss Damage <br>Click damage against the boss."
data-placement="right"
></h1>
<h1
id="clickMoney"
data-toggle="tooltip"
title="Click Money<br> Gold you gain each click on the rice bowl."
data-placement="right"
></h1>
<h1
id="bonusIncome"
data-toggle="tooltip"
title="Bonus income you gain for each ten monsters you slay."
data-placement="right"
></h1>
</div>
<div id="canvasdiv"></div>
<script type="text/javascript" src="js/main.character.js"></script>
<script type="text/javascript">
prepareCanvas(document.getElementById("canvasdiv"), 490, 220);
</script>
</div>
</div>
<!-- Hero upgrades-->
<div class="row">
<div id="part2" class="col-xs-12 heroupgrade scroll2">
<h1></h1>
<div class="container-fluid">
<!-- heroUpgrade4 -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="heroUpgrade4"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Super Rice Cooker</strong></code> enhances your rice shop, increasing the amount of money you get each click<br><br>Increases click money by 1 gold"
data-placement="bottom"
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceClick">
<img src="images/coins.svg" class="themeicon" /> N/A
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="heroUpgrade4Amount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- heroUpgrade4 END-->
<!-- heroUpgrade5 -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="heroUpgrade5"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Homan Chef</strong></code> learns you the secret cuisine of Pandas<br><br>Increases click money by 1% of your income"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback10">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceClickPerc">
<img src="images/coins.svg" class="themeicon" /> N/A
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="heroUpgrade5Amount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- heroUpgrade5 END-->
<!-- Baseballbat-->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="heroUpgrade1"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Sword of Damocles</strong></code> gives your panda more damage against the monsters<br><br> Increases damage by 1"
data-placement="top"
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceSword">
<img src="images/coins.svg" class="themeicon" /> 50
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="heroUpgrade1Amount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Baseballbat END-->
<!-- GloryRoad -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="gloryRoad"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Glory Road</strong></code> gives your panda more damage against the monsters<br><br> Increases damage by 5"
data-placement="top"
disabled
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="priceGloryRoad">
<img src="images/coins.svg" class="themeicon" /> N/A
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="gloryRoadAmount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- Glory Road END-->
<!-- heroUpgrade2 -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="heroUpgrade2"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Panda Girl</strong></code> makes you last longer, increasing the time you can battle against monsters<br><br>Increases timer by 1 second"
data-placement="top"
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="pricegf">
<img src="images/coins.svg" class="themeicon" /> N/A
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="heroUpgrade2Amount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- heroUpgrade2 END-->
<!-- heroUpgrade3 -->
<div id="part2" class="row">
<div class="col-xs-8 upgradeheight">
<button
id="heroUpgrade3"
class="btn-default btn-responsive upgradeclick"
data-toggle="tooltip"
title="<code><strong> Sensei Panda</strong></code> learns you the way of the Panda, increasing the time you can battle against monsters<br><br>Increases timer by 5 seconds"
data-placement="top"
></button>
</div>
<div class="col-xs-4 statback">
<div class="row vertical-align-top">
<span>
<p class="upgradeprice" id="pricesensei">
<img src="images/coins.svg" class="themeicon" /> N/A
</p>
</span>
</div>
<div class="row vertical-align-bottom">
<span>
<p id="heroUpgrade3Amount" class="upgradeamount">
<img src="images/stacked.svg" class="themeicon" /> 0
</p></span
>
</div>
</div>
</div>
<!-- heroUpgrade3 END-->
<p>.</p>
</div>
</div>
</div>
</div>
<!-- Column 3-->
<!-- Info here -->
<div id="part1" class="col-xs-4 moneydisplay">
<div id="part1" class="row thirdbig">
<h1
id="monDisp"
class="bigTooltip"
data-toggle="tooltip"
title="This is your total money"
data-placement="bottom"
>
Rich
</h1>
</div>
<!-- Gathering rice here -->
<div class="row">
<div id="part2" class="col-xs-12 clickingrice riceshopbackground">
<button id="makeMon" class="ricecooker"></button>
<div id="displayNum"></div>
</div>
</div>
<!-- Info here-->
<div class="row">
<div id="part2" class="col-xs-12 infodmg">
<div class="progress hpbar">
<div
class="progress-bar progress-bar-success"
role="progressbar"
aria-valuenow="100"
aria-valuemin="0"
aria-valuemax="100"
style="width: 100%"
id="HPBar"
>
<span id="HPNum">Health</span>
</div>
</div>
</div>