You've already forked FullScreenPokemon
mirror of
https://github.com/FullScreenShenanigans/FullScreenPokemon.git
synced 2026-04-28 12:58:40 -07:00
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
(function (things, macros) {
|
|
FullScreenPokemon.FullScreenPokemon.settings.editor = {
|
|
"blocksize": FullScreenPokemon.FullScreenPokemon.unitsize * 4,
|
|
"mapDefault": {
|
|
"name": "New Map",
|
|
"locations": {
|
|
"StartGame": {}
|
|
},
|
|
"areas": [
|
|
{
|
|
"setting": "Overworld",
|
|
"creation": [
|
|
{ "location": "0" },
|
|
{ "macro": "Floor", "x": 0, "y": 0, "width": 128 }
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"mapSettingDefault": "Overworld",
|
|
"things": things,
|
|
"thingGroups": ["Character", "Solid", "Scenery"],
|
|
"thingKeys": (function () {
|
|
var keys = [];
|
|
Object.keys(things).forEach(function (group) {
|
|
keys.push.apply(keys, Object.keys(things[group]));
|
|
});
|
|
return keys;
|
|
})(),
|
|
"macros": macros
|
|
};
|
|
|
|
})({
|
|
"Characters": {},
|
|
"Solids": {},
|
|
"Scenery": {},
|
|
"Terrain": {}
|
|
}, {
|
|
|
|
}); |