add gitignore file

This commit is contained in:
Carly Ho 2024-03-10 13:48:03 -05:00
parent 7162f07ac7
commit e85d5b7adc
2 changed files with 6 additions and 7 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.js

View File

@ -7029,7 +7029,7 @@ this.hacks = this.hacks || {};
'use strict';
var hackOptions = {
allowFollowerCollision: false, // if true, the player can walk into followers and talk to them (possible to get stuck this way)
followers: ['a'], // ids or names of sprites to be followers; use [] to start without a follower
followers: [], // ids or names of sprites to be followers; use [] to start without a follower
delay: 200, // delay between each follower step (0 is immediate, 400 is twice as slow as normal)
stack: false, // if true, followers stack on top of each other; otherwise, they will form a chain
};
@ -8217,7 +8217,7 @@ this.hacks = this.hacks || {};
'use strict';
var hackOptions = {
minRows: 2,
maxRows: 4,
maxRows: 16,
};
/**
@ -8649,7 +8649,7 @@ var hackOptions = {
// return tile.name == 'wall'; // specific opaque tile
// return ['wall', 'column', 'door'].indexOf(tile.name) !== -1; // specific opaque tile list
// return tile.name && tile.name.indexOf('OPAQUE') !== -1; // opaque tile flag in name
return true; // all tiles are opaque
return false; // all tiles are opaque
},
};
@ -9217,7 +9217,7 @@ var hackOptions = {
// return item.name && item.name == 'tea'; // specific permanent item
// return ['tea', 'flower', 'hat'].indexOf(item.name) !== -1; // specific permanent item list
// return item.name && item.name.indexOf('PERMANENT') !== -1; // permanent item flag in name
return true; // all items are permanent
return false; // all items are permanent
},
};
@ -9520,7 +9520,7 @@ this.hacks = this.hacks || {};
'use strict';
var hackOptions = {
// when to save/load
autosaveInterval: Infinity, // time in milliseconds between autosaves (never autosaves if Infinity)
autosaveInterval: 60000, // time in milliseconds between autosaves (never autosaves if Infinity)
loadOnStart: true, // if true, loads save when starting
clearOnEnd: false, // if true, deletes save when restarting after reaching an ending
clearOnStart: false, // if true, deletes save when page is loaded (mostly for debugging)
@ -10036,5 +10036,3 @@ addDualDialogTag('clear', clear);
exports.hackOptions = hackOptions;
})(this.hacks.save = this.hacks.save || {}, window);