-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·1818 lines (1784 loc) · 71.7 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>
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Official website for all Epsitec SA games"
/>
<meta
name="keywords"
content="Blupi, Blupimania, BuzzingCars, CeeBot, CoLoBoT, Eggbert, Planet Blupi, Speedy Blupi, Speedy Eggbert"
/>
<meta name="author" content="Mathieu Schroeter" />
<title>Blupi / Eggbert Games</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link href="cdn/ubuntu/fonts.css" rel="stylesheet" />
<link rel="stylesheet" href="cdn/fontawesome/css/all.css" />
<link rel="stylesheet" href="cdn/bootstrap/css/bootstrap.min.css" />
<script src="cdn/bootstrap/jquery.slim.min.js"></script>
<script src="cdn/bootstrap/js/bootstrap.bundle.min.js"></script>
<script>
$(function () {
$('[data-toggle="popover"]').popover({
trigger: "hover",
container: "body",
html: true,
});
$('[data-toggle="tooltip"]').tooltip({
container: "body",
html: true,
});
});
</script>
<style>
html {
scroll-behavior: smooth;
}
html,
body {
width: 100%;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin: 0;
font-family: "Ubuntu";
}
tt {
font-family: "Ubuntu Mono";
}
body {
background-color: #222;
backface-visibility: hidden;
}
a:hover {
text-decoration: none;
}
.popover {
max-width: 500px;
}
.popover p {
margin: 2px;
}
.popover img {
margin-bottom: 3px;
}
.tooltip p {
text-align: left;
margin: 5px;
}
.tooltip img {
margin-right: 3px;
margin-bottom: 3px;
}
.tooltip-inner {
max-width: 300px !important;
}
.content {
margin: 0 auto;
margin-top: 10vh;
width: 80vw;
max-width: 1600px;
border-radius: 5px;
padding-top: 15px;
padding-bottom: 10px;
box-shadow: inset 8px 8px 31px -18px rgba(0, 0, 0, 1);
background-color: rgba(80, 80, 80, 0.8);
backface-visibility: hidden;
}
.bottom {
transform: translateY(50px);
width: 80vw;
max-width: 1600px;
height: 0;
backface-visibility: hidden;
}
.card {
margin-top: 5px;
margin-bottom: 5px;
min-width: 22em;
border: none;
}
.card-img-top {
max-width: 19rem;
}
.blupi {
float: right;
position: relative;
top: -60px;
right: -20px;
}
.screen {
height: auto;
width: 100%;
max-width: 318px;
}
.imgbase {
max-width: 30em;
}
.imgbase:hover {
cursor: hand;
}
@keyframes highlight {
0% {
background: #eee;
}
100% {
background: #ddd;
}
}
.imgbase:hover {
animation: highlight 1s alternate-reverse infinite;
}
.imgbase:hover > .imgfooter {
animation: highlight 1s alternate-reverse infinite;
}
.imgfooter {
height: 200px;
z-index: 1;
background-color: #f7f7f7;
}
.imgos {
height: auto;
width: 100%;
margin: auto;
text-align: center;
}
.lang {
padding: 0;
padding-left: 5px;
padding-right: 5px;
min-width: 28px;
}
.lang-pl {
color: #ff92e4;
border-color: #ff92e4;
}
.lang-pl:hover {
border-color: #ff92e4;
background-color: #ff92e4;
}
.pop {
cursor: default;
color: #b4d3f3;
}
.card-video:hover > .video-player {
display: block;
}
.video-player {
display: none;
position: absolute;
left: 0;
width: 100%;
top: 100%;
z-index: 2;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
th {
vertical-align: text-top;
}
@media screen and (max-width: 800px) {
.content {
left: 0;
width: calc(100vw - (100vw - 100%));
}
.bottom {
width: calc(100vw - (100vw - 100%));
}
}
@media screen and (max-device-width: 650px) {
@media screen and (orientation: portrait) {
.content {
width: 50vw;
top: -50vh;
zoom: 2;
}
}
@media screen and (orientation: landscape) {
.content {
width: 66.6666vw;
top: -33.3333vh;
zoom: 1.5;
}
}
.content {
left: 0;
}
}
</style>
</head>
<body>
<div class="content">
<div class="container-fluid">
<h1 style="color: white">
Blupi Games <span style="font-size: 40%">(Eggbert Games)</span>
</h1>
<div class="card-group" style="cursor: pointer">
<div class="card-video card imgbase">
<a class="imgos" href="mania/index.html"
><img
class="card-img-top imgos"
style="transform: scale(1.6) translateY(-14px)"
src="images/mania.png"
alt="Card image cap" />
<video
class="video-player"
src="images/mania.mp4"
playsinline
muted
loop
></video
></a>
<div
class="card-footer imgfooter"
onclick="window.location = 'mania/index.html'"
>
<h2 class="card-title">Blupimania</h2>
<p>
Official version
<span style="font-size: 70%">(open-source)</span><br />Version
officielle <span style="font-size: 70%">(code libre)</span
><br />
<img style="margin-right: 3px" src="images/en.png" />
<img style="margin-right: 3px" src="images/fr.png" />
<img style="margin-right: 3px" src="images/de.png" />
</p>
</div>
</div>
<div class="card-video card imgbase">
<a class="imgos" href="planet/index.html"
><img
class="card-img-top imgos"
style="transform: scale(1.6) translateY(-25px)"
src="images/planet.png"
alt="Card image cap" />
<video
class="video-player"
src="images/planet.mp4"
playsinline
muted
loop
></video
></a>
<div
class="card-footer imgfooter"
onclick="window.location = 'planet/index.html'"
>
<h2 class="card-title">
Planet Blupi
<span style="font-size: 40%">(Planet Eggbert)</span>
</h2>
<p>
Official version
<span style="font-size: 70%">(open-source)</span><br />Version
officielle <span style="font-size: 70%">(code libre)</span
><br />
<img style="margin-right: 3px" src="images/en.png" />
<img style="margin-right: 3px" src="images/en_US.png" />
<img style="margin-right: 3px" src="images/fr.png" />
<img style="margin-right: 3px" src="images/de.png" />
<img style="margin-right: 3px" src="images/it.png" />
<img style="margin-right: 3px" src="images/pl.png" />
<img style="margin-right: 3px" src="images/tr.png" />
<img style="margin-right: 3px" src="images/pt.png" />
<img style="margin-right: 3px" src="images/he.png" />
<img style="margin-right: 3px" src="images/ar.png" />
<img style="margin-right: 3px" src="images/es.png" />
</p>
</div>
</div>
<div class="card-video card imgbase">
<a
class="imgos"
href="https://www.maniabricks.com/games/blupi-is-back/"
target="_"
><img /><img
class="card-img-top imgos"
style="transform: scale(1.2) translateY(17px)"
src="images/blupi-is-back.png"
alt="Card image cap" />
<video
class="video-player"
src="images/blupi-is-back.mp4"
playsinline
muted
loop
></video
></a>
<div
class="card-footer imgfooter"
onclick="window.location = 'https://www.maniabricks.com/games/blupi-is-back/'"
>
<h2 class="card-title">Blupi is Back</h2>
<p>
New game by Daniel Roux
<br />
Nouveau jeu par Daniel Roux<br />
<img style="margin-right: 3px" src="images/en.png" />
<img style="margin-right: 3px" src="images/fr.png" />
</p>
</div>
</div>
<div class="card-video card imgbase">
<a class="imgos" href="https://colobot.info" target="_"
><img
class="card-img-top imgos"
src="images/colobot.png"
alt="Card image cap" />
<video
class="video-player"
src="images/bot.mp4"
playsinline
muted
loop
></video
></a>
<div
class="card-footer imgfooter"
onclick="window.open ('https://colobot.info', '_blank');"
>
<h2 class="card-title">CoLoBoT</h2>
<p>
Official version by TerranovaTeam
<span style="font-size: 70%">(open-source)</span><br />Version
officielle par TerranovaTeam
<span style="font-size: 70%">(code libre)</span><br />
<img style="margin-right: 3px" src="images/en.png" />
<img style="margin-right: 3px" src="images/fr.png" />
<img style="margin-right: 3px" src="images/de.png" />
<img style="margin-right: 3px" src="images/pl.png" />
<img style="margin-right: 3px" src="images/ru.png" />
<img style="margin-right: 3px" src="images/cs.png" />
<img style="margin-right: 3px" src="images/pt.png" />
</p>
</div>
</div>
</div>
<div class="card-group">
<div class="card" style="max-width: 180px; min-width: 180px">
<img
class="card-img-top screen"
src="images/smaky.png"
alt="Smaky"
/>
</div>
<div class="card">
<div class="card-body">
<h2 class="card-title">
<img style="margin-right: 6px" src="images/en.png" />About
</h2>
<p>Official website for all Epsitec SA games.</p>
<p>
<b>Is it really free?</b><br />
Yes, all games can be downloaded freely. It's official and
legal. With some games, the source-code is available, see this
<a
href="https://github.com/colobot/colobot/issues/896"
target="_"
>thread</a
>.
</p>
<p>
This website provides an archives section (<u
>at the bottom of this page</u
>) with mostly all the games. But you should download in
priority the releases provided by this website on
<b>top of this page</b> instead of the
<em>archives</em> section. The CoLoBoT game is actively
developed by the
<a href="https://colobot.info/terranovateam/" target="_"
>TerranovaTeam</a
>. It's no longer maintained by Epsitec SA since 2014. Note that
this team owns the main repositories for the Buzzing Cars and
Blupimania 2 source-codes too. No release are available for
these games, then it makes sense to continue to download the
archives in this case.
</p>
<p>
About Blupimania and Planet Blupi, it's a bit different. The
official repositories are not really maintained by Epsitec SA,
but just by one employee which is working on the games as
hobbyist. Nothing new about the game is done under the Epsitec
SA name.
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h2 class="card-title">
<img style="margin-right: 6px" src="images/fr.png" />A propos
</h2>
<p>Site internet officiel pour tous les jeux Epsitec SA.</p>
<p>
<b>Est-ce vraiment gratuit ?</b><br />
Oui, tous les jeux peuvent être téléchargés librement. C'est
officiel et légal. Le code-source est également disponible avec
quelques jeux, voir cette
<a
href="https://github.com/colobot/colobot/issues/896"
target="_"
>discussion</a
>.
</p>
<p>
Ce site internet met à disposition une section d'archives (<u
>tout en bas de cette page</u
>) avec pratiquement tous les jeux. Mais vous devriez
télécharger en priorité les versions proposées
<b>au sommet de cette page</b>, au lieu de les prendre dans la
section des <em>archives</em>. Le jeu CoLoBoT est activement
développé par
<a href="https://colobot.info/terranovateam/" target="_"
>TerranovaTeam</a
>. Ce jeu n'est plus maintenu par Epsitec SA depuis 2014. Notez
aussi que cette équipe possède les dépôts de code-source
principaux des jeux Buzzing Cars et Blupimania 2. Aucune
publication n'est disponible pour ces deux jeux, alors dans ce
cas il est tout à fait sensé de continuer à les télécharger
depuis les archives.
</p>
<p>
Concernant Blupimania et Planète Blupi, c'est un petit peu
différent. Les dépôts de code-source officiels ne sont pas
vraiment sous la responsabilité d'Epsitec SA, mais uniquement à
la charge d'un employé de l'entreprise qui travail sur ces jeux
comme passionné (hobbyiste). Rien de nouveau n'est réalisé pour
des jeux au nom d'Epsitec SA.
</p>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<div class="card-body">
<div class="card-block">
<p>
<img style="margin-right: 6px" src="images/en.png" />
Feel free to donate something if you want. The money will be
used for paying the hosting, domains and the certificates for
example. It's not intended to be used for stuff unrelated to
the Blupi games. (For CoLoBoT, Buzzing Cars and Blupimania 2,
please look at
<a href="https://colobot.info" target="_">colobot.info</a>)
</p>
<form
action="http://www.paypal.com/cgi-bin/webscr"
method="post"
target="_top"
>
<input type="hidden" name="cmd" value="_s-xclick" />
<input
type="hidden"
name="hosted_button_id"
value="G36RBNW7TV8R4"
/>
<input
type="image"
src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
border="0"
name="submit"
alt="PayPal - The safer, easier way to pay online!"
/>
</form>
<p>
Epsitec SA remains the owner of <em>Colobot</em>,
<em>CeeBot</em>, <em>BuzzingCars</em> and
<em>Blupi</em> names. Daniel Roux is the father of Blupi and
all games.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<div class="card-block">
<p>
<img style="margin-right: 6px" src="images/fr.png" />
Libre à vous de donner quelques sous si vous le souhaitez.
L'argent sera utilisé, par exemple, pour financer
l'hébergement, les noms de domaines et les certificats. Cet
argent n'est en aucun cas utilisé pour autre chose que ce qui
concerne les jeux Blupi. (Concernant CoLoBoT, Buzzing Cars et
Blupimania 2, je vous invite à vous référer à
<a href="https://colobot.info" target="_">colobot.info</a>)
</p>
<form
action="http://www.paypal.com/cgi-bin/webscr"
method="post"
target="_top"
>
<input type="hidden" name="cmd" value="_s-xclick" />
<input
type="hidden"
name="hosted_button_id"
value="G36RBNW7TV8R4"
/>
<input
type="image"
src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif"
border="0"
name="submit"
alt="PayPal - The safer, easier way to pay online!"
/>
</form>
<p>
Epsitec SA reste le propriétaire des noms <em>Colobot</em>,
<em>CeeBot</em>, <em>BuzzingCars</em> et <em>Blupi</em>.
Daniel Roux est le père de Blupi et de tous les jeux.
</p>
</div>
</div>
</div>
<div class="card" style="min-width: 200px; max-width: 200px">
<div class="card-body">
<div class="card-block">
<div class="card-group">
<div class="btn-group-vertical" role="group" aria-label="">
<a href="https://github.com/blupi-games" target="_">
<button
type="button"
class="btn btn-secondary"
style="width: 150px; margin-bottom: 5px"
>
<i class="fab fa-github" aria-hidden="true"></i> GitHub
</button>
</a>
<a rel="me" href="https://tooting.ch/@BlupiGames" target="_"
><button
type="button"
class="btn btn-secondary"
style="width: 150px; margin-bottom: 5px"
>
<i class="fab fa-mastodon" aria-hidden="true"></i>
Mastodon
</button></a
>
<a href="https://www.facebook.com/BlupiGames" target="_">
<button
type="button"
class="btn btn-secondary"
style="width: 150px; margin-bottom: 5px"
>
<i class="fab fa-facebook" aria-hidden="true"></i>
Facebook
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card-group">
<div class="card">
<div class="card-body">
<h3 class="card-title">Some links / Quelques liens</h3>
<span>
<table
class="table table-sm"
style="width: 100%; margin-left: 3px"
>
<tr>
<th scope="row" style="width: 180px">
<a target="_" href="https://www.maniabricks.com/"
>ManiaBricks</a
>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
personal website of Daniel Roux<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Le site internet personnel de Daniel Roux
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a target="_" href="http://www.ceebot.com/">CeeBot</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
legacy website for the Epsitec SA Games<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>L'ancien site internet dédié au jeux d'Epsitec SA
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a target="_" href="https://fr.wikipedia.org/wiki/Blupi"
>Blupi</a
>
/
<a
target="_"
href="https://fr.wikipedia.org/wiki/Plan%C3%A8te_Blupi"
>Planet Blupi</a
>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
dedicated, french, Wikipedia pages for Blupi and Planet
Blupi<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Les pages francophones de Wikipedia, dédiées à Blupi et
Planète Blupi
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a
target="_"
href="https://en.wikipedia.org/wiki/Speedy_Eggbert"
>Speedy Eggbert</a
>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
dedicated Wikipedia page for Speedy Eggbert<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>La page anglophone de Wikipedia, dédiée à Speedy Blupi
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a
target="_"
href="https://smaky.ch/le-smaky-infini-libre/"
>Smaky Infini
</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
Smaky emulator that you can use to play the first Blupi
games (and a lot more)<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>L'émulateur Smaky que vous pouvez utiliser pour jouer au
premiers jeux Blupi (et beaucoup plus encore)
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a target="_" href="https://www.museebolo.ch/">Bolo FR</a>
/ <a target="_" href="https://www.museebolo.ch/en/">EN</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />The
Bolo Museum website with a lot of articles about Blupi,
Daniel and the Smaky journey.<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Le site internet du Musée Bolo avec une multitude
d'articles à propos de Blupi, Daniel et de l'aventure
Smaky.
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a
target="_"
href="https://www.youtube.com/watch?v=iea_6DIFCmY"
>UNIL <span style="font-size: 75%">(2019.09.26)</span>
</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />A
French video on the Blupi history with its author (Daniel
Roux)<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Une vidéo retracant l'histoire de Blupi avec son auteur
(Daniel Roux)
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a
target="_"
href="https://www.youtube.com/watch?v=cGvz1nk7iZ4"
>UNIL <span style="font-size: 75%">(2024.03.20)</span>
</a>
</th>
<td>
<img
style="margin-right: 6px"
src="images/en.png"
/>Conference (French only) dedicated to the restoration of
Blupimania<br />
<img
style="margin-right: 6px"
src="images/fr.png"
/>Conférence consacrée à la restauration de Blupimania
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a target="_" href="https://blupi.fandom.com"
>Blupi Fandom
</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />Wiki
for the Blupi univers, maintained by fans<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Wiki de l'univers Blupi, maintenu par les fans
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
TV Tropes
<a
target="_"
href="https://tvtropes.org/pmwiki/pmwiki.php/VideoGame/SpeedyEggbert"
>[1]
</a>
/
<a
target="_"
href="https://tvtropes.org/pmwiki/pmwiki.php/VideoGame/PlanetBlupi"
>[2]
</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />About
Speedy Eggbert [1] and Planet Blupi [2]<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>A propos de Speedy Eggbert [1] et Planète Blupi [2]
</td>
</tr>
<tr>
<th scope="row" style="width: 180px">
<a
target="_"
href="https://www.playdosgames.com/publisher/epsitec/"
>PlayDOSGames
</a>
</th>
<td>
<img style="margin-right: 6px" src="images/en.png" />Here
you can play Blupi Explorer, Blupi at Home and Blupimania
online (MS-DOS versions of the Smaky Blupi games)<br /><img
style="margin-right: 6px"
src="images/fr.png"
/>Ici vous pouvez jouer en ligne à Blupi Explorateur,
Blupi à la maison et Blupimania (versions MS-DOS des jeux
Blupi du Smaky)
</td>
</tr>
</table>
</span>
</div>
</div>
</div>
</div>
<div class="bottom">
<div class="container-fluid">
<div>
<h2 style="color: white">Archives</h2>
<div class="card-group">
<div class="card" style="background-color: transparent">
<div class="card-body">
<p style="color: #ddd">
<img style="margin-right: 6px" src="images/en.png" /> In
this section you will find the ISO images and the manuals of
most Epsitec SA games (last Epsitec SA releases). If
possible,
<b>prefer the new releases at the top of this page</b>.
<em
>Please, don't report bugs for archived games because it's
no longer maintained!</em
>
</p>
<p style="color: #ddd">
All images are compressed with 7zip; look at
<a href="http://www.7-zip.org/" target="_">www.7-zip.org</a
>.
</p>
<p style="color: #ddd">
With all DOS games, choose the <b>Sound Blaster</b> as sound
card when playing with DOSBox.
</p>
</div>
</div>
<div class="card" style="background-color: transparent">
<div class="card-body">
<p style="color: #ddd">
<img style="margin-right: 6px" src="images/fr.png" />
Dans cette section vous trouverez les images ISO et les
manuels de la plupart des jeux d'Epsitec SA (les dernières
versions publiées). Si possible,
<b
>préférez les nouvelles publications au sommet de cette
page</b
>.
<em
>S'il vous plaît, ne rapportez aucun défaut pour les jeux
archivés parce qu'ils ne sont plus maintenus.</em
>
</p>
<p style="color: #ddd">
Toutes les images sont comprimées avec 7zip; voir
<a href="http://www.7-zip.org/" target="_">www.7-zip.org</a
>.
</p>
<p style="color: #ddd">
Concernant les jeux DOS, choisissez la carte son
<b>Sound Blaster</b> quand vous désirez y jouer avec DOSBox.
</p>
</div>
</div>
</div>
<table
class="table table-striped table-dark"
style="width: 100%; margin-left: 3px"
>
<thead>
<tr>
<th>Game / Jeu</th>
<th>Version</th>
<th>OS</th>
<th>
<i class="fa fa-download" aria-hidden="true"></i> Image
<small>(7z)</small>
</th>
<th>Type</th>
<th>
Music / Musique <small>(7z)</small>
<i class="fa fa-download" aria-hidden="true"></i>
</th>
<th>
Manual / Manuel <small>(PDF)</small>
<i class="fa fa-download" aria-hidden="true"></i>
</th>
</tr>
</thead>
<tbody>
<tr>
<td scope="row">
<span
class="pop"
data-toggle="popover"
data-content="<img width='200' height='200' src='images/home.cover.jpg'>"
>Blupi at Home<br />Blupi à la maison</span
>
</td>
<td>v2.0 <small>(1999)</small></td>
<td>Win</td>
<td>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-info btn-sm lang"
role="button"
>en</a
>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-success btn-sm lang"
role="button"
>fr</a
>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-secondary btn-sm lang"
role="button"
>de</a
>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-primary btn-sm lang"
role="button"
>it</a
>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-danger btn-sm lang"
role="button"
>es</a
>
<a
href="download/img/BlupiAtHome-en.fr.de.it.es.pt.iso.7z"
class="btn btn-outline-light btn-sm lang"
role="button"
>pt</a
>
</td>
<td>CD</td>
<td></td>
<td></td>
</tr>
<tr>
<td scope="row">
<span
class="pop"
data-toggle="popover"
data-content="<img width='300' height='179' src='images/homelegacy.cover.jpg'>"
data-toggle="tooltip"
title="<p><img src='images/en.png' /> Official DOS clone of the original Smaky version.</p><p><img src='images/fr.png' /> Clone DOS officiel de la version Smaky.</p>"
>Blupi at Home <small>(legacy)</small><br />Blupi à la
maison <small>(ancien)</small></span
>
</td>
<td>v1.0 <small>(1993)</small></td>
<td>DOS</td>
<td>
<a
href="download/img/BlupiAtHome-Legacy-en.fr.de.iso.7z"
class="btn btn-outline-info btn-sm lang"
role="button"
data-toggle="tooltip"
title="<p><img src='images/en.png' /> The game is supported by <em>DOSBox</em>.</p><p><img src='images/fr.png' /> Jeu supporté par <em>DOSBox</em>.</p>"
>en</a
>
<a
href="download/img/BlupiAtHome-Legacy-en.fr.de.iso.7z"
class="btn btn-outline-success btn-sm lang"
role="button"
data-toggle="tooltip"
title="<p><img src='images/en.png' /> The game is supported by <em>DOSBox</em>.</p><p><img src='images/fr.png' /> Jeu supporté par <em>DOSBox</em>.</p>"
>fr</a
>
<a
href="download/img/BlupiAtHome-Legacy-en.fr.de.iso.7z"
class="btn btn-outline-secondary btn-sm lang"
role="button"
data-toggle="tooltip"
title="<p><img src='images/en.png' /> The game is supported by <em>DOSBox</em>.</p><p><img src='images/fr.png' /> Jeu supporté par <em>DOSBox</em>.</p>"
>de</a
>
</td>
<td>CD</td>
<td></td>
<td>
<a
href="download/man/BlupiAtHome-Legacy-en.pdf"
class="btn btn-outline-info btn-sm lang"
role="button"
>en</a
>
<a
href="download/man/BlupiAtHome-Legacy-fr.pdf"
class="btn btn-outline-success btn-sm lang"
role="button"