Files

48 lines
1.3 KiB
JavaScript
Raw Permalink Normal View History

2015-11-27 21:12:58 -08:00
(function (prethings, macros) {
2015-07-07 06:42:40 -07:00
FullScreenPokemon.FullScreenPokemon.settings.editor = {
"blocksize": FullScreenPokemon.FullScreenPokemon.unitsize * 4,
2015-01-01 20:06:27 -05:00
"mapDefault": {
"name": "New Map",
"locations": {
"StartGame": {}
},
"areas": [
{
"setting": "Overworld",
"creation": [
{ "location": "0" },
{ "macro": "Floor", "x": 0, "y": 0, "width": 128 }
]
}
]
},
"mapSettingDefault": "Overworld",
2015-11-27 21:12:58 -08:00
"prethings": prethings,
2015-01-01 20:06:27 -05:00
"thingGroups": ["Character", "Solid", "Scenery"],
2015-11-27 21:12:58 -08:00
"things": (function () {
var things = {},
i, j;
for (i in prethings) {
if (prethings.hasOwnProperty(i)) {
for (j in prethings[i]) {
if (prethings[i].hasOwnProperty(j)) {
things[j] = prethings[i][j];
}
}
}
}
return things;
2015-01-01 20:06:27 -05:00
})(),
"macros": macros
};
})({
"Characters": {},
"Solids": {},
2015-01-02 15:39:49 -05:00
"Scenery": {},
"Terrain": {}
2015-01-01 20:06:27 -05:00
}, {
});