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

Added Club Nintendo Picross.

This commit is contained in:
magiczocker10 2024-07-20 19:26:39 +02:00
parent 60e33889d3
commit 2b0556eb0e
2 changed files with 33 additions and 1 deletions

View File

@ -65,6 +65,9 @@ SavegameEditor={
} else if (tempFile.fileSize==2328) { // Picross e7 - e9
version = 6;
return true;
} else if (tempFile.fileSize==988) { // Club Nintendo Picross
version = 7;
return true;
}
return false;
},
@ -154,7 +157,7 @@ SavegameEditor={
pl = get('puzzle-list');
pt = get('picross-template');
pl.innerHTML = '';
fetch('/savegame-editors/picross-ekombiniert/versions.json')
fetch('/savegame-editors/picross-e/versions.json')
.then(function(response) {
return response.json();
}).then(function(data) {

View File

@ -256,5 +256,34 @@
["S006 - S010 (PICROSS e2)", "0x914"],
["S011 - S015 (PICROSS e3)", "0x915"]
]
},
{
"bgm_effects": [
{"value":0, "name":"OFF"},
{"value":1, "name":"1"},
{"value":2, "name":"2"},
{"value":3, "name":"3"},
{"value":4, "name":"4"},
{"value":5, "name":"5"}
],
"controls": [
{"value":0, "name":"Stylus Controls"},
{"value":1, "name":"Button Controls"}
],
"modes":[
["E", "easy", "Easy Mode", 0, 11],
["N", "normal", "Normal Mode", 11, 41],
["F", "free", "Free Mode", 41, 71],
["X", "extra", "EXTRA", 71, 85],
["M", "micross", "Micross", 86, 88]
],
"settings_offset": {
"control_method": ["select", "Control Method", "controls", "0x160"],
"hint_number": ["checkbox", "Hint Number Auto-Check", "", "0x161"],
"hint_roulette": ["checkbox", "Hint Roulette", "", "0x162"],
"navigation": ["checkbox", "Navigation", "", "0x163"],
"bgm": ["select", "BGM", "bgm_effects", "0x166"],
"effects": ["select", "SE", "bgm_effects", "0x167"]
}
}
]