├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── VmfGenerators ├── __init__.py ├── brushBlocks.py └── displacement.py ├── VmfPopulators ├── __init__.py ├── dota_entities.py └── template │ └── info_player_start.txt ├── WC3MapObject.py ├── dota2_entities.py ├── dump_WCFile_Data.py ├── dump_jsonData.py ├── lib ├── DataReader.py ├── ReadFiletype │ ├── __init__.py │ ├── read_doo.py │ ├── read_j.py │ ├── read_mmp.py │ ├── read_object.py │ ├── read_slk.py │ ├── read_w3e.py │ ├── read_w3i.py │ ├── read_wc3.py │ ├── read_wpm.py │ └── read_wts.py ├── __init__.py ├── dataTypes.py ├── helperFunctions.py ├── mpyq │ ├── LICENSE.txt │ ├── __init__.py │ ├── mpyq.py │ ├── mpyq_cli.py │ ├── mpyq_compression.py │ ├── mpyq_constants.py │ ├── mpyq_encryption.py │ ├── mpyq_extract.py │ ├── mpyq_print.py │ └── wc3_mpyq.py ├── uiHelperFunctions.py ├── vmflib │ ├── LICENSE.txt │ ├── __init__.py │ ├── brush.py │ ├── games │ │ ├── __init__.py │ │ ├── source.py │ │ └── tf2.py │ ├── tools.py │ ├── types.py │ └── vmf.py ├── wc3Files.txt └── wc3Files_compact.txt ├── object_ids.json ├── template ├── brushFooter.txt ├── brushHeader.txt ├── footer.txt ├── header.txt └── planeEntry.txt ├── tests ├── darkdeed │ └── war3map_darkdeed.w3e ├── element │ └── war3map_element.w3e ├── legion │ └── war3map_legion.w3e ├── map.w3x ├── troll │ ├── war3map_troll.w3e │ ├── war3map_troll.w3t │ ├── war3map_troll.w3u │ └── war3map_troll.wts ├── uther │ └── war3map_uther.w3e ├── war3map.doo ├── war3map.j ├── war3map.mmp ├── war3map.w3a ├── war3map.w3e ├── war3map.w3i ├── war3map.w3t ├── war3map.w3u └── war3map.wpm ├── topdownViewer.py ├── ui.py ├── ui ├── WC3 Art │ ├── README.md │ ├── ground │ │ ├── Ashen_Leaves.tga │ │ ├── City_BlackMarble.tga │ │ ├── City_BrickTiles.tga │ │ ├── City_Dirt.tga │ │ ├── City_DirtRough.tga │ │ ├── City_Grass.tga │ │ ├── City_GrassTrim.tga │ │ ├── City_RoundTiles.tga │ │ ├── City_SquareTiles.tga │ │ ├── City_WhiteMarble.tga │ │ ├── Ice_DarkIce.tga │ │ ├── Ice_Dirt.tga │ │ ├── Ice_DirtRough.tga │ │ ├── Ice_Ice.tga │ │ ├── Ice_RuneBricks.tga │ │ ├── Ice_Snow.tga │ │ ├── Lords_Dirt.tga │ │ ├── Lords_DirtRough.tga │ │ ├── Lords_Grass.tga │ │ ├── Lords_GrassDark.tga │ │ ├── Lords_Rock.tga │ │ ├── Lordw_Dirt.tga │ │ ├── Lordw_DirtRough.tga │ │ ├── Lordw_Grass.tga │ │ ├── Lordw_Rock.tga │ │ ├── Lordw_Snow.tga │ │ ├── Lordw_SnowGrass.tga │ │ ├── Ruins_Dirt.tga │ │ ├── Ruins_DirtGrass.tga │ │ ├── Ruins_DirtRough.tga │ │ ├── Ruins_Grass.tga │ │ ├── Ruins_GrassDark.tga │ │ ├── Ruins_LargeBricks.tga │ │ ├── Ruins_RoundTiles.tga │ │ ├── Ruins_Sand.tga │ │ ├── Ruins_SmallBricks.tga │ │ ├── VillageFall_CobblePath.tga │ │ ├── Village_Crops.tga │ │ └── Village_GrassShort.tga │ └── placeholder.tga └── tmp │ └── test.png ├── wc3vmfMap.py └── write_vmf2.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/README.md -------------------------------------------------------------------------------- /VmfGenerators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VmfGenerators/brushBlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/VmfGenerators/brushBlocks.py -------------------------------------------------------------------------------- /VmfGenerators/displacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/VmfGenerators/displacement.py -------------------------------------------------------------------------------- /VmfPopulators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VmfPopulators/dota_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/VmfPopulators/dota_entities.py -------------------------------------------------------------------------------- /VmfPopulators/template/info_player_start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/VmfPopulators/template/info_player_start.txt -------------------------------------------------------------------------------- /WC3MapObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/WC3MapObject.py -------------------------------------------------------------------------------- /dota2_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/dota2_entities.py -------------------------------------------------------------------------------- /dump_WCFile_Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/dump_WCFile_Data.py -------------------------------------------------------------------------------- /dump_jsonData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/dump_jsonData.py -------------------------------------------------------------------------------- /lib/DataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/DataReader.py -------------------------------------------------------------------------------- /lib/ReadFiletype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ReadFiletype/read_doo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_doo.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_j.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_mmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_mmp.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_object.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_slk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_slk.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_w3e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_w3e.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_w3i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_w3i.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_wc3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_wc3.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_wpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_wpm.py -------------------------------------------------------------------------------- /lib/ReadFiletype/read_wts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/ReadFiletype/read_wts.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/dataTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/dataTypes.py -------------------------------------------------------------------------------- /lib/helperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/helperFunctions.py -------------------------------------------------------------------------------- /lib/mpyq/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/LICENSE.txt -------------------------------------------------------------------------------- /lib/mpyq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/mpyq/mpyq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_cli.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_compression.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_constants.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_encryption.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_extract.py -------------------------------------------------------------------------------- /lib/mpyq/mpyq_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/mpyq_print.py -------------------------------------------------------------------------------- /lib/mpyq/wc3_mpyq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/mpyq/wc3_mpyq.py -------------------------------------------------------------------------------- /lib/uiHelperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/uiHelperFunctions.py -------------------------------------------------------------------------------- /lib/vmflib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/LICENSE.txt -------------------------------------------------------------------------------- /lib/vmflib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/__init__.py -------------------------------------------------------------------------------- /lib/vmflib/brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/brush.py -------------------------------------------------------------------------------- /lib/vmflib/games/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/vmflib/games/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/games/source.py -------------------------------------------------------------------------------- /lib/vmflib/games/tf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/games/tf2.py -------------------------------------------------------------------------------- /lib/vmflib/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/tools.py -------------------------------------------------------------------------------- /lib/vmflib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/types.py -------------------------------------------------------------------------------- /lib/vmflib/vmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/vmflib/vmf.py -------------------------------------------------------------------------------- /lib/wc3Files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/wc3Files.txt -------------------------------------------------------------------------------- /lib/wc3Files_compact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/lib/wc3Files_compact.txt -------------------------------------------------------------------------------- /object_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/object_ids.json -------------------------------------------------------------------------------- /template/brushFooter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/template/brushFooter.txt -------------------------------------------------------------------------------- /template/brushHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/template/brushHeader.txt -------------------------------------------------------------------------------- /template/footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/template/footer.txt -------------------------------------------------------------------------------- /template/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/template/header.txt -------------------------------------------------------------------------------- /template/planeEntry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/template/planeEntry.txt -------------------------------------------------------------------------------- /tests/darkdeed/war3map_darkdeed.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/darkdeed/war3map_darkdeed.w3e -------------------------------------------------------------------------------- /tests/element/war3map_element.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/element/war3map_element.w3e -------------------------------------------------------------------------------- /tests/legion/war3map_legion.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/legion/war3map_legion.w3e -------------------------------------------------------------------------------- /tests/map.w3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/map.w3x -------------------------------------------------------------------------------- /tests/troll/war3map_troll.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/troll/war3map_troll.w3e -------------------------------------------------------------------------------- /tests/troll/war3map_troll.w3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/troll/war3map_troll.w3t -------------------------------------------------------------------------------- /tests/troll/war3map_troll.w3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/troll/war3map_troll.w3u -------------------------------------------------------------------------------- /tests/troll/war3map_troll.wts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/troll/war3map_troll.wts -------------------------------------------------------------------------------- /tests/uther/war3map_uther.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/uther/war3map_uther.w3e -------------------------------------------------------------------------------- /tests/war3map.doo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.doo -------------------------------------------------------------------------------- /tests/war3map.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.j -------------------------------------------------------------------------------- /tests/war3map.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.mmp -------------------------------------------------------------------------------- /tests/war3map.w3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.w3a -------------------------------------------------------------------------------- /tests/war3map.w3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.w3e -------------------------------------------------------------------------------- /tests/war3map.w3i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.w3i -------------------------------------------------------------------------------- /tests/war3map.w3t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.w3t -------------------------------------------------------------------------------- /tests/war3map.w3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.w3u -------------------------------------------------------------------------------- /tests/war3map.wpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/tests/war3map.wpm -------------------------------------------------------------------------------- /topdownViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/topdownViewer.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui.py -------------------------------------------------------------------------------- /ui/WC3 Art/README.md: -------------------------------------------------------------------------------- 1 | # WC3 Art 2 | Please dont cry Blizzard, we only mean this for the best 3 | -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ashen_Leaves.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ashen_Leaves.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_BlackMarble.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_BlackMarble.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_BrickTiles.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_BrickTiles.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_Dirt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_Dirt.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_DirtRough.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_DirtRough.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_Grass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_Grass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_GrassTrim.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_GrassTrim.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_RoundTiles.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_RoundTiles.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_SquareTiles.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_SquareTiles.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/City_WhiteMarble.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/City_WhiteMarble.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_DarkIce.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_DarkIce.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_Dirt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_Dirt.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_DirtRough.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_DirtRough.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_Ice.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_Ice.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_RuneBricks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_RuneBricks.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ice_Snow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ice_Snow.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lords_Dirt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lords_Dirt.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lords_DirtRough.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lords_DirtRough.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lords_Grass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lords_Grass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lords_GrassDark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lords_GrassDark.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lords_Rock.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lords_Rock.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_Dirt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_Dirt.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_DirtRough.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_DirtRough.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_Grass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_Grass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_Rock.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_Rock.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_Snow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_Snow.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Lordw_SnowGrass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Lordw_SnowGrass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_Dirt.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_Dirt.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_DirtGrass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_DirtGrass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_DirtRough.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_DirtRough.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_Grass.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_Grass.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_GrassDark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_GrassDark.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_LargeBricks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_LargeBricks.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_RoundTiles.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_RoundTiles.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_Sand.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_Sand.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Ruins_SmallBricks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Ruins_SmallBricks.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/VillageFall_CobblePath.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/VillageFall_CobblePath.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Village_Crops.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Village_Crops.tga -------------------------------------------------------------------------------- /ui/WC3 Art/ground/Village_GrassShort.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/ground/Village_GrassShort.tga -------------------------------------------------------------------------------- /ui/WC3 Art/placeholder.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/WC3 Art/placeholder.tga -------------------------------------------------------------------------------- /ui/tmp/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/ui/tmp/test.png -------------------------------------------------------------------------------- /wc3vmfMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/wc3vmfMap.py -------------------------------------------------------------------------------- /write_vmf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinZ163/w3x-to-vmf/HEAD/write_vmf2.py --------------------------------------------------------------------------------