├── .appveyor.yml ├── .clang-format ├── .doozer.json ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── AUTHORS ├── CMakeLists.txt ├── COMPILING.md ├── CONTENT-LICENSE.txt ├── COPYING.txt ├── Data ├── Animations │ ├── BackFlip │ ├── BackHandspring │ ├── BlockHighLeft │ ├── BlockHighLeftStrike │ ├── Climb │ ├── Crouch │ ├── CrouchDrawRight │ ├── CrouchRemoveKnife │ ├── CrouchStab │ ├── Dead1 │ ├── Dead2 │ ├── Dead3 │ ├── Dead4 │ ├── DodgeBack │ ├── DrawLeft │ ├── DrawRight │ ├── DropKick │ ├── Dying │ ├── FightIdle │ ├── FightSideStep │ ├── Flip │ ├── GetUpFromBack │ ├── GetUpFromFront │ ├── HangOn │ ├── HurtIdle │ ├── Idle │ ├── JumpCatch │ ├── JumpCaught │ ├── JumpDown │ ├── JumpUp │ ├── Kill │ ├── KnifeFightIdle │ ├── KnifeSlashCatch │ ├── KnifeSlashCaught │ ├── KnifeSneakAttack │ ├── KnifeSneakAttacked │ ├── KnifeThrow │ ├── LandHard │ ├── Landing │ ├── LeftFlip │ ├── LowKick │ ├── RabbitKick │ ├── RabbitKickCatch │ ├── RabbitKickCaught │ ├── RabbitRunning │ ├── RabbitTackle │ ├── RabbitTackledBack │ ├── RabbitTackledFront │ ├── RabbitTackling │ ├── RemoveKnife │ ├── RightFlip │ ├── Roll │ ├── Run │ ├── Sit │ ├── SlashFollow │ ├── SlashFollowed │ ├── SlashStart │ ├── Sleep │ ├── Sneak │ ├── SneakAttack │ ├── SneakAttacked │ ├── SpinKick │ ├── SpinKickCatch │ ├── SpinKickCaught │ ├── SpinWhack │ ├── SpinWhackCatch │ ├── SpinWhackCaught │ ├── StaffGroundSmash │ ├── StaffHit │ ├── StaffHitCatch │ ├── StaffHitCaught │ ├── StaggerBackHard │ ├── StaggerBackHigh │ ├── Stop │ ├── Sweep │ ├── SweepCatch │ ├── SweepCaught │ ├── SwordFightIdle │ ├── SwordFightIdleBoth │ ├── SwordGroundStab │ ├── SwordSlash │ ├── SwordSlashCatch │ ├── SwordSlashCaught │ ├── SwordSlashParried │ ├── SwordSneakAttack │ ├── SwordSneakAttacked │ ├── SwordUprightParry │ ├── TalkIdle │ ├── Tempanim │ ├── Upunch │ ├── UpunchCatch │ ├── UpunchCaught │ ├── Walk │ ├── WallJumpBack │ ├── WallJumpFront │ ├── WallJumpLeft │ ├── WallJumpLeftKick │ ├── WallJumpRight │ ├── WallJumpRightKick │ ├── WindUpPunch │ ├── WindUpPunchBlocked │ ├── WolfCrouch │ ├── WolfIdle │ ├── WolfLandHard │ ├── WolfLanding │ ├── WolfRun │ ├── WolfRunning │ ├── WolfSlap │ └── WolfStop ├── Campaigns │ ├── empire.txt │ ├── main.txt │ ├── seventasks.txt │ └── temple.txt ├── Dialogues │ ├── Endgood.txt │ ├── Endharsh.txt │ ├── Example.txt │ ├── alphawolf.txt │ ├── ambush.txt │ ├── april.txt │ ├── april2.txt │ ├── clover.txt │ ├── clover2.txt │ ├── guard.txt │ ├── guards.txt │ ├── jack.txt │ ├── jack2.txt │ ├── jack3.txt │ ├── jack4.txt │ ├── jackguards.txt │ ├── king.txt │ ├── king2.txt │ ├── protest.txt │ ├── raidercamp.txt │ ├── raiderchief.txt │ ├── raiderguard.txt │ ├── raiders.txt │ ├── raiderscout.txt │ ├── raiderscout2.txt │ ├── skipper.txt │ ├── skipper2.txt │ ├── skipper3.txt │ ├── trixie.txt │ ├── trixie2.txt │ ├── turner.txt │ ├── turner10.txt │ ├── turner2.txt │ ├── turner3.txt │ ├── turner4.txt │ ├── turner5.txt │ ├── turner6.txt │ ├── turner7.txt │ ├── turner8.txt │ ├── turner81.txt │ ├── turner82.txt │ ├── turner9.txt │ └── wolfpatrol.txt ├── Maps │ ├── Lugaru1.json │ ├── Lugaru10.json │ ├── Lugaru11.json │ ├── Lugaru12.json │ ├── Lugaru13.json │ ├── Lugaru14.json │ ├── Lugaru15.json │ ├── Lugaru16.json │ ├── Lugaru17.json │ ├── Lugaru18.json │ ├── Lugaru19.json │ ├── Lugaru2.json │ ├── Lugaru20.json │ ├── Lugaru21.json │ ├── Lugaru22.json │ ├── Lugaru23.json │ ├── Lugaru24.json │ ├── Lugaru25.json │ ├── Lugaru26.json │ ├── Lugaru27.json │ ├── Lugaru28.json │ ├── Lugaru29.json │ ├── Lugaru3.json │ ├── Lugaru30.json │ ├── Lugaru31.json │ ├── Lugaru4.json │ ├── Lugaru5.json │ ├── Lugaru6.json │ ├── Lugaru7.json │ ├── Lugaru8.json │ ├── Lugaru9.json │ ├── jendraz1.json │ ├── jendraz10.json │ ├── jendraz11.json │ ├── jendraz12.json │ ├── jendraz13.json │ ├── jendraz14.json │ ├── jendraz15.json │ ├── jendraz16.json │ ├── jendraz17.json │ ├── jendraz18.json │ ├── jendraz19.json │ ├── jendraz2.json │ ├── jendraz20.json │ ├── jendraz21.json │ ├── jendraz22.json │ ├── jendraz23.json │ ├── jendraz24.json │ ├── jendraz25.json │ ├── jendraz26.json │ ├── jendraz27.json │ ├── jendraz28.json │ ├── jendraz29.json │ ├── jendraz3.json │ ├── jendraz30.json │ ├── jendraz31.json │ ├── jendraz32.json │ ├── jendraz33.json │ ├── jendraz34.json │ ├── jendraz35.json │ ├── jendraz36.json │ ├── jendraz37.json │ ├── jendraz38.json │ ├── jendraz39.json │ ├── jendraz4.json │ ├── jendraz40.json │ ├── jendraz41.json │ ├── jendraz5.json │ ├── jendraz6.json │ ├── jendraz7.json │ ├── jendraz8.json │ ├── jendraz9.json │ ├── map1.json │ ├── map10.json │ ├── map11.json │ ├── map12.json │ ├── map13.json │ ├── map14.json │ ├── map2.json │ ├── map3.json │ ├── map4.json │ ├── map5.json │ ├── map6.json │ ├── map7.json │ ├── map8.json │ ├── map9.json │ ├── svenalpha.json │ ├── svencanyon.json │ ├── svenchasm.json │ ├── svenclimb.json │ ├── svencouncil.json │ ├── svendawn.json │ ├── svendecoy.json │ ├── svendefend.json │ ├── svendoor.json │ ├── svenearl.json │ ├── svenfireice.json │ ├── svenforest.json │ ├── svenfort.json │ ├── svengrotto.json │ ├── svenheaven.json │ ├── svenmeeting.json │ ├── svenninja.json │ ├── svenninjabefore.json │ ├── svenredbw.json │ ├── svenredbw2.json │ ├── svenredbw3.json │ ├── svenredbw4.json │ ├── svenredbw5.json │ ├── svenredbwafter.json │ ├── svenroad.json │ ├── svenruins.json │ ├── svenshan.json │ ├── svenskip.json │ ├── svensthwrong.json │ ├── sventemple.json │ ├── sventemple2.json │ ├── sventhrone.json │ ├── task1.json │ ├── task10.json │ ├── task11.json │ ├── task12.json │ ├── task13.json │ ├── task14.json │ ├── task15.json │ ├── task16.json │ ├── task17.json │ ├── task18.json │ ├── task2.json │ ├── task3.json │ ├── task4.json │ ├── task5.json │ ├── task6.json │ ├── task7.json │ ├── task8.json │ ├── task9.json │ └── tutorial.json ├── Models │ ├── Belt.solid │ ├── Body.solid │ ├── Body2.solid │ ├── Body3.solid │ ├── Body4.solid │ ├── Body5.solid │ ├── Body6.solid │ ├── Body7.solid │ ├── BodyLow.solid │ ├── Box.solid │ ├── Bush.solid │ ├── Chimney.solid │ ├── Cool.solid │ ├── Cornea.solid │ ├── Eye.solid │ ├── Hawk.solid │ ├── Iris.solid │ ├── Leaves.solid │ ├── Platform.solid │ ├── Rabbit.solid │ ├── Rock.solid │ ├── Spike.solid │ ├── Staff.solid │ ├── Sword.solid │ ├── ThrowingKnife.solid │ ├── TreeTrunk.solid │ ├── Tunnel.solid │ ├── Wall.solid │ ├── Weird.solid │ ├── Wolf.solid │ ├── Wolf2.solid │ ├── Wolf3.solid │ ├── Wolf4.solid │ ├── Wolf5.solid │ ├── Wolf6.solid │ ├── Wolf7.solid │ └── WolfLow.solid ├── Skeleton │ ├── BasicFigure │ ├── BasicFigureLow │ ├── BasicFigureWolf │ ├── BasicFigureWolfLow │ └── RabbitBelt ├── Sounds │ ├── Alarm.ogg │ ├── Bark.ogg │ ├── Bark2.ogg │ ├── Bark3.ogg │ ├── BarkGrowl.ogg │ ├── Break.ogg │ ├── Broken.ogg │ ├── BushRustle.ogg │ ├── Clank1.ogg │ ├── Clank2.ogg │ ├── Clank3.ogg │ ├── Clank4.ogg │ ├── ClawSlice.ogg │ ├── ConsoleFail.ogg │ ├── ConsoleSuccess.ogg │ ├── DesertAmbient.ogg │ ├── Fire.ogg │ ├── FireEnd.ogg │ ├── FireStart.ogg │ ├── FleshStab.ogg │ ├── FleshStabRemove.ogg │ ├── FootStepGrass1.ogg │ ├── FootStepGrass2.ogg │ ├── FootStepSnow1.ogg │ ├── FootStepSnow2.ogg │ ├── FootStepStone1.ogg │ ├── FootStepStone2.ogg │ ├── Growl.ogg │ ├── Growl2.ogg │ ├── Hawk.ogg │ ├── HeavyImpact.ogg │ ├── HighWhoosh.ogg │ ├── Jump.ogg │ ├── KnifeDraw.ogg │ ├── KnifeSheathe.ogg │ ├── KnifeSlice.ogg │ ├── KnifeSwish.ogg │ ├── Land.ogg │ ├── Land1.ogg │ ├── Land2.ogg │ ├── LowWhoosh.ogg │ ├── MetalHit.ogg │ ├── MidWhoosh.ogg │ ├── MoveWhoosh.ogg │ ├── Music1Desert.ogg │ ├── Music1Grass.ogg │ ├── Music1Snow.ogg │ ├── Music2.ogg │ ├── Music3.ogg │ ├── RabbitAttack.ogg │ ├── RabbitAttack2.ogg │ ├── RabbitAttack3.ogg │ ├── RabbitAttack4.ogg │ ├── RabbitChitter.ogg │ ├── RabbitChitter2.ogg │ ├── RabbitPain.ogg │ ├── RabbitPain2.ogg │ ├── Skid.ogg │ ├── Snarl.ogg │ ├── Snarl2.ogg │ ├── SnowSkid.ogg │ ├── Splatter.ogg │ ├── StaffBody.ogg │ ├── StaffBreak.ogg │ ├── StaffHead.ogg │ ├── SwordSlice.ogg │ ├── SwordStaff.ogg │ ├── Thud.ogg │ ├── Whoosh.ogg │ ├── WhooshHit.ogg │ └── Wind.ogg └── Textures │ ├── Belt.png │ ├── Blood.png │ ├── BloodApril.png │ ├── BloodClover.png │ ├── BloodFlame.png │ ├── BloodFur.png │ ├── BloodJack.png │ ├── BloodKnife.png │ ├── BloodKnifeLight.png │ ├── BloodParticle.png │ ├── BloodParticleInverse.png │ ├── BloodTrixie.png │ ├── Bodyprint.png │ ├── Boulder.jpg │ ├── BoulderDesert.jpg │ ├── BoulderSnow.jpg │ ├── Break.png │ ├── Bush.png │ ├── BushDesert.png │ ├── BushSnow.png │ ├── ClFeng.png │ ├── ClHuo.png │ ├── ClShan.png │ ├── ClShui.png │ ├── Cloud.png │ ├── CloudImpact.png │ ├── Cursor.png │ ├── DesertBox.jpg │ ├── DesertCl.png │ ├── DesertTree.png │ ├── EarWrap.png │ ├── EndGame.png │ ├── Eyelid.png │ ├── FancyPants.png │ ├── FancyPantsCamo.png │ ├── FancyPantsCamoArctic.png │ ├── FancyPantsCamoDesert.png │ ├── Fire.jpg │ ├── Flame.png │ ├── Font.png │ ├── FontMono.png │ ├── FootWrap.png │ ├── Footprint.png │ ├── FootprintSand.png │ ├── Fur.jpg │ ├── Fur2.png │ ├── FurBlack.jpg │ ├── FurBlackWhite.jpg │ ├── FurBrown.jpg │ ├── FurBrownWhite.jpg │ ├── FurChocolate.jpg │ ├── FurDarko.jpg │ ├── FurDavid.jpg │ ├── FurLynx.jpg │ ├── FurOpal.jpg │ ├── FurOtter.jpg │ ├── FurSable.jpg │ ├── FurWhite.jpg │ ├── FurWolfDark.jpg │ ├── FurWolfGrey.jpg │ ├── FurWolfLizard.jpg │ ├── FurWolfSnow.jpg │ ├── Gi.png │ ├── GiBottom.png │ ├── GiTeared.png │ ├── GiTop.png │ ├── GrassBox.jpg │ ├── GrassDirt.jpg │ ├── GrassDirt2.jpg │ ├── Hawk.png │ ├── HeadBand.png │ ├── HeightMap.png │ ├── Knife.png │ ├── Leaf.png │ ├── LeatherArmor.png │ ├── LeatherPants.png │ ├── LeatherWristLeft.png │ ├── LeatherWristRight.png │ ├── Logo.png │ ├── LongSleeve.png │ ├── Lugaru.png │ ├── MapArrow.png │ ├── MapBox.png │ ├── MapCircle.png │ ├── Mask.png │ ├── MossRock.jpg │ ├── NewGame.png │ ├── Options.png │ ├── Pants.png │ ├── Quit.png │ ├── Resume.png │ ├── Rock.jpg │ ├── Rock2.jpg │ ├── Sand.jpg │ ├── SandSlope.jpg │ ├── Scar.png │ ├── Shadow.png │ ├── Shine.png │ ├── Shirt.png │ ├── ShirtFemale.png │ ├── Skybox(grass) │ ├── Back.jpg │ ├── Down.jpg │ ├── Front.jpg │ ├── Left.jpg │ ├── Right.jpg │ └── Up.jpg │ ├── Skybox(sand) │ ├── Back.jpg │ ├── Down.jpg │ ├── Front.jpg │ ├── Left.jpg │ ├── Right.jpg │ └── Up.jpg │ ├── Skybox(snow) │ ├── Back.jpg │ ├── Down.jpg │ ├── Front.jpg │ ├── Left.jpg │ ├── Right.jpg │ └── Up.jpg │ ├── Smoke.png │ ├── Snow.jpg │ ├── Snow.png │ ├── SnowBox.jpg │ ├── SnowFlake.png │ ├── SnowTree.png │ ├── Splinter.png │ ├── Staff.jpg │ ├── Sword.jpg │ ├── SwordBlood.jpg │ ├── SwordBloodLight.jpg │ ├── Tooth.png │ ├── Tree.png │ ├── Wireframe.jpg │ ├── WolfBloodFur.png │ ├── World.png │ ├── empire │ └── World.png │ └── temple │ └── World.png ├── Dist ├── Linux │ ├── lugaru.6 │ ├── lugaru.desktop │ ├── lugaru.metainfo.xml │ └── lugaru.png ├── OSX │ ├── Info.plist │ └── Lugaru.icns └── Windows │ └── Lugaru.ico ├── Docs ├── DEVTOOLS.txt ├── README.Empire.txt ├── README.SevenTasks.txt └── README.Temple.txt ├── Misc ├── fix-hardcoded-hex-paths.sh ├── list-hardcoded-paths-fixes.txt └── lugaru-icon.psd ├── README.md ├── RELEASE-NOTES.md └── Source ├── Animation ├── Animation.cpp ├── Animation.def ├── Animation.hpp ├── Joint.cpp ├── Joint.hpp ├── Muscle.cpp ├── Muscle.hpp ├── Skeleton.cpp └── Skeleton.hpp ├── Audio ├── Sounds.cpp ├── Sounds.def ├── Sounds.hpp ├── openal_wrapper.cpp └── openal_wrapper.hpp ├── Devtools ├── ConsoleCmds.cpp ├── ConsoleCmds.def └── ConsoleCmds.hpp ├── Environment ├── Lights.cpp ├── Lights.hpp ├── Skybox.cpp ├── Skybox.hpp ├── Terrain.cpp └── Terrain.hpp ├── Game.cpp ├── Game.hpp ├── GameDraw.cpp ├── GameInitDispose.cpp ├── GameTick.cpp ├── Globals.cpp ├── Graphic ├── Decal.cpp ├── Decal.hpp ├── Models.cpp ├── Models.hpp ├── Sprite.cpp ├── Sprite.hpp ├── Stereo.cpp ├── Stereo.hpp ├── Text.cpp ├── Text.hpp ├── Texture.cpp ├── Texture.hpp └── gamegl.hpp ├── Level ├── Awards.cpp ├── Awards.def ├── Awards.hpp ├── Bonuses.def ├── Campaign.cpp ├── Campaign.hpp ├── Dialog.cpp ├── Dialog.hpp ├── Hotspot.cpp └── Hotspot.hpp ├── Lugaru.rc ├── Math ├── Frustum.cpp ├── Frustum.hpp ├── Random.hpp ├── XYZ.cpp └── XYZ.hpp ├── Menu ├── Menu.cpp └── Menu.hpp ├── Objects ├── Object.cpp ├── Object.hpp ├── Person.cpp ├── Person.hpp ├── PersonType.cpp ├── PersonType.hpp ├── Weapons.cpp └── Weapons.hpp ├── Platform ├── Platform.hpp ├── PlatformUnix.cpp └── PlatformWindows.cpp ├── Thirdparty └── optionparser.h ├── Tutorial.cpp ├── Tutorial.hpp ├── User ├── Account.cpp ├── Account.hpp ├── Settings.cpp └── Settings.hpp ├── Utils ├── Folders.cpp ├── Folders.hpp ├── ImageIO.cpp ├── ImageIO.hpp ├── Input.cpp ├── Input.hpp ├── binio.h ├── pack.c ├── private.c ├── private.h └── unpack.c ├── Version.hpp.in └── main.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.clang-format -------------------------------------------------------------------------------- /.doozer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.doozer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COMPILING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/COMPILING.md -------------------------------------------------------------------------------- /CONTENT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/CONTENT-LICENSE.txt -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/COPYING.txt -------------------------------------------------------------------------------- /Data/Animations/BackFlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/BackFlip -------------------------------------------------------------------------------- /Data/Animations/BackHandspring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/BackHandspring -------------------------------------------------------------------------------- /Data/Animations/BlockHighLeft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/BlockHighLeft -------------------------------------------------------------------------------- /Data/Animations/BlockHighLeftStrike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/BlockHighLeftStrike -------------------------------------------------------------------------------- /Data/Animations/Climb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Climb -------------------------------------------------------------------------------- /Data/Animations/Crouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Crouch -------------------------------------------------------------------------------- /Data/Animations/CrouchDrawRight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/CrouchDrawRight -------------------------------------------------------------------------------- /Data/Animations/CrouchRemoveKnife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/CrouchRemoveKnife -------------------------------------------------------------------------------- /Data/Animations/CrouchStab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/CrouchStab -------------------------------------------------------------------------------- /Data/Animations/Dead1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Dead1 -------------------------------------------------------------------------------- /Data/Animations/Dead2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Dead2 -------------------------------------------------------------------------------- /Data/Animations/Dead3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Dead3 -------------------------------------------------------------------------------- /Data/Animations/Dead4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Dead4 -------------------------------------------------------------------------------- /Data/Animations/DodgeBack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/DodgeBack -------------------------------------------------------------------------------- /Data/Animations/DrawLeft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/DrawLeft -------------------------------------------------------------------------------- /Data/Animations/DrawRight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/DrawRight -------------------------------------------------------------------------------- /Data/Animations/DropKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/DropKick -------------------------------------------------------------------------------- /Data/Animations/Dying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Dying -------------------------------------------------------------------------------- /Data/Animations/FightIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/FightIdle -------------------------------------------------------------------------------- /Data/Animations/FightSideStep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/FightSideStep -------------------------------------------------------------------------------- /Data/Animations/Flip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Flip -------------------------------------------------------------------------------- /Data/Animations/GetUpFromBack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/GetUpFromBack -------------------------------------------------------------------------------- /Data/Animations/GetUpFromFront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/GetUpFromFront -------------------------------------------------------------------------------- /Data/Animations/HangOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/HangOn -------------------------------------------------------------------------------- /Data/Animations/HurtIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/HurtIdle -------------------------------------------------------------------------------- /Data/Animations/Idle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Idle -------------------------------------------------------------------------------- /Data/Animations/JumpCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/JumpCatch -------------------------------------------------------------------------------- /Data/Animations/JumpCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/JumpCaught -------------------------------------------------------------------------------- /Data/Animations/JumpDown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/JumpDown -------------------------------------------------------------------------------- /Data/Animations/JumpUp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/JumpUp -------------------------------------------------------------------------------- /Data/Animations/Kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Kill -------------------------------------------------------------------------------- /Data/Animations/KnifeFightIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeFightIdle -------------------------------------------------------------------------------- /Data/Animations/KnifeSlashCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeSlashCatch -------------------------------------------------------------------------------- /Data/Animations/KnifeSlashCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeSlashCaught -------------------------------------------------------------------------------- /Data/Animations/KnifeSneakAttack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeSneakAttack -------------------------------------------------------------------------------- /Data/Animations/KnifeSneakAttacked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeSneakAttacked -------------------------------------------------------------------------------- /Data/Animations/KnifeThrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/KnifeThrow -------------------------------------------------------------------------------- /Data/Animations/LandHard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/LandHard -------------------------------------------------------------------------------- /Data/Animations/Landing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Landing -------------------------------------------------------------------------------- /Data/Animations/LeftFlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/LeftFlip -------------------------------------------------------------------------------- /Data/Animations/LowKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/LowKick -------------------------------------------------------------------------------- /Data/Animations/RabbitKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitKick -------------------------------------------------------------------------------- /Data/Animations/RabbitKickCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitKickCatch -------------------------------------------------------------------------------- /Data/Animations/RabbitKickCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitKickCaught -------------------------------------------------------------------------------- /Data/Animations/RabbitRunning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitRunning -------------------------------------------------------------------------------- /Data/Animations/RabbitTackle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitTackle -------------------------------------------------------------------------------- /Data/Animations/RabbitTackledBack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitTackledBack -------------------------------------------------------------------------------- /Data/Animations/RabbitTackledFront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitTackledFront -------------------------------------------------------------------------------- /Data/Animations/RabbitTackling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RabbitTackling -------------------------------------------------------------------------------- /Data/Animations/RemoveKnife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RemoveKnife -------------------------------------------------------------------------------- /Data/Animations/RightFlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/RightFlip -------------------------------------------------------------------------------- /Data/Animations/Roll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Roll -------------------------------------------------------------------------------- /Data/Animations/Run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Run -------------------------------------------------------------------------------- /Data/Animations/Sit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Sit -------------------------------------------------------------------------------- /Data/Animations/SlashFollow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SlashFollow -------------------------------------------------------------------------------- /Data/Animations/SlashFollowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SlashFollowed -------------------------------------------------------------------------------- /Data/Animations/SlashStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SlashStart -------------------------------------------------------------------------------- /Data/Animations/Sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Sleep -------------------------------------------------------------------------------- /Data/Animations/Sneak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Sneak -------------------------------------------------------------------------------- /Data/Animations/SneakAttack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SneakAttack -------------------------------------------------------------------------------- /Data/Animations/SneakAttacked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SneakAttacked -------------------------------------------------------------------------------- /Data/Animations/SpinKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinKick -------------------------------------------------------------------------------- /Data/Animations/SpinKickCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinKickCatch -------------------------------------------------------------------------------- /Data/Animations/SpinKickCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinKickCaught -------------------------------------------------------------------------------- /Data/Animations/SpinWhack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinWhack -------------------------------------------------------------------------------- /Data/Animations/SpinWhackCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinWhackCatch -------------------------------------------------------------------------------- /Data/Animations/SpinWhackCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SpinWhackCaught -------------------------------------------------------------------------------- /Data/Animations/StaffGroundSmash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaffGroundSmash -------------------------------------------------------------------------------- /Data/Animations/StaffHit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaffHit -------------------------------------------------------------------------------- /Data/Animations/StaffHitCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaffHitCatch -------------------------------------------------------------------------------- /Data/Animations/StaffHitCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaffHitCaught -------------------------------------------------------------------------------- /Data/Animations/StaggerBackHard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaggerBackHard -------------------------------------------------------------------------------- /Data/Animations/StaggerBackHigh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/StaggerBackHigh -------------------------------------------------------------------------------- /Data/Animations/Stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Stop -------------------------------------------------------------------------------- /Data/Animations/Sweep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Sweep -------------------------------------------------------------------------------- /Data/Animations/SweepCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SweepCatch -------------------------------------------------------------------------------- /Data/Animations/SweepCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SweepCaught -------------------------------------------------------------------------------- /Data/Animations/SwordFightIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordFightIdle -------------------------------------------------------------------------------- /Data/Animations/SwordFightIdleBoth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordFightIdleBoth -------------------------------------------------------------------------------- /Data/Animations/SwordGroundStab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordGroundStab -------------------------------------------------------------------------------- /Data/Animations/SwordSlash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSlash -------------------------------------------------------------------------------- /Data/Animations/SwordSlashCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSlashCatch -------------------------------------------------------------------------------- /Data/Animations/SwordSlashCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSlashCaught -------------------------------------------------------------------------------- /Data/Animations/SwordSlashParried: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSlashParried -------------------------------------------------------------------------------- /Data/Animations/SwordSneakAttack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSneakAttack -------------------------------------------------------------------------------- /Data/Animations/SwordSneakAttacked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordSneakAttacked -------------------------------------------------------------------------------- /Data/Animations/SwordUprightParry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/SwordUprightParry -------------------------------------------------------------------------------- /Data/Animations/TalkIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/TalkIdle -------------------------------------------------------------------------------- /Data/Animations/Tempanim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Tempanim -------------------------------------------------------------------------------- /Data/Animations/Upunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Upunch -------------------------------------------------------------------------------- /Data/Animations/UpunchCatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/UpunchCatch -------------------------------------------------------------------------------- /Data/Animations/UpunchCaught: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/UpunchCaught -------------------------------------------------------------------------------- /Data/Animations/Walk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/Walk -------------------------------------------------------------------------------- /Data/Animations/WallJumpBack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpBack -------------------------------------------------------------------------------- /Data/Animations/WallJumpFront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpFront -------------------------------------------------------------------------------- /Data/Animations/WallJumpLeft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpLeft -------------------------------------------------------------------------------- /Data/Animations/WallJumpLeftKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpLeftKick -------------------------------------------------------------------------------- /Data/Animations/WallJumpRight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpRight -------------------------------------------------------------------------------- /Data/Animations/WallJumpRightKick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WallJumpRightKick -------------------------------------------------------------------------------- /Data/Animations/WindUpPunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WindUpPunch -------------------------------------------------------------------------------- /Data/Animations/WindUpPunchBlocked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WindUpPunchBlocked -------------------------------------------------------------------------------- /Data/Animations/WolfCrouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfCrouch -------------------------------------------------------------------------------- /Data/Animations/WolfIdle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfIdle -------------------------------------------------------------------------------- /Data/Animations/WolfLandHard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfLandHard -------------------------------------------------------------------------------- /Data/Animations/WolfLanding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfLanding -------------------------------------------------------------------------------- /Data/Animations/WolfRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfRun -------------------------------------------------------------------------------- /Data/Animations/WolfRunning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfRunning -------------------------------------------------------------------------------- /Data/Animations/WolfSlap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfSlap -------------------------------------------------------------------------------- /Data/Animations/WolfStop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Animations/WolfStop -------------------------------------------------------------------------------- /Data/Campaigns/empire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Campaigns/empire.txt -------------------------------------------------------------------------------- /Data/Campaigns/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Campaigns/main.txt -------------------------------------------------------------------------------- /Data/Campaigns/seventasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Campaigns/seventasks.txt -------------------------------------------------------------------------------- /Data/Campaigns/temple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Campaigns/temple.txt -------------------------------------------------------------------------------- /Data/Dialogues/Endgood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/Endgood.txt -------------------------------------------------------------------------------- /Data/Dialogues/Endharsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/Endharsh.txt -------------------------------------------------------------------------------- /Data/Dialogues/Example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/Example.txt -------------------------------------------------------------------------------- /Data/Dialogues/alphawolf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/alphawolf.txt -------------------------------------------------------------------------------- /Data/Dialogues/ambush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/ambush.txt -------------------------------------------------------------------------------- /Data/Dialogues/april.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/april.txt -------------------------------------------------------------------------------- /Data/Dialogues/april2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/april2.txt -------------------------------------------------------------------------------- /Data/Dialogues/clover.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/clover.txt -------------------------------------------------------------------------------- /Data/Dialogues/clover2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/clover2.txt -------------------------------------------------------------------------------- /Data/Dialogues/guard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/guard.txt -------------------------------------------------------------------------------- /Data/Dialogues/guards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/guards.txt -------------------------------------------------------------------------------- /Data/Dialogues/jack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/jack.txt -------------------------------------------------------------------------------- /Data/Dialogues/jack2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/jack2.txt -------------------------------------------------------------------------------- /Data/Dialogues/jack3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/jack3.txt -------------------------------------------------------------------------------- /Data/Dialogues/jack4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/jack4.txt -------------------------------------------------------------------------------- /Data/Dialogues/jackguards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/jackguards.txt -------------------------------------------------------------------------------- /Data/Dialogues/king.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/king.txt -------------------------------------------------------------------------------- /Data/Dialogues/king2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/king2.txt -------------------------------------------------------------------------------- /Data/Dialogues/protest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/protest.txt -------------------------------------------------------------------------------- /Data/Dialogues/raidercamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raidercamp.txt -------------------------------------------------------------------------------- /Data/Dialogues/raiderchief.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raiderchief.txt -------------------------------------------------------------------------------- /Data/Dialogues/raiderguard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raiderguard.txt -------------------------------------------------------------------------------- /Data/Dialogues/raiders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raiders.txt -------------------------------------------------------------------------------- /Data/Dialogues/raiderscout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raiderscout.txt -------------------------------------------------------------------------------- /Data/Dialogues/raiderscout2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/raiderscout2.txt -------------------------------------------------------------------------------- /Data/Dialogues/skipper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/skipper.txt -------------------------------------------------------------------------------- /Data/Dialogues/skipper2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/skipper2.txt -------------------------------------------------------------------------------- /Data/Dialogues/skipper3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/skipper3.txt -------------------------------------------------------------------------------- /Data/Dialogues/trixie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/trixie.txt -------------------------------------------------------------------------------- /Data/Dialogues/trixie2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/trixie2.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner10.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner2.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner3.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner4.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner5.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner6.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner7.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner8.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner81.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner82.txt -------------------------------------------------------------------------------- /Data/Dialogues/turner9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/turner9.txt -------------------------------------------------------------------------------- /Data/Dialogues/wolfpatrol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Dialogues/wolfpatrol.txt -------------------------------------------------------------------------------- /Data/Maps/Lugaru1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru1.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru10.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru11.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru12.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru13.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru14.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru15.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru16.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru17.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru18.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru19.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru2.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru20.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru21.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru22.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru23.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru24.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru25.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru26.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru27.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru28.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru29.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru3.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru30.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru31.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru4.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru5.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru6.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru7.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru8.json -------------------------------------------------------------------------------- /Data/Maps/Lugaru9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/Lugaru9.json -------------------------------------------------------------------------------- /Data/Maps/jendraz1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz1.json -------------------------------------------------------------------------------- /Data/Maps/jendraz10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz10.json -------------------------------------------------------------------------------- /Data/Maps/jendraz11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz11.json -------------------------------------------------------------------------------- /Data/Maps/jendraz12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz12.json -------------------------------------------------------------------------------- /Data/Maps/jendraz13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz13.json -------------------------------------------------------------------------------- /Data/Maps/jendraz14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz14.json -------------------------------------------------------------------------------- /Data/Maps/jendraz15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz15.json -------------------------------------------------------------------------------- /Data/Maps/jendraz16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz16.json -------------------------------------------------------------------------------- /Data/Maps/jendraz17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz17.json -------------------------------------------------------------------------------- /Data/Maps/jendraz18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz18.json -------------------------------------------------------------------------------- /Data/Maps/jendraz19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz19.json -------------------------------------------------------------------------------- /Data/Maps/jendraz2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz2.json -------------------------------------------------------------------------------- /Data/Maps/jendraz20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz20.json -------------------------------------------------------------------------------- /Data/Maps/jendraz21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz21.json -------------------------------------------------------------------------------- /Data/Maps/jendraz22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz22.json -------------------------------------------------------------------------------- /Data/Maps/jendraz23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz23.json -------------------------------------------------------------------------------- /Data/Maps/jendraz24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz24.json -------------------------------------------------------------------------------- /Data/Maps/jendraz25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz25.json -------------------------------------------------------------------------------- /Data/Maps/jendraz26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz26.json -------------------------------------------------------------------------------- /Data/Maps/jendraz27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz27.json -------------------------------------------------------------------------------- /Data/Maps/jendraz28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz28.json -------------------------------------------------------------------------------- /Data/Maps/jendraz29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz29.json -------------------------------------------------------------------------------- /Data/Maps/jendraz3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz3.json -------------------------------------------------------------------------------- /Data/Maps/jendraz30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz30.json -------------------------------------------------------------------------------- /Data/Maps/jendraz31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz31.json -------------------------------------------------------------------------------- /Data/Maps/jendraz32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz32.json -------------------------------------------------------------------------------- /Data/Maps/jendraz33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz33.json -------------------------------------------------------------------------------- /Data/Maps/jendraz34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz34.json -------------------------------------------------------------------------------- /Data/Maps/jendraz35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz35.json -------------------------------------------------------------------------------- /Data/Maps/jendraz36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz36.json -------------------------------------------------------------------------------- /Data/Maps/jendraz37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz37.json -------------------------------------------------------------------------------- /Data/Maps/jendraz38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz38.json -------------------------------------------------------------------------------- /Data/Maps/jendraz39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz39.json -------------------------------------------------------------------------------- /Data/Maps/jendraz4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz4.json -------------------------------------------------------------------------------- /Data/Maps/jendraz40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz40.json -------------------------------------------------------------------------------- /Data/Maps/jendraz41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz41.json -------------------------------------------------------------------------------- /Data/Maps/jendraz5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz5.json -------------------------------------------------------------------------------- /Data/Maps/jendraz6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz6.json -------------------------------------------------------------------------------- /Data/Maps/jendraz7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz7.json -------------------------------------------------------------------------------- /Data/Maps/jendraz8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz8.json -------------------------------------------------------------------------------- /Data/Maps/jendraz9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/jendraz9.json -------------------------------------------------------------------------------- /Data/Maps/map1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map1.json -------------------------------------------------------------------------------- /Data/Maps/map10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map10.json -------------------------------------------------------------------------------- /Data/Maps/map11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map11.json -------------------------------------------------------------------------------- /Data/Maps/map12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map12.json -------------------------------------------------------------------------------- /Data/Maps/map13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map13.json -------------------------------------------------------------------------------- /Data/Maps/map14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map14.json -------------------------------------------------------------------------------- /Data/Maps/map2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map2.json -------------------------------------------------------------------------------- /Data/Maps/map3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map3.json -------------------------------------------------------------------------------- /Data/Maps/map4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map4.json -------------------------------------------------------------------------------- /Data/Maps/map5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map5.json -------------------------------------------------------------------------------- /Data/Maps/map6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map6.json -------------------------------------------------------------------------------- /Data/Maps/map7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map7.json -------------------------------------------------------------------------------- /Data/Maps/map8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map8.json -------------------------------------------------------------------------------- /Data/Maps/map9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/map9.json -------------------------------------------------------------------------------- /Data/Maps/svenalpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenalpha.json -------------------------------------------------------------------------------- /Data/Maps/svencanyon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svencanyon.json -------------------------------------------------------------------------------- /Data/Maps/svenchasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenchasm.json -------------------------------------------------------------------------------- /Data/Maps/svenclimb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenclimb.json -------------------------------------------------------------------------------- /Data/Maps/svencouncil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svencouncil.json -------------------------------------------------------------------------------- /Data/Maps/svendawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svendawn.json -------------------------------------------------------------------------------- /Data/Maps/svendecoy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svendecoy.json -------------------------------------------------------------------------------- /Data/Maps/svendefend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svendefend.json -------------------------------------------------------------------------------- /Data/Maps/svendoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svendoor.json -------------------------------------------------------------------------------- /Data/Maps/svenearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenearl.json -------------------------------------------------------------------------------- /Data/Maps/svenfireice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenfireice.json -------------------------------------------------------------------------------- /Data/Maps/svenforest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenforest.json -------------------------------------------------------------------------------- /Data/Maps/svenfort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenfort.json -------------------------------------------------------------------------------- /Data/Maps/svengrotto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svengrotto.json -------------------------------------------------------------------------------- /Data/Maps/svenheaven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenheaven.json -------------------------------------------------------------------------------- /Data/Maps/svenmeeting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenmeeting.json -------------------------------------------------------------------------------- /Data/Maps/svenninja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenninja.json -------------------------------------------------------------------------------- /Data/Maps/svenninjabefore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenninjabefore.json -------------------------------------------------------------------------------- /Data/Maps/svenredbw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbw.json -------------------------------------------------------------------------------- /Data/Maps/svenredbw2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbw2.json -------------------------------------------------------------------------------- /Data/Maps/svenredbw3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbw3.json -------------------------------------------------------------------------------- /Data/Maps/svenredbw4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbw4.json -------------------------------------------------------------------------------- /Data/Maps/svenredbw5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbw5.json -------------------------------------------------------------------------------- /Data/Maps/svenredbwafter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenredbwafter.json -------------------------------------------------------------------------------- /Data/Maps/svenroad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenroad.json -------------------------------------------------------------------------------- /Data/Maps/svenruins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenruins.json -------------------------------------------------------------------------------- /Data/Maps/svenshan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenshan.json -------------------------------------------------------------------------------- /Data/Maps/svenskip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svenskip.json -------------------------------------------------------------------------------- /Data/Maps/svensthwrong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/svensthwrong.json -------------------------------------------------------------------------------- /Data/Maps/sventemple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/sventemple.json -------------------------------------------------------------------------------- /Data/Maps/sventemple2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/sventemple2.json -------------------------------------------------------------------------------- /Data/Maps/sventhrone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/sventhrone.json -------------------------------------------------------------------------------- /Data/Maps/task1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task1.json -------------------------------------------------------------------------------- /Data/Maps/task10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task10.json -------------------------------------------------------------------------------- /Data/Maps/task11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task11.json -------------------------------------------------------------------------------- /Data/Maps/task12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task12.json -------------------------------------------------------------------------------- /Data/Maps/task13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task13.json -------------------------------------------------------------------------------- /Data/Maps/task14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task14.json -------------------------------------------------------------------------------- /Data/Maps/task15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task15.json -------------------------------------------------------------------------------- /Data/Maps/task16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task16.json -------------------------------------------------------------------------------- /Data/Maps/task17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task17.json -------------------------------------------------------------------------------- /Data/Maps/task18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task18.json -------------------------------------------------------------------------------- /Data/Maps/task2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task2.json -------------------------------------------------------------------------------- /Data/Maps/task3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task3.json -------------------------------------------------------------------------------- /Data/Maps/task4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task4.json -------------------------------------------------------------------------------- /Data/Maps/task5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task5.json -------------------------------------------------------------------------------- /Data/Maps/task6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task6.json -------------------------------------------------------------------------------- /Data/Maps/task7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task7.json -------------------------------------------------------------------------------- /Data/Maps/task8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task8.json -------------------------------------------------------------------------------- /Data/Maps/task9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/task9.json -------------------------------------------------------------------------------- /Data/Maps/tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Maps/tutorial.json -------------------------------------------------------------------------------- /Data/Models/Belt.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Belt.solid -------------------------------------------------------------------------------- /Data/Models/Body.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body.solid -------------------------------------------------------------------------------- /Data/Models/Body2.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body2.solid -------------------------------------------------------------------------------- /Data/Models/Body3.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body3.solid -------------------------------------------------------------------------------- /Data/Models/Body4.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body4.solid -------------------------------------------------------------------------------- /Data/Models/Body5.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body5.solid -------------------------------------------------------------------------------- /Data/Models/Body6.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body6.solid -------------------------------------------------------------------------------- /Data/Models/Body7.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Body7.solid -------------------------------------------------------------------------------- /Data/Models/BodyLow.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/BodyLow.solid -------------------------------------------------------------------------------- /Data/Models/Box.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Box.solid -------------------------------------------------------------------------------- /Data/Models/Bush.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Bush.solid -------------------------------------------------------------------------------- /Data/Models/Chimney.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Chimney.solid -------------------------------------------------------------------------------- /Data/Models/Cool.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Cool.solid -------------------------------------------------------------------------------- /Data/Models/Cornea.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Cornea.solid -------------------------------------------------------------------------------- /Data/Models/Eye.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Eye.solid -------------------------------------------------------------------------------- /Data/Models/Hawk.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Hawk.solid -------------------------------------------------------------------------------- /Data/Models/Iris.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Iris.solid -------------------------------------------------------------------------------- /Data/Models/Leaves.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Leaves.solid -------------------------------------------------------------------------------- /Data/Models/Platform.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Platform.solid -------------------------------------------------------------------------------- /Data/Models/Rabbit.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Rabbit.solid -------------------------------------------------------------------------------- /Data/Models/Rock.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Rock.solid -------------------------------------------------------------------------------- /Data/Models/Spike.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Spike.solid -------------------------------------------------------------------------------- /Data/Models/Staff.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Staff.solid -------------------------------------------------------------------------------- /Data/Models/Sword.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Sword.solid -------------------------------------------------------------------------------- /Data/Models/ThrowingKnife.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/ThrowingKnife.solid -------------------------------------------------------------------------------- /Data/Models/TreeTrunk.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/TreeTrunk.solid -------------------------------------------------------------------------------- /Data/Models/Tunnel.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Tunnel.solid -------------------------------------------------------------------------------- /Data/Models/Wall.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wall.solid -------------------------------------------------------------------------------- /Data/Models/Weird.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Weird.solid -------------------------------------------------------------------------------- /Data/Models/Wolf.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf.solid -------------------------------------------------------------------------------- /Data/Models/Wolf2.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf2.solid -------------------------------------------------------------------------------- /Data/Models/Wolf3.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf3.solid -------------------------------------------------------------------------------- /Data/Models/Wolf4.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf4.solid -------------------------------------------------------------------------------- /Data/Models/Wolf5.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf5.solid -------------------------------------------------------------------------------- /Data/Models/Wolf6.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf6.solid -------------------------------------------------------------------------------- /Data/Models/Wolf7.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/Wolf7.solid -------------------------------------------------------------------------------- /Data/Models/WolfLow.solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Models/WolfLow.solid -------------------------------------------------------------------------------- /Data/Skeleton/BasicFigure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Skeleton/BasicFigure -------------------------------------------------------------------------------- /Data/Skeleton/BasicFigureLow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Skeleton/BasicFigureLow -------------------------------------------------------------------------------- /Data/Skeleton/BasicFigureWolf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Skeleton/BasicFigureWolf -------------------------------------------------------------------------------- /Data/Skeleton/BasicFigureWolfLow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Skeleton/BasicFigureWolfLow -------------------------------------------------------------------------------- /Data/Skeleton/RabbitBelt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Skeleton/RabbitBelt -------------------------------------------------------------------------------- /Data/Sounds/Alarm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Alarm.ogg -------------------------------------------------------------------------------- /Data/Sounds/Bark.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Bark.ogg -------------------------------------------------------------------------------- /Data/Sounds/Bark2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Bark2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Bark3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Bark3.ogg -------------------------------------------------------------------------------- /Data/Sounds/BarkGrowl.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/BarkGrowl.ogg -------------------------------------------------------------------------------- /Data/Sounds/Break.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Break.ogg -------------------------------------------------------------------------------- /Data/Sounds/Broken.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Broken.ogg -------------------------------------------------------------------------------- /Data/Sounds/BushRustle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/BushRustle.ogg -------------------------------------------------------------------------------- /Data/Sounds/Clank1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Clank1.ogg -------------------------------------------------------------------------------- /Data/Sounds/Clank2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Clank2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Clank3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Clank3.ogg -------------------------------------------------------------------------------- /Data/Sounds/Clank4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Clank4.ogg -------------------------------------------------------------------------------- /Data/Sounds/ClawSlice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/ClawSlice.ogg -------------------------------------------------------------------------------- /Data/Sounds/ConsoleFail.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/ConsoleFail.ogg -------------------------------------------------------------------------------- /Data/Sounds/ConsoleSuccess.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/ConsoleSuccess.ogg -------------------------------------------------------------------------------- /Data/Sounds/DesertAmbient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/DesertAmbient.ogg -------------------------------------------------------------------------------- /Data/Sounds/Fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Fire.ogg -------------------------------------------------------------------------------- /Data/Sounds/FireEnd.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FireEnd.ogg -------------------------------------------------------------------------------- /Data/Sounds/FireStart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FireStart.ogg -------------------------------------------------------------------------------- /Data/Sounds/FleshStab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FleshStab.ogg -------------------------------------------------------------------------------- /Data/Sounds/FleshStabRemove.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FleshStabRemove.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepGrass1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepGrass1.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepGrass2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepGrass2.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepSnow1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepSnow1.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepSnow2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepSnow2.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepStone1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepStone1.ogg -------------------------------------------------------------------------------- /Data/Sounds/FootStepStone2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/FootStepStone2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Growl.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Growl.ogg -------------------------------------------------------------------------------- /Data/Sounds/Growl2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Growl2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Hawk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Hawk.ogg -------------------------------------------------------------------------------- /Data/Sounds/HeavyImpact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/HeavyImpact.ogg -------------------------------------------------------------------------------- /Data/Sounds/HighWhoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/HighWhoosh.ogg -------------------------------------------------------------------------------- /Data/Sounds/Jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Jump.ogg -------------------------------------------------------------------------------- /Data/Sounds/KnifeDraw.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/KnifeDraw.ogg -------------------------------------------------------------------------------- /Data/Sounds/KnifeSheathe.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/KnifeSheathe.ogg -------------------------------------------------------------------------------- /Data/Sounds/KnifeSlice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/KnifeSlice.ogg -------------------------------------------------------------------------------- /Data/Sounds/KnifeSwish.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/KnifeSwish.ogg -------------------------------------------------------------------------------- /Data/Sounds/Land.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Land.ogg -------------------------------------------------------------------------------- /Data/Sounds/Land1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Land1.ogg -------------------------------------------------------------------------------- /Data/Sounds/Land2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Land2.ogg -------------------------------------------------------------------------------- /Data/Sounds/LowWhoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/LowWhoosh.ogg -------------------------------------------------------------------------------- /Data/Sounds/MetalHit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/MetalHit.ogg -------------------------------------------------------------------------------- /Data/Sounds/MidWhoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/MidWhoosh.ogg -------------------------------------------------------------------------------- /Data/Sounds/MoveWhoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/MoveWhoosh.ogg -------------------------------------------------------------------------------- /Data/Sounds/Music1Desert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Music1Desert.ogg -------------------------------------------------------------------------------- /Data/Sounds/Music1Grass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Music1Grass.ogg -------------------------------------------------------------------------------- /Data/Sounds/Music1Snow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Music1Snow.ogg -------------------------------------------------------------------------------- /Data/Sounds/Music2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Music2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Music3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Music3.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitAttack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitAttack.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitAttack2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitAttack2.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitAttack3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitAttack3.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitAttack4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitAttack4.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitChitter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitChitter.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitChitter2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitChitter2.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitPain.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitPain.ogg -------------------------------------------------------------------------------- /Data/Sounds/RabbitPain2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/RabbitPain2.ogg -------------------------------------------------------------------------------- /Data/Sounds/Skid.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Skid.ogg -------------------------------------------------------------------------------- /Data/Sounds/Snarl.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Snarl.ogg -------------------------------------------------------------------------------- /Data/Sounds/Snarl2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Snarl2.ogg -------------------------------------------------------------------------------- /Data/Sounds/SnowSkid.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/SnowSkid.ogg -------------------------------------------------------------------------------- /Data/Sounds/Splatter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Splatter.ogg -------------------------------------------------------------------------------- /Data/Sounds/StaffBody.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/StaffBody.ogg -------------------------------------------------------------------------------- /Data/Sounds/StaffBreak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/StaffBreak.ogg -------------------------------------------------------------------------------- /Data/Sounds/StaffHead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/StaffHead.ogg -------------------------------------------------------------------------------- /Data/Sounds/SwordSlice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/SwordSlice.ogg -------------------------------------------------------------------------------- /Data/Sounds/SwordStaff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/SwordStaff.ogg -------------------------------------------------------------------------------- /Data/Sounds/Thud.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Thud.ogg -------------------------------------------------------------------------------- /Data/Sounds/Whoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Whoosh.ogg -------------------------------------------------------------------------------- /Data/Sounds/WhooshHit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/WhooshHit.ogg -------------------------------------------------------------------------------- /Data/Sounds/Wind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Sounds/Wind.ogg -------------------------------------------------------------------------------- /Data/Textures/Belt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Belt.png -------------------------------------------------------------------------------- /Data/Textures/Blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Blood.png -------------------------------------------------------------------------------- /Data/Textures/BloodApril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodApril.png -------------------------------------------------------------------------------- /Data/Textures/BloodClover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodClover.png -------------------------------------------------------------------------------- /Data/Textures/BloodFlame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodFlame.png -------------------------------------------------------------------------------- /Data/Textures/BloodFur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodFur.png -------------------------------------------------------------------------------- /Data/Textures/BloodJack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodJack.png -------------------------------------------------------------------------------- /Data/Textures/BloodKnife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodKnife.png -------------------------------------------------------------------------------- /Data/Textures/BloodKnifeLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodKnifeLight.png -------------------------------------------------------------------------------- /Data/Textures/BloodParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodParticle.png -------------------------------------------------------------------------------- /Data/Textures/BloodParticleInverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodParticleInverse.png -------------------------------------------------------------------------------- /Data/Textures/BloodTrixie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BloodTrixie.png -------------------------------------------------------------------------------- /Data/Textures/Bodyprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Bodyprint.png -------------------------------------------------------------------------------- /Data/Textures/Boulder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Boulder.jpg -------------------------------------------------------------------------------- /Data/Textures/BoulderDesert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BoulderDesert.jpg -------------------------------------------------------------------------------- /Data/Textures/BoulderSnow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BoulderSnow.jpg -------------------------------------------------------------------------------- /Data/Textures/Break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Break.png -------------------------------------------------------------------------------- /Data/Textures/Bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Bush.png -------------------------------------------------------------------------------- /Data/Textures/BushDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BushDesert.png -------------------------------------------------------------------------------- /Data/Textures/BushSnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/BushSnow.png -------------------------------------------------------------------------------- /Data/Textures/ClFeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/ClFeng.png -------------------------------------------------------------------------------- /Data/Textures/ClHuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/ClHuo.png -------------------------------------------------------------------------------- /Data/Textures/ClShan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/ClShan.png -------------------------------------------------------------------------------- /Data/Textures/ClShui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/ClShui.png -------------------------------------------------------------------------------- /Data/Textures/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Cloud.png -------------------------------------------------------------------------------- /Data/Textures/CloudImpact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/CloudImpact.png -------------------------------------------------------------------------------- /Data/Textures/Cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Cursor.png -------------------------------------------------------------------------------- /Data/Textures/DesertBox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/DesertBox.jpg -------------------------------------------------------------------------------- /Data/Textures/DesertCl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/DesertCl.png -------------------------------------------------------------------------------- /Data/Textures/DesertTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/DesertTree.png -------------------------------------------------------------------------------- /Data/Textures/EarWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/EarWrap.png -------------------------------------------------------------------------------- /Data/Textures/EndGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/EndGame.png -------------------------------------------------------------------------------- /Data/Textures/Eyelid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Eyelid.png -------------------------------------------------------------------------------- /Data/Textures/FancyPants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FancyPants.png -------------------------------------------------------------------------------- /Data/Textures/FancyPantsCamo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FancyPantsCamo.png -------------------------------------------------------------------------------- /Data/Textures/FancyPantsCamoArctic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FancyPantsCamoArctic.png -------------------------------------------------------------------------------- /Data/Textures/FancyPantsCamoDesert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FancyPantsCamoDesert.png -------------------------------------------------------------------------------- /Data/Textures/Fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Fire.jpg -------------------------------------------------------------------------------- /Data/Textures/Flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Flame.png -------------------------------------------------------------------------------- /Data/Textures/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Font.png -------------------------------------------------------------------------------- /Data/Textures/FontMono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FontMono.png -------------------------------------------------------------------------------- /Data/Textures/FootWrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FootWrap.png -------------------------------------------------------------------------------- /Data/Textures/Footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Footprint.png -------------------------------------------------------------------------------- /Data/Textures/FootprintSand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FootprintSand.png -------------------------------------------------------------------------------- /Data/Textures/Fur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Fur.jpg -------------------------------------------------------------------------------- /Data/Textures/Fur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Fur2.png -------------------------------------------------------------------------------- /Data/Textures/FurBlack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurBlack.jpg -------------------------------------------------------------------------------- /Data/Textures/FurBlackWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurBlackWhite.jpg -------------------------------------------------------------------------------- /Data/Textures/FurBrown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurBrown.jpg -------------------------------------------------------------------------------- /Data/Textures/FurBrownWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurBrownWhite.jpg -------------------------------------------------------------------------------- /Data/Textures/FurChocolate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurChocolate.jpg -------------------------------------------------------------------------------- /Data/Textures/FurDarko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurDarko.jpg -------------------------------------------------------------------------------- /Data/Textures/FurDavid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurDavid.jpg -------------------------------------------------------------------------------- /Data/Textures/FurLynx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurLynx.jpg -------------------------------------------------------------------------------- /Data/Textures/FurOpal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurOpal.jpg -------------------------------------------------------------------------------- /Data/Textures/FurOtter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurOtter.jpg -------------------------------------------------------------------------------- /Data/Textures/FurSable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurSable.jpg -------------------------------------------------------------------------------- /Data/Textures/FurWhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurWhite.jpg -------------------------------------------------------------------------------- /Data/Textures/FurWolfDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurWolfDark.jpg -------------------------------------------------------------------------------- /Data/Textures/FurWolfGrey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurWolfGrey.jpg -------------------------------------------------------------------------------- /Data/Textures/FurWolfLizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurWolfLizard.jpg -------------------------------------------------------------------------------- /Data/Textures/FurWolfSnow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/FurWolfSnow.jpg -------------------------------------------------------------------------------- /Data/Textures/Gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Gi.png -------------------------------------------------------------------------------- /Data/Textures/GiBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GiBottom.png -------------------------------------------------------------------------------- /Data/Textures/GiTeared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GiTeared.png -------------------------------------------------------------------------------- /Data/Textures/GiTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GiTop.png -------------------------------------------------------------------------------- /Data/Textures/GrassBox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GrassBox.jpg -------------------------------------------------------------------------------- /Data/Textures/GrassDirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GrassDirt.jpg -------------------------------------------------------------------------------- /Data/Textures/GrassDirt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/GrassDirt2.jpg -------------------------------------------------------------------------------- /Data/Textures/Hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Hawk.png -------------------------------------------------------------------------------- /Data/Textures/HeadBand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/HeadBand.png -------------------------------------------------------------------------------- /Data/Textures/HeightMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/HeightMap.png -------------------------------------------------------------------------------- /Data/Textures/Knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Knife.png -------------------------------------------------------------------------------- /Data/Textures/Leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Leaf.png -------------------------------------------------------------------------------- /Data/Textures/LeatherArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/LeatherArmor.png -------------------------------------------------------------------------------- /Data/Textures/LeatherPants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/LeatherPants.png -------------------------------------------------------------------------------- /Data/Textures/LeatherWristLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/LeatherWristLeft.png -------------------------------------------------------------------------------- /Data/Textures/LeatherWristRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/LeatherWristRight.png -------------------------------------------------------------------------------- /Data/Textures/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Logo.png -------------------------------------------------------------------------------- /Data/Textures/LongSleeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/LongSleeve.png -------------------------------------------------------------------------------- /Data/Textures/Lugaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Lugaru.png -------------------------------------------------------------------------------- /Data/Textures/MapArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/MapArrow.png -------------------------------------------------------------------------------- /Data/Textures/MapBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/MapBox.png -------------------------------------------------------------------------------- /Data/Textures/MapCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/MapCircle.png -------------------------------------------------------------------------------- /Data/Textures/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Mask.png -------------------------------------------------------------------------------- /Data/Textures/MossRock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/MossRock.jpg -------------------------------------------------------------------------------- /Data/Textures/NewGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/NewGame.png -------------------------------------------------------------------------------- /Data/Textures/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Options.png -------------------------------------------------------------------------------- /Data/Textures/Pants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Pants.png -------------------------------------------------------------------------------- /Data/Textures/Quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Quit.png -------------------------------------------------------------------------------- /Data/Textures/Resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Resume.png -------------------------------------------------------------------------------- /Data/Textures/Rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Rock.jpg -------------------------------------------------------------------------------- /Data/Textures/Rock2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Rock2.jpg -------------------------------------------------------------------------------- /Data/Textures/Sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Sand.jpg -------------------------------------------------------------------------------- /Data/Textures/SandSlope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SandSlope.jpg -------------------------------------------------------------------------------- /Data/Textures/Scar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Scar.png -------------------------------------------------------------------------------- /Data/Textures/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Shadow.png -------------------------------------------------------------------------------- /Data/Textures/Shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Shine.png -------------------------------------------------------------------------------- /Data/Textures/Shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Shirt.png -------------------------------------------------------------------------------- /Data/Textures/ShirtFemale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/ShirtFemale.png -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Back.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Down.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Front.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Left.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Right.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(grass)/Up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(grass)/Up.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Back.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Down.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Front.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Left.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Right.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(sand)/Up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(sand)/Up.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Back.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Down.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Front.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Left.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Right.jpg -------------------------------------------------------------------------------- /Data/Textures/Skybox(snow)/Up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Skybox(snow)/Up.jpg -------------------------------------------------------------------------------- /Data/Textures/Smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Smoke.png -------------------------------------------------------------------------------- /Data/Textures/Snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Snow.jpg -------------------------------------------------------------------------------- /Data/Textures/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Snow.png -------------------------------------------------------------------------------- /Data/Textures/SnowBox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SnowBox.jpg -------------------------------------------------------------------------------- /Data/Textures/SnowFlake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SnowFlake.png -------------------------------------------------------------------------------- /Data/Textures/SnowTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SnowTree.png -------------------------------------------------------------------------------- /Data/Textures/Splinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Splinter.png -------------------------------------------------------------------------------- /Data/Textures/Staff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Staff.jpg -------------------------------------------------------------------------------- /Data/Textures/Sword.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Sword.jpg -------------------------------------------------------------------------------- /Data/Textures/SwordBlood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SwordBlood.jpg -------------------------------------------------------------------------------- /Data/Textures/SwordBloodLight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/SwordBloodLight.jpg -------------------------------------------------------------------------------- /Data/Textures/Tooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Tooth.png -------------------------------------------------------------------------------- /Data/Textures/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Tree.png -------------------------------------------------------------------------------- /Data/Textures/Wireframe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/Wireframe.jpg -------------------------------------------------------------------------------- /Data/Textures/WolfBloodFur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/WolfBloodFur.png -------------------------------------------------------------------------------- /Data/Textures/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/World.png -------------------------------------------------------------------------------- /Data/Textures/empire/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/empire/World.png -------------------------------------------------------------------------------- /Data/Textures/temple/World.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Data/Textures/temple/World.png -------------------------------------------------------------------------------- /Dist/Linux/lugaru.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/Linux/lugaru.6 -------------------------------------------------------------------------------- /Dist/Linux/lugaru.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/Linux/lugaru.desktop -------------------------------------------------------------------------------- /Dist/Linux/lugaru.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/Linux/lugaru.metainfo.xml -------------------------------------------------------------------------------- /Dist/Linux/lugaru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/Linux/lugaru.png -------------------------------------------------------------------------------- /Dist/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/OSX/Info.plist -------------------------------------------------------------------------------- /Dist/OSX/Lugaru.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/OSX/Lugaru.icns -------------------------------------------------------------------------------- /Dist/Windows/Lugaru.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Dist/Windows/Lugaru.ico -------------------------------------------------------------------------------- /Docs/DEVTOOLS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Docs/DEVTOOLS.txt -------------------------------------------------------------------------------- /Docs/README.Empire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Docs/README.Empire.txt -------------------------------------------------------------------------------- /Docs/README.SevenTasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Docs/README.SevenTasks.txt -------------------------------------------------------------------------------- /Docs/README.Temple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Docs/README.Temple.txt -------------------------------------------------------------------------------- /Misc/fix-hardcoded-hex-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Misc/fix-hardcoded-hex-paths.sh -------------------------------------------------------------------------------- /Misc/list-hardcoded-paths-fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Misc/list-hardcoded-paths-fixes.txt -------------------------------------------------------------------------------- /Misc/lugaru-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Misc/lugaru-icon.psd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /Source/Animation/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Animation.cpp -------------------------------------------------------------------------------- /Source/Animation/Animation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Animation.def -------------------------------------------------------------------------------- /Source/Animation/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Animation.hpp -------------------------------------------------------------------------------- /Source/Animation/Joint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Joint.cpp -------------------------------------------------------------------------------- /Source/Animation/Joint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Joint.hpp -------------------------------------------------------------------------------- /Source/Animation/Muscle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Muscle.cpp -------------------------------------------------------------------------------- /Source/Animation/Muscle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Muscle.hpp -------------------------------------------------------------------------------- /Source/Animation/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Skeleton.cpp -------------------------------------------------------------------------------- /Source/Animation/Skeleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Animation/Skeleton.hpp -------------------------------------------------------------------------------- /Source/Audio/Sounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Audio/Sounds.cpp -------------------------------------------------------------------------------- /Source/Audio/Sounds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Audio/Sounds.def -------------------------------------------------------------------------------- /Source/Audio/Sounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Audio/Sounds.hpp -------------------------------------------------------------------------------- /Source/Audio/openal_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Audio/openal_wrapper.cpp -------------------------------------------------------------------------------- /Source/Audio/openal_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Audio/openal_wrapper.hpp -------------------------------------------------------------------------------- /Source/Devtools/ConsoleCmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Devtools/ConsoleCmds.cpp -------------------------------------------------------------------------------- /Source/Devtools/ConsoleCmds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Devtools/ConsoleCmds.def -------------------------------------------------------------------------------- /Source/Devtools/ConsoleCmds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Devtools/ConsoleCmds.hpp -------------------------------------------------------------------------------- /Source/Environment/Lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Lights.cpp -------------------------------------------------------------------------------- /Source/Environment/Lights.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Lights.hpp -------------------------------------------------------------------------------- /Source/Environment/Skybox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Skybox.cpp -------------------------------------------------------------------------------- /Source/Environment/Skybox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Skybox.hpp -------------------------------------------------------------------------------- /Source/Environment/Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Terrain.cpp -------------------------------------------------------------------------------- /Source/Environment/Terrain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Environment/Terrain.hpp -------------------------------------------------------------------------------- /Source/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Game.cpp -------------------------------------------------------------------------------- /Source/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Game.hpp -------------------------------------------------------------------------------- /Source/GameDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/GameDraw.cpp -------------------------------------------------------------------------------- /Source/GameInitDispose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/GameInitDispose.cpp -------------------------------------------------------------------------------- /Source/GameTick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/GameTick.cpp -------------------------------------------------------------------------------- /Source/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Globals.cpp -------------------------------------------------------------------------------- /Source/Graphic/Decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Decal.cpp -------------------------------------------------------------------------------- /Source/Graphic/Decal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Decal.hpp -------------------------------------------------------------------------------- /Source/Graphic/Models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Models.cpp -------------------------------------------------------------------------------- /Source/Graphic/Models.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Models.hpp -------------------------------------------------------------------------------- /Source/Graphic/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Sprite.cpp -------------------------------------------------------------------------------- /Source/Graphic/Sprite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Sprite.hpp -------------------------------------------------------------------------------- /Source/Graphic/Stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Stereo.cpp -------------------------------------------------------------------------------- /Source/Graphic/Stereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Stereo.hpp -------------------------------------------------------------------------------- /Source/Graphic/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Text.cpp -------------------------------------------------------------------------------- /Source/Graphic/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Text.hpp -------------------------------------------------------------------------------- /Source/Graphic/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Texture.cpp -------------------------------------------------------------------------------- /Source/Graphic/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/Texture.hpp -------------------------------------------------------------------------------- /Source/Graphic/gamegl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Graphic/gamegl.hpp -------------------------------------------------------------------------------- /Source/Level/Awards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Awards.cpp -------------------------------------------------------------------------------- /Source/Level/Awards.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Awards.def -------------------------------------------------------------------------------- /Source/Level/Awards.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Awards.hpp -------------------------------------------------------------------------------- /Source/Level/Bonuses.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Bonuses.def -------------------------------------------------------------------------------- /Source/Level/Campaign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Campaign.cpp -------------------------------------------------------------------------------- /Source/Level/Campaign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Campaign.hpp -------------------------------------------------------------------------------- /Source/Level/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Dialog.cpp -------------------------------------------------------------------------------- /Source/Level/Dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Dialog.hpp -------------------------------------------------------------------------------- /Source/Level/Hotspot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Hotspot.cpp -------------------------------------------------------------------------------- /Source/Level/Hotspot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Level/Hotspot.hpp -------------------------------------------------------------------------------- /Source/Lugaru.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Lugaru.rc -------------------------------------------------------------------------------- /Source/Math/Frustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Math/Frustum.cpp -------------------------------------------------------------------------------- /Source/Math/Frustum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Math/Frustum.hpp -------------------------------------------------------------------------------- /Source/Math/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Math/Random.hpp -------------------------------------------------------------------------------- /Source/Math/XYZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Math/XYZ.cpp -------------------------------------------------------------------------------- /Source/Math/XYZ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Math/XYZ.hpp -------------------------------------------------------------------------------- /Source/Menu/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Menu/Menu.cpp -------------------------------------------------------------------------------- /Source/Menu/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Menu/Menu.hpp -------------------------------------------------------------------------------- /Source/Objects/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Object.cpp -------------------------------------------------------------------------------- /Source/Objects/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Object.hpp -------------------------------------------------------------------------------- /Source/Objects/Person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Person.cpp -------------------------------------------------------------------------------- /Source/Objects/Person.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Person.hpp -------------------------------------------------------------------------------- /Source/Objects/PersonType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/PersonType.cpp -------------------------------------------------------------------------------- /Source/Objects/PersonType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/PersonType.hpp -------------------------------------------------------------------------------- /Source/Objects/Weapons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Weapons.cpp -------------------------------------------------------------------------------- /Source/Objects/Weapons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Objects/Weapons.hpp -------------------------------------------------------------------------------- /Source/Platform/Platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Platform/Platform.hpp -------------------------------------------------------------------------------- /Source/Platform/PlatformUnix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Platform/PlatformUnix.cpp -------------------------------------------------------------------------------- /Source/Platform/PlatformWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Platform/PlatformWindows.cpp -------------------------------------------------------------------------------- /Source/Thirdparty/optionparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Thirdparty/optionparser.h -------------------------------------------------------------------------------- /Source/Tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Tutorial.cpp -------------------------------------------------------------------------------- /Source/Tutorial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Tutorial.hpp -------------------------------------------------------------------------------- /Source/User/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/User/Account.cpp -------------------------------------------------------------------------------- /Source/User/Account.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/User/Account.hpp -------------------------------------------------------------------------------- /Source/User/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/User/Settings.cpp -------------------------------------------------------------------------------- /Source/User/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/User/Settings.hpp -------------------------------------------------------------------------------- /Source/Utils/Folders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/Folders.cpp -------------------------------------------------------------------------------- /Source/Utils/Folders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/Folders.hpp -------------------------------------------------------------------------------- /Source/Utils/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/ImageIO.cpp -------------------------------------------------------------------------------- /Source/Utils/ImageIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/ImageIO.hpp -------------------------------------------------------------------------------- /Source/Utils/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/Input.cpp -------------------------------------------------------------------------------- /Source/Utils/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/Input.hpp -------------------------------------------------------------------------------- /Source/Utils/binio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/binio.h -------------------------------------------------------------------------------- /Source/Utils/pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/pack.c -------------------------------------------------------------------------------- /Source/Utils/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/private.c -------------------------------------------------------------------------------- /Source/Utils/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/private.h -------------------------------------------------------------------------------- /Source/Utils/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Utils/unpack.c -------------------------------------------------------------------------------- /Source/Version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/Version.hpp.in -------------------------------------------------------------------------------- /Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfireGames/lugaru/HEAD/Source/main.cpp --------------------------------------------------------------------------------