├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── example_coloursJSON.jsonc ├── example_preset.jsonc ├── supportBlocks.md └── textures.png.md ├── package.json ├── public ├── images │ ├── favicon.ico │ └── preview.png ├── index.html └── robots.txt ├── src ├── components │ ├── faq.css │ ├── faq.js │ ├── header.css │ ├── header.js │ ├── languages.css │ ├── languages.js │ ├── mapart │ │ ├── autoCompleteInputBlockToAdd │ │ │ ├── autoCompleteInputBlockToAdd.css │ │ │ └── autoCompleteInputBlockToAdd.js │ │ ├── blockImage.css │ │ ├── blockImage.js │ │ ├── blockSelection.css │ │ ├── blockSelection.js │ │ ├── blockSelectionAddCustom │ │ │ ├── blockSelectionAddCustom.css │ │ │ └── blockSelectionAddCustom.js │ │ ├── bufferedNumberInput │ │ │ ├── bufferedNumberInput.css │ │ │ └── bufferedNumberInput.js │ │ ├── greenButtons.css │ │ ├── greenButtons.js │ │ ├── json │ │ │ ├── backgroundColourModes.json │ │ │ ├── coloursJSON.json │ │ │ ├── cropModes.json │ │ │ ├── defaultPresets.json │ │ │ ├── ditherMethods.json │ │ │ ├── mapModes.json │ │ │ ├── supportedVersions.json │ │ │ └── whereSupportBlocksModes.json │ │ ├── mapPreview.css │ │ ├── mapPreview.js │ │ ├── mapSettings.css │ │ ├── mapSettings.js │ │ ├── mapartController.css │ │ ├── mapartController.js │ │ ├── materials.css │ │ ├── materials.js │ │ ├── nbtReader.js │ │ ├── viewOnline2D │ │ │ ├── viewOnline2D.css │ │ │ └── viewOnline2D.js │ │ ├── viewOnline3D │ │ │ ├── pointerLockControls.js │ │ │ ├── viewOnline3D.css │ │ │ └── viewOnline3D.js │ │ ├── viewOnlineCommon │ │ │ ├── waila.css │ │ │ └── waila.js │ │ └── workers │ │ │ ├── mapCanvas.jsworker │ │ │ └── nbt.jsworker │ ├── root.css │ ├── root.js │ ├── tooltip.css │ └── tooltip.js ├── cookieManager.js ├── images │ ├── Palette128_Unobtainable_Trans.png │ ├── classicVsValley.png │ ├── gridOverlay.png │ ├── null.png │ ├── textures.png │ └── upload.png ├── index.css ├── index.js ├── kenpixel_mini_square.woff └── locale │ ├── de │ ├── flag.svg │ └── strings.json │ ├── en │ ├── flag.svg │ └── strings.json │ ├── eo │ ├── flag.svg │ └── strings.json │ ├── es │ ├── flag.svg │ └── strings.json │ ├── et │ ├── flag.svg │ ├── flag_pop.svg │ └── strings.json │ ├── fr │ ├── flag.svg │ └── strings.json │ ├── it │ ├── flag.svg │ └── strings.json │ ├── ja │ ├── flag.svg │ └── strings.json │ ├── locale.js │ ├── lt │ ├── flag.svg │ └── strings.json │ ├── pl │ ├── flag.svg │ └── strings.json │ ├── pt-Br │ ├── flag.svg │ └── strings.json │ ├── pt │ ├── flag.svg │ └── strings.json │ ├── ru │ ├── flag.svg │ └── strings.json │ ├── ua │ ├── flag.svg │ └── strings.json │ ├── zh-Hans │ ├── flag.svg │ └── strings.json │ └── zh-Hant │ ├── flag.svg │ └── strings.json └── tools ├── JSONIO.py ├── Palette128.png ├── Palette128_Unobtainable.png ├── Palette128_Unobtainable_Trans.png ├── SAOLogging.py ├── addColoursJSONBlock.py ├── addColoursJSONColourSet.py ├── addLocaleLanguage.py ├── addLocaleString.py ├── addMinecraftVersion.py └── createTestPaletteNBT.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/example_coloursJSON.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/docs/example_coloursJSON.jsonc -------------------------------------------------------------------------------- /docs/example_preset.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/docs/example_preset.jsonc -------------------------------------------------------------------------------- /docs/supportBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/docs/supportBlocks.md -------------------------------------------------------------------------------- /docs/textures.png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/docs/textures.png.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/package.json -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/public/images/preview.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/faq.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/faq.css -------------------------------------------------------------------------------- /src/components/faq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/faq.js -------------------------------------------------------------------------------- /src/components/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/header.css -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/languages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/languages.css -------------------------------------------------------------------------------- /src/components/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/languages.js -------------------------------------------------------------------------------- /src/components/mapart/autoCompleteInputBlockToAdd/autoCompleteInputBlockToAdd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/autoCompleteInputBlockToAdd/autoCompleteInputBlockToAdd.css -------------------------------------------------------------------------------- /src/components/mapart/autoCompleteInputBlockToAdd/autoCompleteInputBlockToAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/autoCompleteInputBlockToAdd/autoCompleteInputBlockToAdd.js -------------------------------------------------------------------------------- /src/components/mapart/blockImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/blockImage.css -------------------------------------------------------------------------------- /src/components/mapart/blockImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/blockImage.js -------------------------------------------------------------------------------- /src/components/mapart/blockSelection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/blockSelection.css -------------------------------------------------------------------------------- /src/components/mapart/blockSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/blockSelection.js -------------------------------------------------------------------------------- /src/components/mapart/blockSelectionAddCustom/blockSelectionAddCustom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/mapart/blockSelectionAddCustom/blockSelectionAddCustom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/blockSelectionAddCustom/blockSelectionAddCustom.js -------------------------------------------------------------------------------- /src/components/mapart/bufferedNumberInput/bufferedNumberInput.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/mapart/bufferedNumberInput/bufferedNumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/bufferedNumberInput/bufferedNumberInput.js -------------------------------------------------------------------------------- /src/components/mapart/greenButtons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/greenButtons.css -------------------------------------------------------------------------------- /src/components/mapart/greenButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/greenButtons.js -------------------------------------------------------------------------------- /src/components/mapart/json/backgroundColourModes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/backgroundColourModes.json -------------------------------------------------------------------------------- /src/components/mapart/json/coloursJSON.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/coloursJSON.json -------------------------------------------------------------------------------- /src/components/mapart/json/cropModes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/cropModes.json -------------------------------------------------------------------------------- /src/components/mapart/json/defaultPresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/defaultPresets.json -------------------------------------------------------------------------------- /src/components/mapart/json/ditherMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/ditherMethods.json -------------------------------------------------------------------------------- /src/components/mapart/json/mapModes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/mapModes.json -------------------------------------------------------------------------------- /src/components/mapart/json/supportedVersions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/supportedVersions.json -------------------------------------------------------------------------------- /src/components/mapart/json/whereSupportBlocksModes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/json/whereSupportBlocksModes.json -------------------------------------------------------------------------------- /src/components/mapart/mapPreview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapPreview.css -------------------------------------------------------------------------------- /src/components/mapart/mapPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapPreview.js -------------------------------------------------------------------------------- /src/components/mapart/mapSettings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapSettings.css -------------------------------------------------------------------------------- /src/components/mapart/mapSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapSettings.js -------------------------------------------------------------------------------- /src/components/mapart/mapartController.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapartController.css -------------------------------------------------------------------------------- /src/components/mapart/mapartController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/mapartController.js -------------------------------------------------------------------------------- /src/components/mapart/materials.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/mapart/materials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/materials.js -------------------------------------------------------------------------------- /src/components/mapart/nbtReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/nbtReader.js -------------------------------------------------------------------------------- /src/components/mapart/viewOnline2D/viewOnline2D.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnline2D/viewOnline2D.css -------------------------------------------------------------------------------- /src/components/mapart/viewOnline2D/viewOnline2D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnline2D/viewOnline2D.js -------------------------------------------------------------------------------- /src/components/mapart/viewOnline3D/pointerLockControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnline3D/pointerLockControls.js -------------------------------------------------------------------------------- /src/components/mapart/viewOnline3D/viewOnline3D.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/mapart/viewOnline3D/viewOnline3D.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnline3D/viewOnline3D.js -------------------------------------------------------------------------------- /src/components/mapart/viewOnlineCommon/waila.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnlineCommon/waila.css -------------------------------------------------------------------------------- /src/components/mapart/viewOnlineCommon/waila.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/viewOnlineCommon/waila.js -------------------------------------------------------------------------------- /src/components/mapart/workers/mapCanvas.jsworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/workers/mapCanvas.jsworker -------------------------------------------------------------------------------- /src/components/mapart/workers/nbt.jsworker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/mapart/workers/nbt.jsworker -------------------------------------------------------------------------------- /src/components/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/root.css -------------------------------------------------------------------------------- /src/components/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/root.js -------------------------------------------------------------------------------- /src/components/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/tooltip.css -------------------------------------------------------------------------------- /src/components/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/components/tooltip.js -------------------------------------------------------------------------------- /src/cookieManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/cookieManager.js -------------------------------------------------------------------------------- /src/images/Palette128_Unobtainable_Trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/Palette128_Unobtainable_Trans.png -------------------------------------------------------------------------------- /src/images/classicVsValley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/classicVsValley.png -------------------------------------------------------------------------------- /src/images/gridOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/gridOverlay.png -------------------------------------------------------------------------------- /src/images/null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/null.png -------------------------------------------------------------------------------- /src/images/textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/textures.png -------------------------------------------------------------------------------- /src/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/images/upload.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/index.js -------------------------------------------------------------------------------- /src/kenpixel_mini_square.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/kenpixel_mini_square.woff -------------------------------------------------------------------------------- /src/locale/de/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/de/flag.svg -------------------------------------------------------------------------------- /src/locale/de/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/de/strings.json -------------------------------------------------------------------------------- /src/locale/en/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/en/flag.svg -------------------------------------------------------------------------------- /src/locale/en/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/en/strings.json -------------------------------------------------------------------------------- /src/locale/eo/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/eo/flag.svg -------------------------------------------------------------------------------- /src/locale/eo/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/eo/strings.json -------------------------------------------------------------------------------- /src/locale/es/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/es/flag.svg -------------------------------------------------------------------------------- /src/locale/es/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/es/strings.json -------------------------------------------------------------------------------- /src/locale/et/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/et/flag.svg -------------------------------------------------------------------------------- /src/locale/et/flag_pop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/et/flag_pop.svg -------------------------------------------------------------------------------- /src/locale/et/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/et/strings.json -------------------------------------------------------------------------------- /src/locale/fr/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/fr/flag.svg -------------------------------------------------------------------------------- /src/locale/fr/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/fr/strings.json -------------------------------------------------------------------------------- /src/locale/it/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/it/flag.svg -------------------------------------------------------------------------------- /src/locale/it/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/it/strings.json -------------------------------------------------------------------------------- /src/locale/ja/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ja/flag.svg -------------------------------------------------------------------------------- /src/locale/ja/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ja/strings.json -------------------------------------------------------------------------------- /src/locale/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/locale.js -------------------------------------------------------------------------------- /src/locale/lt/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/lt/flag.svg -------------------------------------------------------------------------------- /src/locale/lt/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/lt/strings.json -------------------------------------------------------------------------------- /src/locale/pl/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pl/flag.svg -------------------------------------------------------------------------------- /src/locale/pl/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pl/strings.json -------------------------------------------------------------------------------- /src/locale/pt-Br/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pt-Br/flag.svg -------------------------------------------------------------------------------- /src/locale/pt-Br/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pt-Br/strings.json -------------------------------------------------------------------------------- /src/locale/pt/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pt/flag.svg -------------------------------------------------------------------------------- /src/locale/pt/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/pt/strings.json -------------------------------------------------------------------------------- /src/locale/ru/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ru/flag.svg -------------------------------------------------------------------------------- /src/locale/ru/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ru/strings.json -------------------------------------------------------------------------------- /src/locale/ua/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ua/flag.svg -------------------------------------------------------------------------------- /src/locale/ua/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/ua/strings.json -------------------------------------------------------------------------------- /src/locale/zh-Hans/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/zh-Hans/flag.svg -------------------------------------------------------------------------------- /src/locale/zh-Hans/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/zh-Hans/strings.json -------------------------------------------------------------------------------- /src/locale/zh-Hant/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/zh-Hant/flag.svg -------------------------------------------------------------------------------- /src/locale/zh-Hant/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/src/locale/zh-Hant/strings.json -------------------------------------------------------------------------------- /tools/JSONIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/JSONIO.py -------------------------------------------------------------------------------- /tools/Palette128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/Palette128.png -------------------------------------------------------------------------------- /tools/Palette128_Unobtainable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/Palette128_Unobtainable.png -------------------------------------------------------------------------------- /tools/Palette128_Unobtainable_Trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/Palette128_Unobtainable_Trans.png -------------------------------------------------------------------------------- /tools/SAOLogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/SAOLogging.py -------------------------------------------------------------------------------- /tools/addColoursJSONBlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/addColoursJSONBlock.py -------------------------------------------------------------------------------- /tools/addColoursJSONColourSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/addColoursJSONColourSet.py -------------------------------------------------------------------------------- /tools/addLocaleLanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/addLocaleLanguage.py -------------------------------------------------------------------------------- /tools/addLocaleString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/addLocaleString.py -------------------------------------------------------------------------------- /tools/addMinecraftVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/addMinecraftVersion.py -------------------------------------------------------------------------------- /tools/createTestPaletteNBT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rebane2001/mapartcraft/HEAD/tools/createTestPaletteNBT.js --------------------------------------------------------------------------------