Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lodeRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<script type="text/javascript" src="lodeRunner.v.revenge.js"></script>
<script type="text/javascript" src="lodeRunner.v.fanBookMod.js"></script>
<script type="text/javascript" src="lodeRunner.v.championship.js"></script>
<script type="text/javascript" src="lodeRunner.v.stephen_linhart.js"></script>

<script type="text/javascript" src="lodeRunner.storage.js"></script>
<script type="text/javascript" src="lodeRunner.def.js"></script>
Expand All @@ -69,4 +70,4 @@
<canvas id="canvas" width="960" height="400"></canvas>
</div>
</body>
</html>
</html>
15 changes: 14 additions & 1 deletion lodeRunner.info.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,19 @@ var championInfo = [
{type: 'TEXT' , contain: "Difficulty : \u2605 \u2605 \u2605 \u2605 \u2605" } //★ ★ ★ ★ ★
];

var sneakyInfo = [
{type: 'TITLE', contain: " Stephen Linhart's Sneaky Levels " },
{type: 'TEXT' , contain: 'Release year : 1996'},
{type: 'TEXT' , contain: "Platform : Apple Macintosh"},
{type: 'TEXT' , contain: "Publisher : https://www.stephen.com/" },
{type: 'TEXT' , contain: 'Developer : Stephen Linhart and Doug Hewitt'},
{type: 'TEXT_LINK' , text: "URL : ",
textLink: "https://www.stephen.com/other/other.html",
url: "https://web.archive.org/web/19961121010816/https://www.stephen.com/other/other.html"
},
{type: 'TEXT' , contain: "Difficulty : \u2605 \u2605 \u2605 \u2605 \u2605" } //★ ★ ★ ★ ★
];

//=========================================================================================

var editInfo = [
Expand Down Expand Up @@ -489,4 +502,4 @@ function infoMenuClass(_stage, _scale)
//add setTimeout just don't cause mouse event (click) cascade!
if(callBackFun) setTimeout(function() { callBackFun(callBackArgs);}, 10);
}
}
}
3 changes: 2 additions & 1 deletion lodeRunner.menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -1555,7 +1555,8 @@ var playVersionInfo = [
{ id:3, verData: proData, name: gameVersionName[2], info: proInfo },
{ id:4, verData: revengeData, name: gameVersionName[3], info: revengeInfo },
{ id:5, verData: fanBookData, name: gameVersionName[4], info: fanBookInfo },
{ id:2, verData: championData, name: gameVersionName[1], info: championInfo }
{ id:2, verData: championData, name: gameVersionName[1], info: championInfo },
{ id:6, verData: sneakyData, name: gameVersionName[5], info: sneakyInfo }
];

var customItemInfo = { id:999, name:" Custom Levels " };
Expand Down
Loading