Addnew sheets (armor, weapons, malefica) and v13 support

This commit is contained in:
2025-05-18 23:51:26 +02:00
parent 7672f861ff
commit 995d61e1c6
4478 changed files with 667857 additions and 620 deletions

37
node_modules/v8flags/config-path.js generated vendored Normal file
View File

@@ -0,0 +1,37 @@
var os = require('os');
var path = require('path');
var userHome = os.homedir();
var env = process.env;
var name = 'js-v8flags';
function macos() {
var library = path.join(userHome, 'Library');
return path.join(library, 'Caches', name);
}
function windows() {
var appData = env.LOCALAPPDATA || path.join(userHome, 'AppData', 'Local');
return path.join(appData, name);
}
// https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
function linux() {
return path.join(env.XDG_CACHE_HOME || path.join(userHome, '.cache'), name);
}
module.exports = function (platform) {
if (!userHome) {
return os.tmpdir();
}
if (platform === 'darwin') {
return macos();
}
if (platform === 'win32') {
return windows();
}
return linux();
};