more games
4
burritobison/Build/UnityLoader.js
Normal file
BIN
burritobison/Build/Web.asm.code.unityweb
Normal file
BIN
burritobison/Build/Web.asm.framework.unityweb
Normal file
10
burritobison/Build/Web.asm.framework.unityweb.js
Normal file
BIN
burritobison/Build/Web.asm.memory.unityweb
Normal file
BIN
burritobison/Build/Web.data.unityweb
Normal file
13
burritobison/Build/Web.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"companyName": "Juicy Beast Studio",
|
||||||
|
"productName": "Burrito Bison",
|
||||||
|
"dataUrl": "Web.data.unityweb",
|
||||||
|
"asmCodeUrl": "Web.asm.code.unityweb",
|
||||||
|
"asmMemoryUrl": "Web.asm.memory.unityweb",
|
||||||
|
"asmFrameworkUrl": "Web.asm.framework.unityweb.js",
|
||||||
|
"TOTAL_MEMORY": 536870912,
|
||||||
|
"graphicsAPI": ["WebGL 2.0", "WebGL 1.0"],
|
||||||
|
"webglContextAttributes": {"preserveDrawingBuffer": false},
|
||||||
|
"splashScreenStyle": "Dark",
|
||||||
|
"backgroundColor": "#000000"
|
||||||
|
}
|
2381
burritobison/Build/kongregate_api.js
Normal file
BIN
burritobison/Build/logo.png
Normal file
After Width: | Height: | Size: 53 KiB |
121
burritobison/index.html
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-us">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Burrito Bison Launcha Libre Unblocked</title>
|
||||||
|
<style>
|
||||||
|
html {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
*, *:before, *:after {
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background: #000000;
|
||||||
|
}
|
||||||
|
#gameContainer {
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
canvas {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
display: block;
|
||||||
|
width: 100vw;
|
||||||
|
height: 70vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress {
|
||||||
|
margin: 1.5em;
|
||||||
|
border: 1px solid white;
|
||||||
|
width: 50vw;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.progress .full {
|
||||||
|
margin: 2px;
|
||||||
|
background: white;
|
||||||
|
height: 1em;
|
||||||
|
transform-origin: top left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loader {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.spinner,
|
||||||
|
.spinner:after {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 5em;
|
||||||
|
height: 5em;
|
||||||
|
}
|
||||||
|
.spinner {
|
||||||
|
margin: 10px;
|
||||||
|
font-size: 10px;
|
||||||
|
position: relative;
|
||||||
|
text-indent: -9999em;
|
||||||
|
border-top: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
|
border-right: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
|
border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
|
||||||
|
border-left: 1.1em solid #ffffff;
|
||||||
|
transform: translateZ(0);
|
||||||
|
animation: spinner-spin 1.1s infinite linear;
|
||||||
|
}
|
||||||
|
@keyframes spinner-spin {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="gameContainer"></div>
|
||||||
|
<div id="loader">
|
||||||
|
<img class="logo" src="Build/logo.png">
|
||||||
|
<div class="spinner"></div>
|
||||||
|
<div class="progress"><div class="full"></div></div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<script src="js/unity-mod.js"></script>
|
||||||
|
<script src="Build/UnityLoader.js"></script>
|
||||||
|
<script src='Build/kongregate_api.js'></script>
|
||||||
|
<script>
|
||||||
|
var gameInstance = UnityLoader.instantiate("gameContainer", "Build/Web.json", {onProgress: UnityProgress});
|
||||||
|
function UnityProgress(gameInstance, progress) {
|
||||||
|
if (!gameInstance.Module) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const loader = document.querySelector("#loader");
|
||||||
|
if (!gameInstance.progress) {
|
||||||
|
const progress = document.querySelector("#loader .progress");
|
||||||
|
progress.style.display = "block";
|
||||||
|
gameInstance.progress = progress.querySelector(".full");
|
||||||
|
loader.querySelector(".spinner").style.display = "none";
|
||||||
|
}
|
||||||
|
gameInstance.progress.style.transform = `scaleX(${progress})`;
|
||||||
|
if (progress === 1 && !gameInstance.removeTimeout) {
|
||||||
|
loader.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script src="js/analytics_ubg_v1_4.js"></script>
|
||||||
|
</html>
|
24
burritobison/js/analytics_ubg_v1_4.js
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
function loadGoogleAnalytics(id) {
|
||||||
|
// Google tag (gtag.js)
|
||||||
|
var firstScript= document.getElementsByTagName("script")[0];
|
||||||
|
newScript= document.createElement("script");
|
||||||
|
newScript.async= "";
|
||||||
|
newScript.src= "https://www.googletagmanager.com/gtag/js?id="+ id;
|
||||||
|
firstScript.parentNode.insertBefore(newScript, firstScript);
|
||||||
|
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
function gtag(){dataLayer.push(arguments);}
|
||||||
|
gtag('js', new Date());
|
||||||
|
gtag('config', id);
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener("load", function() {
|
||||||
|
if (navigator.webdriver) {
|
||||||
|
console.log('Bot Browser');
|
||||||
|
loadGoogleAnalytics("G-LE1ZGTPC77");
|
||||||
|
|
||||||
|
} else {
|
||||||
|
console.log('Human Browser');
|
||||||
|
loadGoogleAnalytics("G-E7D3EVY6HR");
|
||||||
|
}
|
||||||
|
});
|
1
burritobison/js/null.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
// NullJS
|
7
burritobison/js/unity-mod.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
function UnityUrlFix(url) {
|
||||||
|
console.log("--fx--UnityUrlFix--", url);
|
||||||
|
if(url.indexOf("unity3d.com")>0 || url.indexOf("appspot.com")>0){
|
||||||
|
url= "json/null.json?"+ url;
|
||||||
|
}
|
||||||
|
return url;
|
||||||
|
}
|
1
burritobison/json/null.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
33
clickerheroes/404.html
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>Page Not Found</title>
|
||||||
|
|
||||||
|
<style media="screen">
|
||||||
|
body { background: #ECEFF1; color: rgba(0,0,0,0.87); font-family: Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; }
|
||||||
|
#message { background: white; max-width: 360px; margin: 100px auto 16px; padding: 32px 24px 16px; border-radius: 3px; }
|
||||||
|
#message h3 { color: #888; font-weight: normal; font-size: 16px; margin: 16px 0 12px; }
|
||||||
|
#message h2 { color: #ffa100; font-weight: bold; font-size: 16px; margin: 0 0 8px; }
|
||||||
|
#message h1 { font-size: 22px; font-weight: 300; color: rgba(0,0,0,0.6); margin: 0 0 16px;}
|
||||||
|
#message p { line-height: 140%; margin: 16px 0 24px; font-size: 14px; }
|
||||||
|
#message a { display: block; text-align: center; background: #039be5; text-transform: uppercase; text-decoration: none; color: white; padding: 16px; border-radius: 4px; }
|
||||||
|
#message, #message a { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); }
|
||||||
|
#load { color: rgba(0,0,0,0.4); text-align: center; font-size: 13px; }
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
body, #message { margin-top: 0; background: white; box-shadow: none; }
|
||||||
|
body { border-top: 16px solid #ffa100; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="message">
|
||||||
|
<h2>404</h2>
|
||||||
|
<h1>Page Not Found</h1>
|
||||||
|
<p>The specified file was not found on this website. Please check the URL for mistakes and try again.</p>
|
||||||
|
<h3>Why am I seeing this?</h3>
|
||||||
|
<p>This page was generated by the Firebase Command-Line Interface. To modify it, edit the <code>404.html</code> file in your project's configured <code>public</code> directory.</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
10
clickerheroes/appmanifest.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"name": "HeroClicker",
|
||||||
|
"short_name": "HeroClicker",
|
||||||
|
"description": "Hero Clicker-Frank",
|
||||||
|
"start_url": "index.html",
|
||||||
|
"display": "fullscreen",
|
||||||
|
"orientation": "landscape",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"icons": []
|
||||||
|
}
|
BIN
clickerheroes/clicker-heroes.png
Normal file
After Width: | Height: | Size: 138 KiB |
1
clickerheroes/data.json
Normal file
BIN
clickerheroes/favicon.ico
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
clickerheroes/icons/icon-512.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
clickerheroes/images/achivement_icon-sheet0.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
clickerheroes/images/coindrop-sheet0.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
clickerheroes/images/critical_click-sheet0.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
clickerheroes/images/gridviewmap-sheet0.png
Normal file
After Width: | Height: | Size: 76 B |
BIN
clickerheroes/images/gridviewshop-sheet0.png
Normal file
After Width: | Height: | Size: 85 B |
BIN
clickerheroes/images/hero-sheet0.png
Normal file
After Width: | Height: | Size: 189 KiB |
BIN
clickerheroes/images/mapbg-sheet0.png
Normal file
After Width: | Height: | Size: 559 KiB |
BIN
clickerheroes/images/mapbg-sheet1.png
Normal file
After Width: | Height: | Size: 449 KiB |
BIN
clickerheroes/images/mapbg-sheet2.png
Normal file
After Width: | Height: | Size: 344 KiB |
BIN
clickerheroes/images/mapbg-sheet3.png
Normal file
After Width: | Height: | Size: 415 KiB |
BIN
clickerheroes/images/mapbg-sheet4.png
Normal file
After Width: | Height: | Size: 306 KiB |
BIN
clickerheroes/images/mapbg-sheet5.png
Normal file
After Width: | Height: | Size: 207 KiB |
BIN
clickerheroes/images/mapbg-sheet6.png
Normal file
After Width: | Height: | Size: 352 KiB |
BIN
clickerheroes/images/mapbg-sheet7.png
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
clickerheroes/images/mapbg-sheet8.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
clickerheroes/images/mapbg-sheet9.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
clickerheroes/images/mapmini_bg-sheet0.png
Normal file
After Width: | Height: | Size: 102 KiB |
BIN
clickerheroes/images/monster1-sheet0.png
Normal file
After Width: | Height: | Size: 91 KiB |
BIN
clickerheroes/images/monster10-sheet0.png
Normal file
After Width: | Height: | Size: 146 KiB |
BIN
clickerheroes/images/monster11-sheet0.png
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
clickerheroes/images/monster11-sheet1.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
clickerheroes/images/monster12-sheet0.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
clickerheroes/images/monster12-sheet1.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
clickerheroes/images/monster12-sheet2.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
clickerheroes/images/monster13-sheet0.png
Normal file
After Width: | Height: | Size: 150 KiB |
BIN
clickerheroes/images/monster14-sheet0.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
clickerheroes/images/monster14-sheet1.png
Normal file
After Width: | Height: | Size: 93 KiB |
BIN
clickerheroes/images/monster14-sheet2.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
clickerheroes/images/monster15-sheet0.png
Normal file
After Width: | Height: | Size: 491 KiB |
BIN
clickerheroes/images/monster16-sheet0.png
Normal file
After Width: | Height: | Size: 147 KiB |
BIN
clickerheroes/images/monster16-sheet1.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
clickerheroes/images/monster18-sheet0.png
Normal file
After Width: | Height: | Size: 197 KiB |
BIN
clickerheroes/images/monster2-sheet0.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
clickerheroes/images/monster20-sheet0.png
Normal file
After Width: | Height: | Size: 326 KiB |
BIN
clickerheroes/images/monster20-sheet1.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
clickerheroes/images/monster20-sheet2.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
clickerheroes/images/monster20-sheet3.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
clickerheroes/images/monster21-sheet0.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
clickerheroes/images/monster22-sheet0.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
clickerheroes/images/monster22-sheet1.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
clickerheroes/images/monster23-sheet0.png
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
clickerheroes/images/monster23-sheet1.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
clickerheroes/images/monster23-sheet2.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
clickerheroes/images/monster24-sheet0.png
Normal file
After Width: | Height: | Size: 159 KiB |
BIN
clickerheroes/images/monster26-sheet0.png
Normal file
After Width: | Height: | Size: 139 KiB |
BIN
clickerheroes/images/monster27-sheet0.png
Normal file
After Width: | Height: | Size: 137 KiB |
BIN
clickerheroes/images/monster28-sheet0.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
clickerheroes/images/monster28-sheet1.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
clickerheroes/images/monster28-sheet2.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
clickerheroes/images/monster29-sheet0.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
clickerheroes/images/monster29-sheet1.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
clickerheroes/images/monster29-sheet2.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
clickerheroes/images/monster3-sheet0.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
clickerheroes/images/monster3-sheet1.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
clickerheroes/images/monster3-sheet2.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
clickerheroes/images/monster30-sheet0.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
clickerheroes/images/monster31-sheet0.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
clickerheroes/images/monster31-sheet1.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
clickerheroes/images/monster32-sheet0.png
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
clickerheroes/images/monster33-sheet0.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
clickerheroes/images/monster34-sheet0.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
clickerheroes/images/monster35-sheet0.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
clickerheroes/images/monster35-sheet1.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
clickerheroes/images/monster35-sheet2.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
clickerheroes/images/monster35-sheet3.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
clickerheroes/images/monster36-sheet0.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
clickerheroes/images/monster37-sheet0.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
clickerheroes/images/monster37-sheet1.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
clickerheroes/images/monster37-sheet2.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
clickerheroes/images/monster38-sheet0.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
clickerheroes/images/monster39-sheet0.png
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
clickerheroes/images/monster4-sheet0.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
clickerheroes/images/monster40-sheet0.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
clickerheroes/images/monster41-sheet0.png
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
clickerheroes/images/monster41-sheet1.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
clickerheroes/images/monster41-sheet2.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
clickerheroes/images/monster42-sheet0.png
Normal file
After Width: | Height: | Size: 53 KiB |
BIN
clickerheroes/images/monster42-sheet1.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
clickerheroes/images/monster43-sheet0.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
clickerheroes/images/monster43-sheet1.png
Normal file
After Width: | Height: | Size: 19 KiB |