0
0
mirror of https://github.com/marcrobledo/savegame-editors.git synced 2025-04-24 16:35:10 +00:00

added kirbys blowout blast statue editor

This commit is contained in:
Marc Robledo 2017-07-11 22:39:21 +02:00
parent c409a89b7d
commit 359586e798
8 changed files with 109 additions and 2 deletions

View File

@ -96,10 +96,16 @@ h6 a:hover{
<a class="three columns game" href="pokemon-shuffle/"><img src="thumb.png" id="thumb-pokemon-shuffle" /><div>Pokémon Shuffle</div></a>
</div>
<div class="row">
<a class="four columns game" href="rhythm-paradise-megamix/"><img src="thumb.png" id="thumb-rhythm-paradise-megamix" /><div>Rhythm Paradise Megamix</div></a>
<a class="four columns game" href="kirbys-blowout-blast/"><img src="thumb.png" id="thumb-kirbys-blowout-blast" /><div>Kirby's Blowout Blast</div></a>
<a class="four columns game" href="picross-3d-round-2/"><img src="thumb.png" id="thumb-picross-3d-round-2" /><div>Picross 3D: Round 2</div></a>
<a class="four columns game" href="pokemon-picross/"><img src="thumb.png" id="thumb-pokemon-picross" /><div>Pokémon Picross</div></a>
<a class="four columns game" href="zelda-botw-master/"><img src="thumb.png" id="thumb-zelda-botw-master" /><div>The legend of Zelda: Breath of the wild (Master editor)</div></a>
</div>
<div class="row">
<a class="four columns game" href="rhythm-paradise-megamix/"><img src="thumb.png" id="thumb-rhythm-paradise-megamix" /><div>Rhythm Paradise Megamix</div></a>
<a class="four columns game" href="streetpass-mii-plaza/"><img src="thumb.png" id="thumb-streetpass-mii-plaza" /><div>StreetPass Mii Plaza</div></a>
<div class="four columns game"></div>
<div class="four columns game"></div>
</div>
<hr/>

Binary file not shown.

After

Width:  |  Height:  |  Size: 477 B

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html manifest="savegame-editor.appcache">
<head>
<title>Savegame Editor &ndash; Kirby's Blowout Blast</title>
<meta http-equiv="content-Type" content="text/html; charset=UTF-8"/>
<meta name="description" content="A savegame editor for Kirby's Blowout Blast. It can unlock all amiibo puzzles."/>
<meta name="keywords" content="html5, savegame, save, editor, hack, exploit, 3ds, kirbys, blowout, blast, kirby, unlock, amiibo, statues"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<link rel="shortcut icon" href="favicon.png"/>
<link type="text/css" rel="stylesheet" href="../savegame-editor.css" media="all"/>
<script type="text/javascript" src="../savegame-editor.js"></script>
<script type="text/javascript" src="./kirbys-blowout-blast.js"></script>
</head>
<body>
<!-- HEADER -->
<div id="header">
<div id="header-top">
<div class="row wrapper">
<h1 class="six columns text-left"><img src="favicon.png" /> Savegame Editor <small>for Kirby's Blowout Blast</small></h1>
<div class="six columns header-buttons text-right">
by <a href="/">Marc Robledo</a>
<i class="icon github"></i> <a href="https://github.com/marcrobledo/savegame-editors/tree/master/kirbys-blowout-blast" target="_blank">See on GitHub</a>
<i class="icon heart"></i> <a href="https://www.paypal.me/marcrobledo/5" target="_blank" rel="nofollow">Donate</a>
</div>
</div>
<div class="hidden row wrapper" id="toolbar">
<div class="twelve columns text-center">
<button class="close" onclick="closeFile()"><i class="icon close"></i> Close file</button>
<button class="colored" onclick="saveChanges()"><i class="icon accept"></i> Save changes</button>
</div>
</div>
</div>
</div>
<!-- THE EDITOR -->
<div id="the-editor" class="wrapper hidden">
<!-- AMIIBO -->
<h3 class="orange">Statues</h3>
<div class="container">
You have unlocked <span id="span-amiibocount"></span><small>/5</small> (Robobot+amiibo) statues.
<button onclick="SavegameEditor.unlockAmiiboPuzzles()">Unlock missing statues</button>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,40 @@
/*
Kirby's Blowout Blast for HTML5 Save Editor v20160704
by Marc Robledo 2016
*/
SavegameEditor={
Name:'Kirby\'s Blowout Blast',
Filename:'savedata.dat',
StatuesOffset:0x07,
unlockAmiiboPuzzles:function(){
for(var i=0; i<5; i++)
tempFile.writeByte(this.StatuesOffset+i*2, 0x01);
tempFile.writeByte(this.StatuesOffset+1, 0x01);
setValue('amiibocount', 5);
},
/* check if savegame is valid */
checkValidSavegame:function(){
return (tempFile.fileSize==1736)
},
/* load function */
load:function(){
tempFile.fileName='savedata.dat';
var unlockedStatues=0;
for(var i=0; i<5; i++){
if(tempFile.readByte(this.StatuesOffset+i*2))
unlockedStatues++;
}
setValue('amiibocount', unlockedStatues);
},
/* save function */
save:function(){
}
}

Binary file not shown.

View File

@ -0,0 +1,12 @@
CACHE MANIFEST
# last update 2017-07-11
#CACHE:
index.html
favicon.png
kirbys-blowout-blast.js
../savegame-editor.css
../savegame-editor.js
# force these files to be loaded in network
NETWORK:
*

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@ -1,5 +1,5 @@
CACHE MANIFEST
# last update 20170707
# last update 20170711
#CACHE:
index.html
thumb.png