├── .gitignore ├── README.md ├── effectFramesGenerator.html ├── effectFramesGenerator.ts ├── itemImageFramesGenerator.html ├── itemImageFramesGenerator.ts ├── itemImageGenerator.html ├── itemImageGenerator.ts ├── missileFramesGenerator.html ├── missileFramesGenerator.ts ├── modules ├── .gitignore ├── client.ts ├── constants │ ├── const.ts │ └── helpers.ts ├── datFile │ ├── animator.ts │ ├── datManager.ts │ ├── datThingType.ts │ ├── datThingTypeAttributes.ts │ └── frameGroup.ts ├── fileHandlers │ ├── binaryTree.ts │ ├── dataBuffer.ts │ ├── fileStream.ts │ ├── inputFile.ts │ ├── outputBinaryTree.ts │ └── outputFile.ts ├── imageGenerator │ └── imageGenerator.ts ├── log.ts ├── otbFile │ ├── otbItemType.ts │ ├── otbItemTypeAttributes.ts │ └── otbManager.ts ├── resources.ts ├── sprFile │ ├── pixel.ts │ ├── sprite.ts │ └── spriteManager.ts └── structures │ ├── bonesData.ts │ ├── color.ts │ ├── light.ts │ ├── marketData.ts │ ├── outfit.ts │ ├── point.ts │ ├── position.ts │ └── size.ts ├── otbEditor.html ├── otbEditor.ts ├── outfitImageGenerator.html ├── outfitImageGenerator.ts ├── outfitImagePhpGeneratorCode.ts ├── package.json ├── tests.html ├── tests.ts ├── tools ├── colored-outfit-images-generator │ ├── README.md │ ├── abuse_warning.png │ ├── animoutfit.php │ ├── cacheGenerator.php │ ├── config.php │ ├── filesAsJson.php │ ├── index.php │ ├── libs │ │ ├── gifCreator.php │ │ └── outfitter.php │ └── outfit.php └── item-image-frames-to-animated-gif-converter │ ├── 1-10 │ ├── 1.gif │ ├── 1.png │ ├── 10.gif │ ├── 10.png │ ├── 2.gif │ ├── 2.png │ ├── 3.gif │ ├── 3.png │ ├── 4.gif │ ├── 4.png │ ├── 5.gif │ ├── 5.png │ ├── 6.gif │ ├── 6.png │ ├── 7.gif │ ├── 7.png │ ├── 8.gif │ ├── 8.png │ ├── 9.gif │ └── 9.png │ ├── README.md │ ├── cli_convert.php │ ├── generated-zip-archives │ ├── .gitignore │ └── index.html │ ├── index.php │ └── lib │ ├── abstractPngConverterAnimation.php │ ├── apngCreator.php │ ├── converterPngToApngAnimation.php │ ├── converterPngToGifAnimation.php │ └── gifCreator.php ├── tsconfig.json ├── webpack.config.js └── websiteImageGeneratorBase.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/README.md -------------------------------------------------------------------------------- /effectFramesGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/effectFramesGenerator.html -------------------------------------------------------------------------------- /effectFramesGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/effectFramesGenerator.ts -------------------------------------------------------------------------------- /itemImageFramesGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/itemImageFramesGenerator.html -------------------------------------------------------------------------------- /itemImageFramesGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/itemImageFramesGenerator.ts -------------------------------------------------------------------------------- /itemImageGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/itemImageGenerator.html -------------------------------------------------------------------------------- /itemImageGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/itemImageGenerator.ts -------------------------------------------------------------------------------- /missileFramesGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/missileFramesGenerator.html -------------------------------------------------------------------------------- /missileFramesGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/missileFramesGenerator.ts -------------------------------------------------------------------------------- /modules/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.map -------------------------------------------------------------------------------- /modules/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/client.ts -------------------------------------------------------------------------------- /modules/constants/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/constants/const.ts -------------------------------------------------------------------------------- /modules/constants/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/constants/helpers.ts -------------------------------------------------------------------------------- /modules/datFile/animator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/datFile/animator.ts -------------------------------------------------------------------------------- /modules/datFile/datManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/datFile/datManager.ts -------------------------------------------------------------------------------- /modules/datFile/datThingType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/datFile/datThingType.ts -------------------------------------------------------------------------------- /modules/datFile/datThingTypeAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/datFile/datThingTypeAttributes.ts -------------------------------------------------------------------------------- /modules/datFile/frameGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/datFile/frameGroup.ts -------------------------------------------------------------------------------- /modules/fileHandlers/binaryTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/binaryTree.ts -------------------------------------------------------------------------------- /modules/fileHandlers/dataBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/dataBuffer.ts -------------------------------------------------------------------------------- /modules/fileHandlers/fileStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/fileStream.ts -------------------------------------------------------------------------------- /modules/fileHandlers/inputFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/inputFile.ts -------------------------------------------------------------------------------- /modules/fileHandlers/outputBinaryTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/outputBinaryTree.ts -------------------------------------------------------------------------------- /modules/fileHandlers/outputFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/fileHandlers/outputFile.ts -------------------------------------------------------------------------------- /modules/imageGenerator/imageGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/imageGenerator/imageGenerator.ts -------------------------------------------------------------------------------- /modules/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/log.ts -------------------------------------------------------------------------------- /modules/otbFile/otbItemType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/otbFile/otbItemType.ts -------------------------------------------------------------------------------- /modules/otbFile/otbItemTypeAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/otbFile/otbItemTypeAttributes.ts -------------------------------------------------------------------------------- /modules/otbFile/otbManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/otbFile/otbManager.ts -------------------------------------------------------------------------------- /modules/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/resources.ts -------------------------------------------------------------------------------- /modules/sprFile/pixel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/sprFile/pixel.ts -------------------------------------------------------------------------------- /modules/sprFile/sprite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/sprFile/sprite.ts -------------------------------------------------------------------------------- /modules/sprFile/spriteManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/sprFile/spriteManager.ts -------------------------------------------------------------------------------- /modules/structures/bonesData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/bonesData.ts -------------------------------------------------------------------------------- /modules/structures/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/color.ts -------------------------------------------------------------------------------- /modules/structures/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/light.ts -------------------------------------------------------------------------------- /modules/structures/marketData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/marketData.ts -------------------------------------------------------------------------------- /modules/structures/outfit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/outfit.ts -------------------------------------------------------------------------------- /modules/structures/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/point.ts -------------------------------------------------------------------------------- /modules/structures/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/position.ts -------------------------------------------------------------------------------- /modules/structures/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/modules/structures/size.ts -------------------------------------------------------------------------------- /otbEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/otbEditor.html -------------------------------------------------------------------------------- /otbEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/otbEditor.ts -------------------------------------------------------------------------------- /outfitImageGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/outfitImageGenerator.html -------------------------------------------------------------------------------- /outfitImageGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/outfitImageGenerator.ts -------------------------------------------------------------------------------- /outfitImagePhpGeneratorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/outfitImagePhpGeneratorCode.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/package.json -------------------------------------------------------------------------------- /tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tests.html -------------------------------------------------------------------------------- /tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tests.ts -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/README.md -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/abuse_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/abuse_warning.png -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/animoutfit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/animoutfit.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/cacheGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/cacheGenerator.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/config.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/filesAsJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/filesAsJson.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/index.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/libs/gifCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/libs/gifCreator.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/libs/outfitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/libs/outfitter.php -------------------------------------------------------------------------------- /tools/colored-outfit-images-generator/outfit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/colored-outfit-images-generator/outfit.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/1.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/1.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/10.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/10.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/2.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/2.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/3.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/3.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/4.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/4.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/5.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/5.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/6.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/6.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/7.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/7.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/8.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/8.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/9.gif -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/1-10/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/1-10/9.png -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/README.md -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/cli_convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/cli_convert.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/generated-zip-archives/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !index.html -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/generated-zip-archives/index.html: -------------------------------------------------------------------------------- 1 | NO INDEX -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/index.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/lib/abstractPngConverterAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/lib/abstractPngConverterAnimation.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/lib/apngCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/lib/apngCreator.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/lib/converterPngToApngAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/lib/converterPngToApngAnimation.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/lib/converterPngToGifAnimation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/lib/converterPngToGifAnimation.php -------------------------------------------------------------------------------- /tools/item-image-frames-to-animated-gif-converter/lib/gifCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tools/item-image-frames-to-animated-gif-converter/lib/gifCreator.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/webpack.config.js -------------------------------------------------------------------------------- /websiteImageGeneratorBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gesior/open-tibia-library/HEAD/websiteImageGeneratorBase.ts --------------------------------------------------------------------------------