forked from vikhyatsingh123/SlugTerra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
4365 lines (4157 loc) · 185 KB
/
index.html
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>
<link rel="icon" href="https://static.episodate.com/images/tv-show/full/27527.png" type="image/x-icon"/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous"/>
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet"/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Site CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="images/logo-16.png" />
<link rel="stylesheet" href="index.css" />
<title>SlugTerra</title>
</head>
<body>
<div id="scroll-back">
<a href="#top"></a>
</div>
<nav class="navbar navbar-expand-lg navbar-dark p-3 mb-2 bg-secondary text-white">
<a class="navbar-brand navTitle" href="index.html">
<img src="./images/logo/slugterra_logo.png" alt="no img" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item itemNav"><a class="nav-link" href="#header">Home</a></li>
<li class="nav-item itemNav"><a class="nav-link" href="#gallery-title">Slugs</a></li>
<li class="nav-item itemNav"><a class="nav-link" href="about.html">About</a></li>
</ul>
</div>
</nav>
<!-- Start slides -->
<div id="slides" class="cover-slides">
<ul class="slides-container">
<li class="text-center">
<img src="images/1.jpg" alt="" class="background-image" /><img src="images/menu.png" alt="" class="background-image"/>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20">Welcome To</h1>
<p></p>
<h1 class="m-b-20">SlugTerra World</h1>
<a class="btn btn-lg btn-circle btn-outline-new-white" href="about.html">Read More</a>
</div>
</div>
</div>
</li>
<li class="text-center">
<img src="images/3.jpg" alt="" class="background-image" />
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20">Welcome To</h1>
<p></p>
<h1 class="m-b-20">SlugTerra World</h1>
<a class="btn btn-lg btn-circle btn-outline-new-white" href="about.html">Read More</a>
</div>
</div>
</div>
</li>
<li class="text-center">
<img src="images/2.jpg" class="background-image"/>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20">Welcome To</h1>
<p></p>
<h1 class="m-b-20">SlugTerra World</h1>
<a class="btn btn-lg btn-circle btn-outline-new-white" href="about.html">Read More</a>
</div>
</div>
</div>
</li>
</ul>
<div class="slides-navigation">
<a href="#" class="next"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
<a href="#" class="prev"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
</div>
</div>
<!-- End slides -->
<div id="gallery-title"></div>
<div class="gallery-div">
<h1 class="gallery-head">Slugs - Gallery</h1>
</div>
<!-- GlowBall DIV -->
<div class="Explore"></div>
<section id="gallery">
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://static.wikia.nocookie.net/slugterra/images/9/92/Trixie.png/revision/latest?cb=20130224220623"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Trixie</h5>
<p class="card-text">
Beatrice Sting, more commonly known as Trixie, is no slouch on
the Slugslinging field. Her blaster packs a mean Slug punch!
She is a member of the Shane Gang, along with Eli Shane, Kord
Zane and Pronto.
</p>
<a
href="https://github.com/PoojaGuptan03"
class="btn btn-outline-danger btn-sm"
>Contributed by - PoojaGuptan03</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/joker.webp" alt="" />
<div class="card-body">
<h5 class="card-title">Joker</h5>
<p class="card-text">
Joker is Eli Shane's Gazzer.He debuts in Slug Fu Showdown
despite Eli owns a Gazzer in "Bandoleer of Brothers".
</p>
<a
href="https://github.com/Aniruddh-Singh"
class="btn btn-outline-danger btn-sm"
>Contributed by - Aniruddh Singh</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/rarity.webp" alt="Enigmo" />
<div class="card-body">
<h5 class="card-title">Enigmo</h5>
<p class="card-text">
Enigmo is an endangered, ultra rare, species of Slug with a
pair of vertically stacked eyes. These slugs are so rare that
they were considered a legend. At Velocity, it transforms into
an Aztec-like creature that causes blurred double-vision in
whoever it hits.
</p>
<a
href="https://github.com/saurabhtopthon01/"
class="btn btn-outline-danger btn-sm"
>Contributed by - Saurabh</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://static.wikia.nocookie.net/slugterra/images/a/aa/Aquabeek_proto.png/revision/latest?cb=20170613203757" alt="">
<div class="card-body">
<h5 class="card-title">Aquabeek</h5>
<p class="card-text">AquaBeeks are blue, turquoise, and white Water element Slugs .
Its preferred habitats are sea caverns and coral reefs such as Undertow Cavern. AquaBeeks first appeared in
"The World Beneath Our Feet Part 2".At velocity it has a similar appearance to a dolphin, with tentacles like an octopus. </p>
<a href="https://github.com/asmdnayeeem" class="btn btn-outline-danger btn-sm">Contributed by - asmdnayeeem</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/burphy.jpg" alt="Burphy" />
<div class="card-body">
<h5 class="card-title">Burphy</h5>
<p class="card-text">
Burpy was part of Will Shane's arsenal until he was sent to
find Eli right before Will went missing. He's Eli's faithful
companion, an ultimate fire-based weapon and master slug
strategist
</p>
<a
href="https://github.com/vikhyatsingh123/"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/beeker.png"
alt="Bulbasaur"
/>
<div class="card-body">
<h5 class="card-title">Beeker</h5>
<p class="card-text">
Beeker was used repeatedly in "Deep Water, Dark Water" due to
him being an amphibious Slug, therefore not needing a Torpedo
Shell to be fired successfully
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="./images/tazerling.png" alt="" />
<div class="card-body">
<h5 class="card-title">Infurnus</h5>
<p class="card-text">
Infurnus are ultimate fire-based weapons and master slug
strategists. They're the generals to a slinger's slugs.
Extremely loyal, faithful and cleverer than your average slug,
Infurnus have slug moves most people have never even seen
before!
</p>
<a
href="https://github.com/akbajwa"
class="btn btn-outline-danger btn-sm"
>Contributed by - Amanpreet Kaur
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Tazerling.png" alt="" />
<div class="card-body">
<h5 class="card-title">Tazerling</h5>
<p class="card-text">
Tazerlings are small blue Slugs, with yellow highlights on
them. Tazerlings have a strangely shaped pattern on their
stomachs which are a lighter blue. On top of that, they have
seed-like shapes of yellow. Like all Slugs, Tazerlings have
short, stubby arms. They have big brown eyes, with yellow
lightning bolts above them in an eyebrow scheme. They have
what seems to be three teeth, two big teeth on the sides on
the top, and a big tooth under and can fit in between the
other two teeth.
</p>
<a
href="https://github.com/akbajwa"
class="btn btn-outline-danger btn-sm"
>Contributed by - Amanpreet Kaur
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/download.png" alt="" />
<div class="card-body">
<h5 class="card-title">Bajoterra</h5>
<p class="card-text">
Bajoterra is one of the strongrdst Slug.Slugs are the magical
creatures that are the main focus of SlugTerra. They are
magical creatures that transform into more powerful versions
of themselves "when they hit the speed of 100 miles per hour".
</p>
<a
href="https://github.com/akbajwa"
class="btn btn-outline-danger btn-sm"
>Contributed by - Amanpreet Kaur
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/goon.png" alt="Bulbasaur" />
<div class="card-body">
<h5 class="card-title">Goon</h5>
<p class="card-text">
The Goon is an especially evil Goon Doc ghoul, seething with
dark energy. When it attacks, the Goon has an eerie way of
getting into a target Slugslinger's head. The Goon is
determined to conquer every cavern in Slugterra!
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Infurnus.png" alt="" />
<div class="card-body">
<h5 class="card-title">Infurnus</h5>
<p class="card-text">
Infurnus are ultimate fire-based weapons and master slug
strategists. They're the generals to a slinger's slugs.
Extremely loyal, faithful and cleverer than your average slug,
Infurnus have slug moves most people have never even seen
before!
</p>
<a
href="https://github.com/akbajwa"
class="btn btn-outline-danger btn-sm"
>Contributed by - Amanpreet Kaur
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Tazerling.png" alt="" />
<div class="card-body">
<h5 class="card-title">Tazerling</h5>
<p class="card-text">
Tazerlings are small blue Slugs, with yellow highlights on
them. Tazerlings have a strangely shaped pattern on their
stomachs which are a lighter blue. On top of that, they have
seed-like shapes of yellow. Like all Slugs, Tazerlings have
short, stubby arms. They have big brown eyes, with yellow
lightning bolts above them in an eyebrow scheme. They have
what seems to be three teeth, two big teeth on the sides on
the top, and a big tooth under and can fit in between the
other two teeth.
</p>
<a
href="https://github.com/akbajwa"
class="btn btn-outline-danger btn-sm"
>Contributed by - Amanpreet Kaur
</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/Charger.png"
alt="Bulbasaur"
/>
<div class="card-body">
<h5 class="card-title">Charger</h5>
<p class="card-text">
Charger first debut in The Emperor Strikes Back to charge up
Burpy with Levelest to try and take down the Iron Warriror.
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/boon-doc.png"
alt="boon-doc"
/>
<div class="card-body">
<h5 class="card-title">Beeker</h5>
<p class="card-text">
Beeker was used repeatedly in "Deep Water, Dark Water" due to
him being an amphibious Slug, therefore not needing a Torpedo
Shell to be fired successfully
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/HopRock.jpg"
alt="Hop Rock"
/>
<div class="card-body">
<h5 class="card-title">Hop Rock</h5>
<p class="card-text">
It is fire elemnt slug used for fire ammunation. They are
better known for their fire managing abilities.
</p>
<a
href="https://github.com/SecretSenator"
class="btn btn-outline-danger btn-sm"
>Contributed by - Aryan Asgar</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/goon.png" alt="Bulbasaur" />
<div class="card-body">
<h5 class="card-title">Goon</h5>
<h5 class="card-title">Boon Doc</h5>
<p class="card-text">
Boon Docs are extremely rare and powerful healer slugs known
for their ability to restore a person's health and most
importantly, heal ghoul slugs. A famous Boon Doc is/was The
Goon, who belongs to The Emperor.
</p>
<a
href="https://github.com/aimeetacchi"
class="btn btn-outline-danger btn-sm"
>Contributed by - aimeetacchi</a
>
</div>
</div>
</div>
<!-- bubbaleone starts here -->
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="./images/Bubbaleone.png" alt="Bubbaleone">
<div class="card-body">
<h5 class="card-title">Bubbaleone</h5>
<p class="card-text">Bubbaleones are rare water slugs that are typically found in rocky streams and freshwater rivers. When in protoform, it resembles a Lavalynx.
It transforms into a large bubble-like version of itself as they reach 100 mph.
They are also capable of protoform bubble blowing, as demonstrated in "The Gentleman and the Thief."
Against a gattler, a Bubbaleone can be helpful. The indestructible slug skin makes it ideal for combating mimics or explosive slugs.
Bubbaleones can be employed for both surface- and subsurface-based transportation.</p>
<a href="https://github.com/Satarupa22-SD" class="btn btn-outline-danger btn-sm">Contributed by - Satarupa Deb</a>
</div>
</div>
</div>
<!-- bubbaleone ends here -->
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/goon.png" alt="Bulbasaur" />
<div class="card-body">
<h5 class="card-title">Goon</h5>
<p class="card-text">
The Goon is an especially evil Goon Doc ghoul, seething with
dark energy. When it attacks, the Goon has an eerie way of
getting into a target Slugslinger's head. The Goon is
determined to conquer every cavern in Slugterra!
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Sibashish</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/f/fb/Bubbleone1.png/revision/latest/scale-to-width-down/310?cb=20130325193403"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Charger</h5>
<p class="card-text">
Charger first debut in The Emperor Strikes Back to charge up
Burpy with Levelest to try and take down the Iron Warriror.
</p>
<a
href="https://github.com/vikhyatsingh123"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vikhyat</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="./images/shadow.png" alt="" />
<div class="card-body">
<h5 class="card-title">Shadow clan</h5>
<p class="card-text">
The Shadow Clan have been displayed as territorial and are
prone to aggressively defend their Territory by grabbing Slugs
on their back and throwing with their tails.
</p>
<a
href="https://github.com/singhprince12346"
class="btn btn-outline-danger btn-sm"
>Contributed by - Prince</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://i.pinimg.com/564x/cb/ff/8c/cbff8ce376e66a8acbd6a0f14b3b4bd6.jpg"
alt="Phosphoro"
/>
<div class="card-body">
<h5 class="card-title">Phosphoro</h5>
<p class="card-text">
Phosphoros are blue common light element Slugs. When they
reach 100 mph they turns into creature whose appearance is
similar to that of an angler fish. The Phosphoros power type
is light. In protoform, this Slug can illuminate itself.
</p>
<a
href="https://github.com/ankitabasera"
class="btn btn-outline-danger btn-sm"
>Contributed by - Ankita Basera</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/boon-doc.png"
alt="boon-doc"
/>
<div class="card-body">
<h5 class="card-title">Boon Doc</h5>
<p class="card-text">
Boon Docs are extremely rare and powerful healer slugs known
for their ability to restore a person's health and most
importantly, heal ghoul slugs. A famous Boon Doc is/was The
Goon, who belongs to The Emperor.
</p>
<a
href="https://github.com/aimeetacchi"
class="btn btn-outline-danger btn-sm"
>Contributed by - aimeetacchi</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/f/fb/Bubbleone1.png/revision/latest/scale-to-width-down/310?cb=20130325193403"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Suds</h5>
<p class="card-text">
Belongs to Eli Shane. Has been used multiple times to sasve
Pronto and defeat Captain Malvolio Drake, Munch and saved the
gang's life.
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="Explore"></div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="./images/ritesh.jfif"
alt="Pieper Slugs
"
/>
<div class="card-body">
<h5 class="card-title">Pieper Slugs</h5>
<p class="card-text">
Pieper slugs are incredibly strong slugs that are perfect for
getting ammunition and turn enemy slugs to your side, and are
also able to be useful offensively thanks to their sound based
attacks. outside of battle they can also be useful to destroy
obstacles like walls and rocks, and can also be useful for
transportation thanks to their ability to fly.
</p>
<a
href="https://github.com/RiteshKr00"
class="btn btn-outline-danger btn-sm"
>Contributed by - Ritesh Kumar</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/7/77/Opening_Chiller.png/revision/latest/scale-to-width-down/310?cb=20121023205533"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Chiller</h5>
<p class="card-text">
Found by Eli in "The Slugout". As a wild caught Slug, he is a
rookie and one of the more timid Slugs
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/d/df/Stunts%282%29.png/revision/latest?cb=20160117213039"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Stunts</h5>
<p class="card-text">
He is a Speedstinger Slug, belonging to Eli Shane. Stunts has
special goggles which he uses to calculate precise angles.
Friendly, but mischevious by nature.
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="https://static.wikia.nocookie.net/slugterra/images/5/54/Still_Jellyish.png/revision/latest?cb=20130221025924" alt="">
<div class="card-body">
<h5 class="card-title">Jellyish</h5>
<p class="card-text">Jellyish are a common blue and green Slug found mostly in Cavern Sea Reef.
It's power type is Goo blasts, and it is a water type Slug. They have a simillar body type
to the Frightgeist Slug. They can defeat a Sand Angler and a Rammstone by using its Loogi attack.</p>
<a href="https://github.com/dipanjan" class="btn btn-outline-danger btn-sm">Contributed by - dipanjan</a>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/4/44/ST_SG_SLUGS_NegashadeProto.png/revision/latest/scale-to-width-down/310?cb=20131221191706"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Yang</h5>
<p class="card-text">
A Negashade slug who belongs to Shanai. She debuts in "The
Unbeatable Master" as one of Shanai's favourite Slugs. She is
mostly seen with Ping doing a fusion shot.
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://static.wikia.nocookie.net/slugterra/images/1/11/Opening_Fandango_CP.png/revision/latest?cb=20130224202221"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Fandango</h5>
<p class="card-text">
Fandangos are a support-class Slug.
They aren't heavy hitters or defenders and require strategy in order to stand a chance of being useful in any fight beyond a practice duel.
The Fandango's inability to directly attack or shield may put it, for some, on par with a Flopper in terms of usefulness.
</p>
<a
href="https://github.com/vedant-gawande"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vedant Gawande</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="images/beeker.png"
alt="Bulbasaur"
/>
<div class="card-body">
<h5 class="card-title">Beeker</h5>
<p class="card-text">
Beeker was used repeatedly in "Deep Water, Dark Water" due to
him being an amphibious Slug, therefore not needing a Torpedo
Shell to be fired successfully
</p>
<a
href="https://github.com/kobigan1223"
class="btn btn-outline-danger btn-sm"
>Contributed by - Kobigan</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/0/03/Flatulorhinkusmega-proto.png/revision/latest?cb=20160117211141"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Stinky</h5>
<p class="card-text">
A Flatulorhinkus Slug, originally the partner Slug of Pronto,
but now shared by the entire Shane Gang. He is still primarily
used by Pronto.
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Suds.png" alt="" />
<div class="card-body">
<h5 class="card-title">Suds</h5>
<p class="card-text">
Suds is a Bubbaleone Slug who belongs to Eli Shane. He has
been used multiple times to save Pronto and to defeat Captain
Malvolio Drake.
</p>
<a
href="https://github.com/DayaToledo"
class="btn btn-outline-danger btn-sm"
>Contributed by - DayaToledo</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/d/da/Juju_Protoform.png/revision/latest?cb=20141109021104"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Joo-Joo</h5>
<p class="card-text">
Joo-Joo is an Infurnus Slug introduced in the second season,
who belongs to Junjie the Eastern Champion and together they
protect The Eastern Caverns.
</p>
<a
href="https://github.com/dickaestu"
class="btn btn-outline-danger btn-sm"
>Contributed by - dickaestu</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://i.pinimg.com/564x/74/17/5e/74175ecc4efb253b31d718d387939c60.jpg"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Babosa Trilladora</h5>
<p class="card-text">
Geoshards are Slugs that attack through crystallization. They
are mainly yellow, with a light green back, covered in pastel
green crystals. Upon hitting 100 mph, it becomes a larger,
more vicious-looking version of itself. It's able to create a
projectile that crystallizes the target on contact.
</p>
<a
href="https://github.com/gaishhwarya"
class="btn btn-outline-danger btn-sm"
>Contributed by - Aishwarya Gupta</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="./images/Eli_Shane_in_Slugterra_Eastern_Caverns.png"
alt="Eli Shane"
/>
<div class="card-body">
<h5 class="card-title">Eli Shane</h5>
<p class="card-text">
Eli grew up on the surface, always hoping of the day his
father would take him down to Slugterra to become The Shane -
a slugslinging hero who protects this amazing underground
world from bad guys! When Will Shane goes missing, it's up to
Eli to make the drop down to Slugterra alone on his 15th
birthday, and learn how to become the greatest slugslinger of
all. Despite his young age, his natural ability means Eli is
the hottest new slugslinger in town.
</p>
<a
href="https://github.com/sharmavipul9756"
class="btn btn-outline-danger btn-sm"
>Contributed by - Vipul Sharma</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/c/cd/ST_SG_SLUGS_BlastipedeProto.png/revision/latest/scale-to-width-down/310?cb=20131221222125"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Blastipedo Proto</h5>
<p class="card-text">
Blastipede Slugs is an Uncommon Fire Element Slug. It was
first seen in Bandoleer of Brothers when Rookie joins Eli's
Slug Arsenal and learns he can shoot blue detonators that can
blow things up.
</p>
<a
href="https://github.com/gaishhwarya"
class="btn btn-outline-danger btn-sm"
>Contributed by - Aishwarya Gupta</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/5/50/Air_Elemental_Slug_Protoform.png/revision/latest/scale-to-width-down/310?cb=20160602020155"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Air Elemental</h5>
<p class="card-text">
The Air Elemental is a small grey slug with a heap of pointed
spikes on her head. Also on her head is one small silver
spike. She has flying membranes under her arms, giving her the
power of flying in protoform.
</p>
<a
href="https://github.com/gaishhwarya"
class="btn btn-outline-danger btn-sm"
>Contributed by - Aishwarya Gupta</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Yang.webp" alt="Yang" />
<div class="card-body">
<h5 class="card-title">Yang</h5>
<p class="card-text">
Yang is a Negashade Slug who belongs to Shanai. She debuts in
the episode "The Unbeatable Master" as one of Shanai's
favourite slugs.
</p>
<a
href="https://github.com/AbhishekSingh581"
class="btn btn-outline-danger btn-sm"
>Contributed by - AbhishekSingh581</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img
class="card-img-top"
src="https://vignette.wikia.nocookie.net/slugterra/images/7/77/Opening_Chiller.png/revision/latest/scale-to-width-down/310?cb=20121023205533"
alt=""
/>
<div class="card-body">
<h5 class="card-title">Chiller</h5>
<p class="card-text">
Found by Eli in "The Slugout". As a wild caught Slug, he is a
rookie and one of the more timid Slugs
</p>
<a
href="https://github.com/ani-coder-hacker"
class="btn btn-outline-danger btn-sm"
>Contributed by - Anirudh Prabhakaran</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img class="card-img-top" src="images/Joules.png" alt="Joules" />
<div class="card-body">
<h5 class="card-title">Joules</h5>
<p class="card-text">
Joules is the name of a Tazerling slug who used to belong to
Shockwire. Eli Shane won Joules from him after defeating him
in his first duel. He is a happy go lucky, excitable slug who
is almost always in a good mood.
</p>
<a
href="https://github.com/mraguso2"
class="btn btn-outline-danger btn-sm"
>Contributed by - mraguso2</a
>
</div>
</div>
</div>
<div class="col-lg-4 mb-4">
<div class="card">
<img