├── .gitignore ├── CREDITS.md ├── Makefile ├── README.md ├── TODO.md ├── calibri.ttf ├── creator.ipkg ├── doc └── Architecture.md ├── editor.ipkg ├── game.ipkg ├── res └── main │ ├── animations │ ├── cultist-resting.json │ ├── cultist-walk.json │ ├── mage-1.json │ ├── mage-2.json │ ├── mage-3.json │ ├── rest-large.json │ ├── rest-low.json │ ├── run-large.json │ ├── run-low.json │ ├── walk-large.json │ └── walk-low.json │ ├── behaviors │ ├── door.json │ ├── hold-chase.json │ ├── loot.json │ ├── projectile.json │ └── roam-chase.json │ ├── fonts │ ├── inventory_count.json │ ├── ui_text.json │ └── ui_title.json │ ├── images │ ├── BrightPurpleMarble_256.png │ ├── andromalius.png │ ├── andromalius │ │ ├── acid2-14x67.png │ │ ├── andromalius-57x88.png │ │ ├── disciple-45x51.png │ │ ├── flameball-32x32.png │ │ ├── gnu-120x100.png │ │ ├── mage-1-85x94.png │ │ ├── mage-2-122x110.png │ │ ├── mage-3-87x110.png │ │ ├── mage-bullet-13x13.png │ │ ├── minion-45x66.png │ │ ├── shadow-80x70.png │ │ └── tentacles-25x90.png │ ├── arrow_1.png │ ├── backgrounds │ │ ├── castle.jpg │ │ ├── crossroads.png │ │ ├── encampment.png │ │ ├── forest.png │ │ ├── jungle.bmp │ │ ├── jungle.jpg │ │ └── winter_fortress.png │ ├── black_sword.png │ ├── castledoors.png │ ├── character │ │ ├── Large │ │ │ ├── attack.png │ │ │ ├── death.png │ │ │ ├── idle.png │ │ │ ├── jump.png │ │ │ ├── run.png │ │ │ ├── sliding.png │ │ │ └── walk.png │ │ ├── Licence.url │ │ ├── Low │ │ │ ├── attack.png │ │ │ ├── death.png │ │ │ ├── idle.png │ │ │ ├── jump.png │ │ │ ├── run.png │ │ │ ├── sliding.png │ │ │ └── walk.png │ │ ├── LudicArts.com.url │ │ ├── Medium │ │ │ ├── attack.png │ │ │ ├── death.png │ │ │ ├── idle.png │ │ │ ├── jump.png │ │ │ ├── run.png │ │ │ ├── sliding.png │ │ │ └── walk.png │ │ └── help file - LudicArts.txt │ ├── cultist │ │ └── kultisti.png │ ├── demonic_weapons │ │ ├── demonic_bows │ │ │ ├── Bow 1 Animation │ │ │ │ ├── Bow-1.png │ │ │ │ ├── Bow-2.png │ │ │ │ ├── Bow-3.png │ │ │ │ ├── Bow-4.png │ │ │ │ ├── Bow-5.png │ │ │ │ ├── Bow-6.png │ │ │ │ ├── Bow-7.png │ │ │ │ └── Bow-8.png │ │ │ ├── Bow 2 Animation │ │ │ │ ├── Bow-1.png │ │ │ │ ├── Bow-2.png │ │ │ │ ├── Bow-3.png │ │ │ │ ├── Bow-4.png │ │ │ │ ├── Bow-5.png │ │ │ │ ├── Bow-6.png │ │ │ │ ├── Bow-7.png │ │ │ │ └── Bow-8.png │ │ │ ├── Demonic Bows.png │ │ │ └── Demonic Bows.psd │ │ └── demonic_weapons │ │ │ ├── Demonic Weapons.png │ │ │ └── Demonic Weapons.psd │ ├── disciple.bmp │ ├── disciple.png │ ├── metal_ledge.png │ ├── purple_marble.png │ ├── spawn.png │ ├── ui │ │ ├── main_menu │ │ │ └── exit.png │ │ ├── move.png │ │ └── red-x.png │ └── wooden_crate.png │ ├── items │ ├── black_sword.json │ └── demonic_bow.json │ ├── maps │ ├── castle.json │ ├── encampment.json │ └── output.json │ ├── numeric_properties.json │ ├── objects │ ├── character.json │ ├── cultist.json │ ├── door.json │ ├── drop.json │ ├── invisible_wall.json │ ├── mage-1.json │ ├── mage-2.json │ ├── mage-3.json │ ├── metal_ledge.json │ ├── static_joint.json │ ├── wooden_arrow.json │ └── wooden_crate.json │ ├── preload.json │ ├── sounds │ ├── arrow │ │ ├── hit_1.wav │ │ ├── hit_2.wav │ │ ├── hit_3.wav │ │ ├── hit_4.wav │ │ └── release_1.wav │ ├── bow │ │ ├── long.wav │ │ └── short.wav │ ├── melee │ │ ├── hit_inanimate.wav │ │ ├── swing_1.wav │ │ └── swing_2.wav │ └── sword │ │ ├── gash.wav │ │ ├── sword_hit_metal.wav │ │ ├── sword_hit_metal_light.wav │ │ └── sword_hit_sword.wav │ ├── ttf │ ├── OpenSans │ │ ├── Apache License.txt │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf │ └── calibri.ttf │ └── ui │ ├── character.json │ ├── creator │ ├── objects.json │ ├── tools.json │ └── walls.json │ ├── inventory.json │ └── main_menu.json ├── res_work ├── creator │ └── output.json └── images │ └── ui │ ├── main_menu │ └── exit.xcf │ ├── red-x.xcf │ └── spawn.xcf ├── saves ├── default.json └── one.json ├── settings ├── client.json ├── default │ ├── client.json │ ├── dynamics.json │ └── server.json ├── dynamics.json └── server.json ├── shellscripts └── outputto ├── src ├── Client.idr ├── Client │ ├── ClientCommands.idr │ ├── Input.idr │ ├── PClient.idr │ ├── Rendering.idr │ ├── Rendering │ │ ├── AnimationState.idr │ │ ├── Camera.idr │ │ ├── Info.idr │ │ ├── Layers.idr │ │ ├── PRendering.idr │ │ ├── PositionData.idr │ │ ├── RenderMethods.idr │ │ └── Transforms.idr │ ├── SDL.idr │ ├── SDL │ │ ├── PSDL.idr │ │ └── Points.idr │ ├── UI.idr │ └── UI │ │ ├── Character.idr │ │ ├── Inventory.idr │ │ └── PUI.idr ├── Commands.idr ├── Creator.idr ├── Creator │ ├── MapCreator.idr │ ├── MapCreator │ │ ├── MapCreatorControl.idr │ │ ├── PMapCreator.idr │ │ └── Tools.idr │ ├── MapCreatorUI.idr │ ├── MapCreatorUI │ │ └── PMapCreatorUI.idr │ ├── PCreator.idr │ ├── UI.idr │ └── UI │ │ └── ObjectsSurfaces.idr ├── CreatorMain.idr ├── Data │ └── AVL │ │ ├── DDict.idr │ │ └── SetRemove.idr ├── Descriptions.idr ├── Descriptions │ ├── AbilityDescription.idr │ ├── AnimationDescription.idr │ ├── BitsDescription.idr │ ├── Color.idr │ ├── FontDescription.idr │ ├── ItemDescription.idr │ ├── JointDescription.idr │ ├── MapDescription.idr │ ├── NumericPropertyRender.idr │ ├── ObjectDescription.idr │ ├── ObjectDescription │ │ ├── BodyDescription.idr │ │ ├── BodyFlags.idr │ │ ├── ControlDescription.idr │ │ ├── RenderDescription.idr │ │ ├── RulesDescription.idr │ │ └── RulesDescription │ │ │ ├── BehaviorDescription.idr │ │ │ └── RuleFlags.idr │ └── SurfaceDescription.idr ├── Dynamics.idr ├── Dynamics │ ├── BodyData.idr │ ├── DynamicsCommand.idr │ ├── DynamicsControl.idr │ ├── DynamicsEvent.idr │ ├── MoveDirection.idr │ ├── Movement.idr │ └── PDynamics.idr ├── Editor.idr ├── Editor │ └── PEditor.idr ├── EditorMain.idr ├── Exception.idr ├── GameIO.idr ├── JSONCache.idr ├── Main.idr ├── Objects.idr ├── Serializer.idr ├── Server.idr ├── Server │ ├── PServer.idr │ ├── Rules.idr │ └── Rules │ │ ├── Behavior.idr │ │ ├── NumericProperties.idr │ │ ├── PRules.idr │ │ ├── RuleScript.idr │ │ ├── RulesData.idr │ │ ├── RulesOutput.idr │ │ ├── Scripts.idr │ │ └── Scripts │ │ ├── AbilityScripts.idr │ │ ├── AttackScripts.idr │ │ ├── Basics.idr │ │ ├── BehaviorScripts.idr │ │ ├── Damage.idr │ │ ├── ItemsScripts.idr │ │ └── MovementScripts.idr ├── Settings.idr ├── Timeline.idr └── Timeline │ └── Items.idr └── windeps ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── SDL2_ttf.dll ├── libBox2D.dll ├── libFLAC-8.dll ├── libSDL2_gfx-1-0-0.dll ├── libbz2-1.dll ├── libfluidsynth-2.dll ├── libfreetype-6.dll ├── libgcc_s_seh-1.dll ├── libglib-2.0-0.dll ├── libgmodule-2.0-0.dll ├── libgmp-10.dll ├── libgraphite2.dll ├── libharfbuzz-0.dll ├── libiconv-2.dll ├── libintl-8.dll ├── libjpeg-8.dll ├── liblzma-5.dll ├── libmodplug-1.dll ├── libmpg123-0.dll ├── libogg-0.dll ├── libopus-0.dll ├── libopusfile-0.dll ├── libpcre-1.dll ├── libpng16-16.dll ├── libportaudio-2.dll ├── libreadline8.dll ├── libsndfile-1.dll ├── libspeex-1.dll ├── libstdc++-6.dll ├── libtermcap-0.dll ├── libtiff-5.dll ├── libvorbis-0.dll ├── libvorbisenc-2.dll ├── libvorbisfile-3.dll ├── libwebp-7.dll ├── libwinpthread-1.dll ├── libzstd.dll └── zlib1.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/CREDITS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/TODO.md -------------------------------------------------------------------------------- /calibri.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/calibri.ttf -------------------------------------------------------------------------------- /creator.ipkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/creator.ipkg -------------------------------------------------------------------------------- /doc/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/doc/Architecture.md -------------------------------------------------------------------------------- /editor.ipkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/editor.ipkg -------------------------------------------------------------------------------- /game.ipkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/game.ipkg -------------------------------------------------------------------------------- /res/main/animations/cultist-resting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/cultist-resting.json -------------------------------------------------------------------------------- /res/main/animations/cultist-walk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/cultist-walk.json -------------------------------------------------------------------------------- /res/main/animations/mage-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/mage-1.json -------------------------------------------------------------------------------- /res/main/animations/mage-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/mage-2.json -------------------------------------------------------------------------------- /res/main/animations/mage-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/mage-3.json -------------------------------------------------------------------------------- /res/main/animations/rest-large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/rest-large.json -------------------------------------------------------------------------------- /res/main/animations/rest-low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/rest-low.json -------------------------------------------------------------------------------- /res/main/animations/run-large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/run-large.json -------------------------------------------------------------------------------- /res/main/animations/run-low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/run-low.json -------------------------------------------------------------------------------- /res/main/animations/walk-large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/walk-large.json -------------------------------------------------------------------------------- /res/main/animations/walk-low.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/animations/walk-low.json -------------------------------------------------------------------------------- /res/main/behaviors/door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/behaviors/door.json -------------------------------------------------------------------------------- /res/main/behaviors/hold-chase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/behaviors/hold-chase.json -------------------------------------------------------------------------------- /res/main/behaviors/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/behaviors/loot.json -------------------------------------------------------------------------------- /res/main/behaviors/projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/behaviors/projectile.json -------------------------------------------------------------------------------- /res/main/behaviors/roam-chase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/behaviors/roam-chase.json -------------------------------------------------------------------------------- /res/main/fonts/inventory_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/fonts/inventory_count.json -------------------------------------------------------------------------------- /res/main/fonts/ui_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/fonts/ui_text.json -------------------------------------------------------------------------------- /res/main/fonts/ui_title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/fonts/ui_title.json -------------------------------------------------------------------------------- /res/main/images/BrightPurpleMarble_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/BrightPurpleMarble_256.png -------------------------------------------------------------------------------- /res/main/images/andromalius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius.png -------------------------------------------------------------------------------- /res/main/images/andromalius/acid2-14x67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/acid2-14x67.png -------------------------------------------------------------------------------- /res/main/images/andromalius/andromalius-57x88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/andromalius-57x88.png -------------------------------------------------------------------------------- /res/main/images/andromalius/disciple-45x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/disciple-45x51.png -------------------------------------------------------------------------------- /res/main/images/andromalius/flameball-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/flameball-32x32.png -------------------------------------------------------------------------------- /res/main/images/andromalius/gnu-120x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/gnu-120x100.png -------------------------------------------------------------------------------- /res/main/images/andromalius/mage-1-85x94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/mage-1-85x94.png -------------------------------------------------------------------------------- /res/main/images/andromalius/mage-2-122x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/mage-2-122x110.png -------------------------------------------------------------------------------- /res/main/images/andromalius/mage-3-87x110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/mage-3-87x110.png -------------------------------------------------------------------------------- /res/main/images/andromalius/mage-bullet-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/mage-bullet-13x13.png -------------------------------------------------------------------------------- /res/main/images/andromalius/minion-45x66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/minion-45x66.png -------------------------------------------------------------------------------- /res/main/images/andromalius/shadow-80x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/shadow-80x70.png -------------------------------------------------------------------------------- /res/main/images/andromalius/tentacles-25x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/andromalius/tentacles-25x90.png -------------------------------------------------------------------------------- /res/main/images/arrow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/arrow_1.png -------------------------------------------------------------------------------- /res/main/images/backgrounds/castle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/castle.jpg -------------------------------------------------------------------------------- /res/main/images/backgrounds/crossroads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/crossroads.png -------------------------------------------------------------------------------- /res/main/images/backgrounds/encampment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/encampment.png -------------------------------------------------------------------------------- /res/main/images/backgrounds/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/forest.png -------------------------------------------------------------------------------- /res/main/images/backgrounds/jungle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/jungle.bmp -------------------------------------------------------------------------------- /res/main/images/backgrounds/jungle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/jungle.jpg -------------------------------------------------------------------------------- /res/main/images/backgrounds/winter_fortress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/backgrounds/winter_fortress.png -------------------------------------------------------------------------------- /res/main/images/black_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/black_sword.png -------------------------------------------------------------------------------- /res/main/images/castledoors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/castledoors.png -------------------------------------------------------------------------------- /res/main/images/character/Large/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/attack.png -------------------------------------------------------------------------------- /res/main/images/character/Large/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/death.png -------------------------------------------------------------------------------- /res/main/images/character/Large/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/idle.png -------------------------------------------------------------------------------- /res/main/images/character/Large/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/jump.png -------------------------------------------------------------------------------- /res/main/images/character/Large/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/run.png -------------------------------------------------------------------------------- /res/main/images/character/Large/sliding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/sliding.png -------------------------------------------------------------------------------- /res/main/images/character/Large/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Large/walk.png -------------------------------------------------------------------------------- /res/main/images/character/Licence.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Licence.url -------------------------------------------------------------------------------- /res/main/images/character/Low/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/attack.png -------------------------------------------------------------------------------- /res/main/images/character/Low/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/death.png -------------------------------------------------------------------------------- /res/main/images/character/Low/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/idle.png -------------------------------------------------------------------------------- /res/main/images/character/Low/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/jump.png -------------------------------------------------------------------------------- /res/main/images/character/Low/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/run.png -------------------------------------------------------------------------------- /res/main/images/character/Low/sliding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/sliding.png -------------------------------------------------------------------------------- /res/main/images/character/Low/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Low/walk.png -------------------------------------------------------------------------------- /res/main/images/character/LudicArts.com.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/LudicArts.com.url -------------------------------------------------------------------------------- /res/main/images/character/Medium/attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/attack.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/death.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/idle.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/jump.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/run.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/sliding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/sliding.png -------------------------------------------------------------------------------- /res/main/images/character/Medium/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/Medium/walk.png -------------------------------------------------------------------------------- /res/main/images/character/help file - LudicArts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/character/help file - LudicArts.txt -------------------------------------------------------------------------------- /res/main/images/cultist/kultisti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/cultist/kultisti.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-1.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-2.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-3.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-4.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-5.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-6.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-7.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 1 Animation/Bow-8.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-1.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-2.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-3.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-4.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-5.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-6.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-7.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Bow 2 Animation/Bow-8.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Demonic Bows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Demonic Bows.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_bows/Demonic Bows.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_bows/Demonic Bows.psd -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_weapons/Demonic Weapons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_weapons/Demonic Weapons.png -------------------------------------------------------------------------------- /res/main/images/demonic_weapons/demonic_weapons/Demonic Weapons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/demonic_weapons/demonic_weapons/Demonic Weapons.psd -------------------------------------------------------------------------------- /res/main/images/disciple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/disciple.bmp -------------------------------------------------------------------------------- /res/main/images/disciple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/disciple.png -------------------------------------------------------------------------------- /res/main/images/metal_ledge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/metal_ledge.png -------------------------------------------------------------------------------- /res/main/images/purple_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/purple_marble.png -------------------------------------------------------------------------------- /res/main/images/spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/spawn.png -------------------------------------------------------------------------------- /res/main/images/ui/main_menu/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/ui/main_menu/exit.png -------------------------------------------------------------------------------- /res/main/images/ui/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/ui/move.png -------------------------------------------------------------------------------- /res/main/images/ui/red-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/ui/red-x.png -------------------------------------------------------------------------------- /res/main/images/wooden_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/images/wooden_crate.png -------------------------------------------------------------------------------- /res/main/items/black_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/items/black_sword.json -------------------------------------------------------------------------------- /res/main/items/demonic_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/items/demonic_bow.json -------------------------------------------------------------------------------- /res/main/maps/castle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/maps/castle.json -------------------------------------------------------------------------------- /res/main/maps/encampment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/maps/encampment.json -------------------------------------------------------------------------------- /res/main/maps/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/maps/output.json -------------------------------------------------------------------------------- /res/main/numeric_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/numeric_properties.json -------------------------------------------------------------------------------- /res/main/objects/character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/character.json -------------------------------------------------------------------------------- /res/main/objects/cultist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/cultist.json -------------------------------------------------------------------------------- /res/main/objects/door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/door.json -------------------------------------------------------------------------------- /res/main/objects/drop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/drop.json -------------------------------------------------------------------------------- /res/main/objects/invisible_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Wall" 3 | } 4 | -------------------------------------------------------------------------------- /res/main/objects/mage-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/mage-1.json -------------------------------------------------------------------------------- /res/main/objects/mage-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/mage-2.json -------------------------------------------------------------------------------- /res/main/objects/mage-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/mage-3.json -------------------------------------------------------------------------------- /res/main/objects/metal_ledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/metal_ledge.json -------------------------------------------------------------------------------- /res/main/objects/static_joint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/static_joint.json -------------------------------------------------------------------------------- /res/main/objects/wooden_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/wooden_arrow.json -------------------------------------------------------------------------------- /res/main/objects/wooden_crate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/objects/wooden_crate.json -------------------------------------------------------------------------------- /res/main/preload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/preload.json -------------------------------------------------------------------------------- /res/main/sounds/arrow/hit_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/arrow/hit_1.wav -------------------------------------------------------------------------------- /res/main/sounds/arrow/hit_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/arrow/hit_2.wav -------------------------------------------------------------------------------- /res/main/sounds/arrow/hit_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/arrow/hit_3.wav -------------------------------------------------------------------------------- /res/main/sounds/arrow/hit_4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/arrow/hit_4.wav -------------------------------------------------------------------------------- /res/main/sounds/arrow/release_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/arrow/release_1.wav -------------------------------------------------------------------------------- /res/main/sounds/bow/long.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/bow/long.wav -------------------------------------------------------------------------------- /res/main/sounds/bow/short.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/bow/short.wav -------------------------------------------------------------------------------- /res/main/sounds/melee/hit_inanimate.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/melee/hit_inanimate.wav -------------------------------------------------------------------------------- /res/main/sounds/melee/swing_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/melee/swing_1.wav -------------------------------------------------------------------------------- /res/main/sounds/melee/swing_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/melee/swing_2.wav -------------------------------------------------------------------------------- /res/main/sounds/sword/gash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/sword/gash.wav -------------------------------------------------------------------------------- /res/main/sounds/sword/sword_hit_metal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/sword/sword_hit_metal.wav -------------------------------------------------------------------------------- /res/main/sounds/sword/sword_hit_metal_light.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/sword/sword_hit_metal_light.wav -------------------------------------------------------------------------------- /res/main/sounds/sword/sword_hit_sword.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/sounds/sword/sword_hit_sword.wav -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/Apache License.txt -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /res/main/ttf/OpenSans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/OpenSans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /res/main/ttf/calibri.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ttf/calibri.ttf -------------------------------------------------------------------------------- /res/main/ui/character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/character.json -------------------------------------------------------------------------------- /res/main/ui/creator/objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/creator/objects.json -------------------------------------------------------------------------------- /res/main/ui/creator/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/creator/tools.json -------------------------------------------------------------------------------- /res/main/ui/creator/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/creator/walls.json -------------------------------------------------------------------------------- /res/main/ui/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/inventory.json -------------------------------------------------------------------------------- /res/main/ui/main_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res/main/ui/main_menu.json -------------------------------------------------------------------------------- /res_work/creator/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res_work/creator/output.json -------------------------------------------------------------------------------- /res_work/images/ui/main_menu/exit.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res_work/images/ui/main_menu/exit.xcf -------------------------------------------------------------------------------- /res_work/images/ui/red-x.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res_work/images/ui/red-x.xcf -------------------------------------------------------------------------------- /res_work/images/ui/spawn.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/res_work/images/ui/spawn.xcf -------------------------------------------------------------------------------- /saves/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/saves/default.json -------------------------------------------------------------------------------- /saves/one.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/saves/one.json -------------------------------------------------------------------------------- /settings/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/settings/client.json -------------------------------------------------------------------------------- /settings/default/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/settings/default/client.json -------------------------------------------------------------------------------- /settings/default/dynamics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/settings/default/dynamics.json -------------------------------------------------------------------------------- /settings/default/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "dummy": 0 3 | } 4 | -------------------------------------------------------------------------------- /settings/dynamics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/settings/dynamics.json -------------------------------------------------------------------------------- /settings/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/settings/server.json -------------------------------------------------------------------------------- /shellscripts/outputto: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | cp res_work/creator/output.json "$1" 3 | -------------------------------------------------------------------------------- /src/Client.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client.idr -------------------------------------------------------------------------------- /src/Client/ClientCommands.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/ClientCommands.idr -------------------------------------------------------------------------------- /src/Client/Input.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Input.idr -------------------------------------------------------------------------------- /src/Client/PClient.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/PClient.idr -------------------------------------------------------------------------------- /src/Client/Rendering.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering.idr -------------------------------------------------------------------------------- /src/Client/Rendering/AnimationState.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/AnimationState.idr -------------------------------------------------------------------------------- /src/Client/Rendering/Camera.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/Camera.idr -------------------------------------------------------------------------------- /src/Client/Rendering/Info.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/Info.idr -------------------------------------------------------------------------------- /src/Client/Rendering/Layers.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/Layers.idr -------------------------------------------------------------------------------- /src/Client/Rendering/PRendering.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/PRendering.idr -------------------------------------------------------------------------------- /src/Client/Rendering/PositionData.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/PositionData.idr -------------------------------------------------------------------------------- /src/Client/Rendering/RenderMethods.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/RenderMethods.idr -------------------------------------------------------------------------------- /src/Client/Rendering/Transforms.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/Rendering/Transforms.idr -------------------------------------------------------------------------------- /src/Client/SDL.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/SDL.idr -------------------------------------------------------------------------------- /src/Client/SDL/PSDL.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/SDL/PSDL.idr -------------------------------------------------------------------------------- /src/Client/SDL/Points.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/SDL/Points.idr -------------------------------------------------------------------------------- /src/Client/UI.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/UI.idr -------------------------------------------------------------------------------- /src/Client/UI/Character.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/UI/Character.idr -------------------------------------------------------------------------------- /src/Client/UI/Inventory.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/UI/Inventory.idr -------------------------------------------------------------------------------- /src/Client/UI/PUI.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Client/UI/PUI.idr -------------------------------------------------------------------------------- /src/Commands.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Commands.idr -------------------------------------------------------------------------------- /src/Creator.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator.idr -------------------------------------------------------------------------------- /src/Creator/MapCreator.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreator.idr -------------------------------------------------------------------------------- /src/Creator/MapCreator/MapCreatorControl.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreator/MapCreatorControl.idr -------------------------------------------------------------------------------- /src/Creator/MapCreator/PMapCreator.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreator/PMapCreator.idr -------------------------------------------------------------------------------- /src/Creator/MapCreator/Tools.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreator/Tools.idr -------------------------------------------------------------------------------- /src/Creator/MapCreatorUI.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreatorUI.idr -------------------------------------------------------------------------------- /src/Creator/MapCreatorUI/PMapCreatorUI.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/MapCreatorUI/PMapCreatorUI.idr -------------------------------------------------------------------------------- /src/Creator/PCreator.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/PCreator.idr -------------------------------------------------------------------------------- /src/Creator/UI.idr: -------------------------------------------------------------------------------- 1 | module Creator.UI 2 | -------------------------------------------------------------------------------- /src/Creator/UI/ObjectsSurfaces.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Creator/UI/ObjectsSurfaces.idr -------------------------------------------------------------------------------- /src/CreatorMain.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/CreatorMain.idr -------------------------------------------------------------------------------- /src/Data/AVL/DDict.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Data/AVL/DDict.idr -------------------------------------------------------------------------------- /src/Data/AVL/SetRemove.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Data/AVL/SetRemove.idr -------------------------------------------------------------------------------- /src/Descriptions.idr: -------------------------------------------------------------------------------- 1 | module Descriptions 2 | -------------------------------------------------------------------------------- /src/Descriptions/AbilityDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/AbilityDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/AnimationDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/AnimationDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/BitsDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/BitsDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/Color.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/Color.idr -------------------------------------------------------------------------------- /src/Descriptions/FontDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/FontDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ItemDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ItemDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/JointDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/JointDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/MapDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/MapDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/NumericPropertyRender.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/NumericPropertyRender.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/BodyDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/BodyDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/BodyFlags.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/BodyFlags.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/ControlDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/ControlDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/RenderDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/RenderDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/RulesDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/RulesDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/RulesDescription/BehaviorDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/RulesDescription/BehaviorDescription.idr -------------------------------------------------------------------------------- /src/Descriptions/ObjectDescription/RulesDescription/RuleFlags.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/ObjectDescription/RulesDescription/RuleFlags.idr -------------------------------------------------------------------------------- /src/Descriptions/SurfaceDescription.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Descriptions/SurfaceDescription.idr -------------------------------------------------------------------------------- /src/Dynamics.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics.idr -------------------------------------------------------------------------------- /src/Dynamics/BodyData.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/BodyData.idr -------------------------------------------------------------------------------- /src/Dynamics/DynamicsCommand.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/DynamicsCommand.idr -------------------------------------------------------------------------------- /src/Dynamics/DynamicsControl.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/DynamicsControl.idr -------------------------------------------------------------------------------- /src/Dynamics/DynamicsEvent.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/DynamicsEvent.idr -------------------------------------------------------------------------------- /src/Dynamics/MoveDirection.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/MoveDirection.idr -------------------------------------------------------------------------------- /src/Dynamics/Movement.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/Movement.idr -------------------------------------------------------------------------------- /src/Dynamics/PDynamics.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Dynamics/PDynamics.idr -------------------------------------------------------------------------------- /src/Editor.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Editor.idr -------------------------------------------------------------------------------- /src/Editor/PEditor.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Editor/PEditor.idr -------------------------------------------------------------------------------- /src/EditorMain.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/EditorMain.idr -------------------------------------------------------------------------------- /src/Exception.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Exception.idr -------------------------------------------------------------------------------- /src/GameIO.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/GameIO.idr -------------------------------------------------------------------------------- /src/JSONCache.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/JSONCache.idr -------------------------------------------------------------------------------- /src/Main.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Main.idr -------------------------------------------------------------------------------- /src/Objects.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Objects.idr -------------------------------------------------------------------------------- /src/Serializer.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Serializer.idr -------------------------------------------------------------------------------- /src/Server.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server.idr -------------------------------------------------------------------------------- /src/Server/PServer.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/PServer.idr -------------------------------------------------------------------------------- /src/Server/Rules.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules.idr -------------------------------------------------------------------------------- /src/Server/Rules/Behavior.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Behavior.idr -------------------------------------------------------------------------------- /src/Server/Rules/NumericProperties.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/NumericProperties.idr -------------------------------------------------------------------------------- /src/Server/Rules/PRules.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/PRules.idr -------------------------------------------------------------------------------- /src/Server/Rules/RuleScript.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/RuleScript.idr -------------------------------------------------------------------------------- /src/Server/Rules/RulesData.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/RulesData.idr -------------------------------------------------------------------------------- /src/Server/Rules/RulesOutput.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/RulesOutput.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/AbilityScripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/AbilityScripts.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/AttackScripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/AttackScripts.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/Basics.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/Basics.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/BehaviorScripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/BehaviorScripts.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/Damage.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/Damage.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/ItemsScripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/ItemsScripts.idr -------------------------------------------------------------------------------- /src/Server/Rules/Scripts/MovementScripts.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Server/Rules/Scripts/MovementScripts.idr -------------------------------------------------------------------------------- /src/Settings.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Settings.idr -------------------------------------------------------------------------------- /src/Timeline.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Timeline.idr -------------------------------------------------------------------------------- /src/Timeline/Items.idr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/src/Timeline/Items.idr -------------------------------------------------------------------------------- /windeps/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/SDL2.dll -------------------------------------------------------------------------------- /windeps/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/SDL2_image.dll -------------------------------------------------------------------------------- /windeps/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/SDL2_mixer.dll -------------------------------------------------------------------------------- /windeps/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/SDL2_ttf.dll -------------------------------------------------------------------------------- /windeps/libBox2D.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libBox2D.dll -------------------------------------------------------------------------------- /windeps/libFLAC-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libFLAC-8.dll -------------------------------------------------------------------------------- /windeps/libSDL2_gfx-1-0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libSDL2_gfx-1-0-0.dll -------------------------------------------------------------------------------- /windeps/libbz2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libbz2-1.dll -------------------------------------------------------------------------------- /windeps/libfluidsynth-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libfluidsynth-2.dll -------------------------------------------------------------------------------- /windeps/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libfreetype-6.dll -------------------------------------------------------------------------------- /windeps/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /windeps/libglib-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libglib-2.0-0.dll -------------------------------------------------------------------------------- /windeps/libgmodule-2.0-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libgmodule-2.0-0.dll -------------------------------------------------------------------------------- /windeps/libgmp-10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libgmp-10.dll -------------------------------------------------------------------------------- /windeps/libgraphite2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libgraphite2.dll -------------------------------------------------------------------------------- /windeps/libharfbuzz-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libharfbuzz-0.dll -------------------------------------------------------------------------------- /windeps/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libiconv-2.dll -------------------------------------------------------------------------------- /windeps/libintl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libintl-8.dll -------------------------------------------------------------------------------- /windeps/libjpeg-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libjpeg-8.dll -------------------------------------------------------------------------------- /windeps/liblzma-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/liblzma-5.dll -------------------------------------------------------------------------------- /windeps/libmodplug-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libmodplug-1.dll -------------------------------------------------------------------------------- /windeps/libmpg123-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libmpg123-0.dll -------------------------------------------------------------------------------- /windeps/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libogg-0.dll -------------------------------------------------------------------------------- /windeps/libopus-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libopus-0.dll -------------------------------------------------------------------------------- /windeps/libopusfile-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libopusfile-0.dll -------------------------------------------------------------------------------- /windeps/libpcre-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libpcre-1.dll -------------------------------------------------------------------------------- /windeps/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libpng16-16.dll -------------------------------------------------------------------------------- /windeps/libportaudio-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libportaudio-2.dll -------------------------------------------------------------------------------- /windeps/libreadline8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libreadline8.dll -------------------------------------------------------------------------------- /windeps/libsndfile-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libsndfile-1.dll -------------------------------------------------------------------------------- /windeps/libspeex-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libspeex-1.dll -------------------------------------------------------------------------------- /windeps/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libstdc++-6.dll -------------------------------------------------------------------------------- /windeps/libtermcap-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libtermcap-0.dll -------------------------------------------------------------------------------- /windeps/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libtiff-5.dll -------------------------------------------------------------------------------- /windeps/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libvorbis-0.dll -------------------------------------------------------------------------------- /windeps/libvorbisenc-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libvorbisenc-2.dll -------------------------------------------------------------------------------- /windeps/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libvorbisfile-3.dll -------------------------------------------------------------------------------- /windeps/libwebp-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libwebp-7.dll -------------------------------------------------------------------------------- /windeps/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libwinpthread-1.dll -------------------------------------------------------------------------------- /windeps/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/libzstd.dll -------------------------------------------------------------------------------- /windeps/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corazza/game-idris/HEAD/windeps/zlib1.dll --------------------------------------------------------------------------------