├── .github └── workflows │ └── main.yml ├── .vscode └── settings.json ├── ISSUES.md ├── README.de.md ├── README.md ├── assets └── scenes │ ├── i1noRqT20RD5stIK-thumb.webp │ └── zksLSgRdh6f8jiUO-thumb.webp ├── lang ├── cs.json ├── de.json ├── en.json ├── es.json ├── fr.json ├── ja.json └── pt-BR.json ├── levels.lock ├── make_post.py ├── module.json ├── packs ├── levels-samples.db ├── levels-samples │ ├── 003674.ldb │ ├── 004106.log │ ├── CURRENT │ ├── LOCK │ ├── LOG │ ├── LOG.old │ ├── MANIFEST-004105 │ └── lost │ │ ├── 003375.log │ │ ├── 003396.log │ │ ├── 003447.log │ │ ├── MANIFEST-003374 │ │ ├── MANIFEST-003394 │ │ └── MANIFEST-003446 ├── macros.db └── macros │ ├── 003669.ldb │ ├── 004101.log │ ├── CURRENT │ ├── LOCK │ ├── LOG │ ├── LOG.old │ ├── MANIFEST-004100 │ └── lost │ ├── 003370.log │ ├── 003391.log │ ├── 003442.log │ ├── MANIFEST-003369 │ ├── MANIFEST-003389 │ └── MANIFEST-003441 ├── sample-maps ├── andythebrave │ ├── First Floor.webp │ ├── Fourth Floor.webp │ ├── Ice Beacon Destroyed.webp │ ├── Ice Beacon.webp │ ├── Outside.webp │ ├── Second Floor Bridge.webp │ ├── Second Floor.webp │ ├── Second_Floor_Bridge.webp │ ├── Thid Floor Alternate.webp │ └── Third Floor.webp └── baileywiki │ ├── Rath-Rain_Distant_Thunder_And_Bird_Loop.ogg │ ├── barn-lvl1.webp │ ├── barn-lvl2.webp │ ├── barn-roof.webp │ ├── barn-shed-roof.webp │ ├── basement01-block.webp │ ├── basement03-block.webp │ ├── farmhouse-crops.webp │ ├── farmhouse-lvl1.webp │ ├── farmhouse-lvl2.webp │ ├── farmhouse-roof-combined.webp │ ├── fire-flames-crackle.ogg │ ├── outhouse01-roof.webp │ ├── park-treetop1.webp │ └── park-treetop2.webp ├── scripts ├── API.js ├── config.js ├── handlers │ ├── FogManager.js │ ├── backgroundHandler.js │ ├── drawingHandler.js │ ├── fowHandler.js │ ├── lightHandler.js │ ├── noteHandler.js │ ├── refreshHandler.js │ ├── regionHandler.js │ ├── settingsHandler.js │ ├── sightHandler.js │ ├── soundHandler.js │ ├── templateHandler.js │ ├── tileHandler.js │ ├── tokenHandler.js │ └── uiHandler.js ├── helpers.js ├── lib │ ├── injectConfig.js │ └── jquerysortable.js ├── main.js ├── migration.js ├── showWelcome.js ├── ui.js ├── warnings.js └── wrappers.js ├── styles └── levels.css ├── templates └── layerTool.hbs ├── translate-all.js └── wiki ├── aa ├── holesdconfig.jpg ├── levelsdm1.png ├── levelsdm2.png ├── levelslightconfig.jpg └── levelstileconfig.jpg /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/ISSUES.md -------------------------------------------------------------------------------- /README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/README.de.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/README.md -------------------------------------------------------------------------------- /assets/scenes/i1noRqT20RD5stIK-thumb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/assets/scenes/i1noRqT20RD5stIK-thumb.webp -------------------------------------------------------------------------------- /assets/scenes/zksLSgRdh6f8jiUO-thumb.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/assets/scenes/zksLSgRdh6f8jiUO-thumb.webp -------------------------------------------------------------------------------- /lang/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/cs.json -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/es.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/lang/pt-BR.json -------------------------------------------------------------------------------- /levels.lock: -------------------------------------------------------------------------------- 1 | 🔒 -------------------------------------------------------------------------------- /make_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/make_post.py -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/module.json -------------------------------------------------------------------------------- /packs/levels-samples.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples.db -------------------------------------------------------------------------------- /packs/levels-samples/003674.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/003674.ldb -------------------------------------------------------------------------------- /packs/levels-samples/004106.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/levels-samples/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-004105 2 | -------------------------------------------------------------------------------- /packs/levels-samples/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/levels-samples/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/LOG -------------------------------------------------------------------------------- /packs/levels-samples/LOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/LOG.old -------------------------------------------------------------------------------- /packs/levels-samples/MANIFEST-004105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/MANIFEST-004105 -------------------------------------------------------------------------------- /packs/levels-samples/lost/003375.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/levels-samples/lost/003396.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/levels-samples/lost/003447.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/levels-samples/lost/MANIFEST-003374: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/lost/MANIFEST-003374 -------------------------------------------------------------------------------- /packs/levels-samples/lost/MANIFEST-003394: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/lost/MANIFEST-003394 -------------------------------------------------------------------------------- /packs/levels-samples/lost/MANIFEST-003446: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/levels-samples/lost/MANIFEST-003446 -------------------------------------------------------------------------------- /packs/macros.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros.db -------------------------------------------------------------------------------- /packs/macros/003669.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/003669.ldb -------------------------------------------------------------------------------- /packs/macros/004101.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-004100 2 | -------------------------------------------------------------------------------- /packs/macros/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros/LOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/LOG -------------------------------------------------------------------------------- /packs/macros/LOG.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/LOG.old -------------------------------------------------------------------------------- /packs/macros/MANIFEST-004100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/MANIFEST-004100 -------------------------------------------------------------------------------- /packs/macros/lost/003370.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros/lost/003391.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros/lost/003442.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs/macros/lost/MANIFEST-003369: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/lost/MANIFEST-003369 -------------------------------------------------------------------------------- /packs/macros/lost/MANIFEST-003389: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/lost/MANIFEST-003389 -------------------------------------------------------------------------------- /packs/macros/lost/MANIFEST-003441: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/packs/macros/lost/MANIFEST-003441 -------------------------------------------------------------------------------- /sample-maps/andythebrave/First Floor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/First Floor.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Fourth Floor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Fourth Floor.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Ice Beacon Destroyed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Ice Beacon Destroyed.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Ice Beacon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Ice Beacon.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Outside.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Outside.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Second Floor Bridge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Second Floor Bridge.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Second Floor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Second Floor.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Second_Floor_Bridge.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Second_Floor_Bridge.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Thid Floor Alternate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Thid Floor Alternate.webp -------------------------------------------------------------------------------- /sample-maps/andythebrave/Third Floor.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/andythebrave/Third Floor.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/Rath-Rain_Distant_Thunder_And_Bird_Loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/Rath-Rain_Distant_Thunder_And_Bird_Loop.ogg -------------------------------------------------------------------------------- /sample-maps/baileywiki/barn-lvl1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/barn-lvl1.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/barn-lvl2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/barn-lvl2.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/barn-roof.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/barn-roof.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/barn-shed-roof.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/barn-shed-roof.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/basement01-block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/basement01-block.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/basement03-block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/basement03-block.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/farmhouse-crops.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/farmhouse-crops.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/farmhouse-lvl1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/farmhouse-lvl1.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/farmhouse-lvl2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/farmhouse-lvl2.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/farmhouse-roof-combined.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/farmhouse-roof-combined.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/fire-flames-crackle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/fire-flames-crackle.ogg -------------------------------------------------------------------------------- /sample-maps/baileywiki/outhouse01-roof.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/outhouse01-roof.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/park-treetop1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/park-treetop1.webp -------------------------------------------------------------------------------- /sample-maps/baileywiki/park-treetop2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/sample-maps/baileywiki/park-treetop2.webp -------------------------------------------------------------------------------- /scripts/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/API.js -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/config.js -------------------------------------------------------------------------------- /scripts/handlers/FogManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/FogManager.js -------------------------------------------------------------------------------- /scripts/handlers/backgroundHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/backgroundHandler.js -------------------------------------------------------------------------------- /scripts/handlers/drawingHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/drawingHandler.js -------------------------------------------------------------------------------- /scripts/handlers/fowHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/fowHandler.js -------------------------------------------------------------------------------- /scripts/handlers/lightHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/lightHandler.js -------------------------------------------------------------------------------- /scripts/handlers/noteHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/noteHandler.js -------------------------------------------------------------------------------- /scripts/handlers/refreshHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/refreshHandler.js -------------------------------------------------------------------------------- /scripts/handlers/regionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/regionHandler.js -------------------------------------------------------------------------------- /scripts/handlers/settingsHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/settingsHandler.js -------------------------------------------------------------------------------- /scripts/handlers/sightHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/sightHandler.js -------------------------------------------------------------------------------- /scripts/handlers/soundHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/soundHandler.js -------------------------------------------------------------------------------- /scripts/handlers/templateHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/templateHandler.js -------------------------------------------------------------------------------- /scripts/handlers/tileHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/tileHandler.js -------------------------------------------------------------------------------- /scripts/handlers/tokenHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/tokenHandler.js -------------------------------------------------------------------------------- /scripts/handlers/uiHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/handlers/uiHandler.js -------------------------------------------------------------------------------- /scripts/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/helpers.js -------------------------------------------------------------------------------- /scripts/lib/injectConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/lib/injectConfig.js -------------------------------------------------------------------------------- /scripts/lib/jquerysortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/lib/jquerysortable.js -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/main.js -------------------------------------------------------------------------------- /scripts/migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/migration.js -------------------------------------------------------------------------------- /scripts/showWelcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/showWelcome.js -------------------------------------------------------------------------------- /scripts/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/ui.js -------------------------------------------------------------------------------- /scripts/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/warnings.js -------------------------------------------------------------------------------- /scripts/wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/scripts/wrappers.js -------------------------------------------------------------------------------- /styles/levels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/styles/levels.css -------------------------------------------------------------------------------- /templates/layerTool.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/templates/layerTool.hbs -------------------------------------------------------------------------------- /translate-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/translate-all.js -------------------------------------------------------------------------------- /wiki/aa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /wiki/holesdconfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/wiki/holesdconfig.jpg -------------------------------------------------------------------------------- /wiki/levelsdm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/wiki/levelsdm1.png -------------------------------------------------------------------------------- /wiki/levelsdm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/wiki/levelsdm2.png -------------------------------------------------------------------------------- /wiki/levelslightconfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/wiki/levelslightconfig.jpg -------------------------------------------------------------------------------- /wiki/levelstileconfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theripper93/Levels/HEAD/wiki/levelstileconfig.jpg --------------------------------------------------------------------------------