├── .gitattributes ├── .github └── workflows │ ├── deploy-mdbook.yml │ └── deploy-rustdoc.yml ├── .gitignore ├── Cargo.toml ├── README.md ├── assets ├── animations.assets.ron ├── animations │ ├── base.anim.toml │ ├── dialogue │ │ ├── 000.anim.toml │ │ ├── 000_1f.png │ │ ├── 001.anim.toml │ │ ├── 001_1f.png │ │ ├── 002.anim.toml │ │ ├── 002_1f.png │ │ ├── 003.anim.toml │ │ ├── 003_1f.png │ │ ├── 004.anim.toml │ │ ├── 004_1f.png │ │ ├── 005.anim.toml │ │ ├── 005_1f.png │ │ ├── 006.anim.toml │ │ ├── 006_1f.png │ │ ├── 007.anim.toml │ │ ├── 007_1f.png │ │ ├── 008.anim.toml │ │ ├── 008_1f.png │ │ ├── 009.anim.toml │ │ ├── 009_1f.png │ │ ├── 010.anim.toml │ │ ├── 010_1f.png │ │ ├── 011.anim.toml │ │ ├── 011_1f.png │ │ ├── 012.anim.toml │ │ ├── 012_1f.png │ │ ├── 013.anim.toml │ │ ├── 013_1f.png │ │ ├── 014.anim.toml │ │ ├── 014_1f.png │ │ ├── 015.anim.toml │ │ ├── 015_1f.png │ │ ├── 016.anim.toml │ │ ├── 016_1f.png │ │ ├── 017.anim.toml │ │ ├── 017_1f.png │ │ ├── 018.anim.toml │ │ ├── 018_1f.png │ │ ├── 019.anim.toml │ │ ├── 019_1f.png │ │ ├── MrSnafflesBackground.anim.toml │ │ ├── MrSnafflesBackground.png │ │ ├── VagrantBackground.anim.toml │ │ └── VagrantBackground.png │ ├── merchant │ │ ├── Idle.anim.toml │ │ └── Idle.png │ ├── player │ │ ├── bow │ │ │ ├── BasicAir.anim.toml │ │ │ ├── BasicAirSheet.png │ │ │ ├── BasicArrow.anim.toml │ │ │ ├── BasicArrowSheet.png │ │ │ ├── BasicIdle.anim.toml │ │ │ ├── BasicIdleSheet.png │ │ │ ├── BasicRun.anim.toml │ │ │ └── BasicRunSheet.png │ │ ├── hammer │ │ │ ├── BasicAir.anim.toml │ │ │ ├── BasicAirSheet.png │ │ │ ├── BasicIdle.anim.toml │ │ │ ├── BasicIdleSheet.png │ │ │ ├── DashDown.anim.toml │ │ │ ├── DashDownSheet.png │ │ │ ├── Whirling.anim.toml │ │ │ └── WhirlingSheet.png │ │ ├── movement │ │ │ ├── Dash.anim.toml │ │ │ ├── Dash.png │ │ │ ├── Death.png │ │ │ ├── Fall.anim.toml │ │ │ ├── FallSheet.png │ │ │ ├── Idle.anim.toml │ │ │ ├── IdleLookDown.anim.toml │ │ │ ├── IdleLookDown.png │ │ │ ├── IdleLookUp.anim.toml │ │ │ ├── IdleLookUp.png │ │ │ ├── IdleSheet.png │ │ │ ├── Jump.anim.toml │ │ │ ├── JumpSheet.png │ │ │ ├── JumpSheet2.png │ │ │ ├── Roll.anim.toml │ │ │ ├── Roll.png │ │ │ ├── Run.anim.toml │ │ │ ├── RunSheet.png │ │ │ ├── RunWithDamage.anim.toml │ │ │ ├── WallSlide.anim.toml │ │ │ └── WallSlide.png │ │ └── sword │ │ │ ├── BasicAir.anim.toml │ │ │ ├── BasicAirSheet.png │ │ │ ├── BasicIdle.anim.toml │ │ │ ├── BasicIdleSheet.png │ │ │ ├── BasicRun.anim.toml │ │ │ ├── BasicRunSheet.png │ │ │ ├── DashDown.anim.toml │ │ │ ├── DashDownSheet.png │ │ │ ├── DashDownStrike.anim.toml │ │ │ ├── Whirling.anim.toml │ │ │ ├── WhirlingSheet.png │ │ │ └── flicker - to be implemented later │ │ │ ├── PlayerSwordFlickerDownward.png │ │ │ ├── PlayerSwordFlickerDownwardTrail.png │ │ │ ├── PlayerSwordFlickerForward.png │ │ │ ├── PlayerSwordFlickerForwardTrail.png │ │ │ ├── PlayerSwordFlickerUpward.png │ │ │ └── PlayerSwordFlickerUpwardTrail.png │ ├── puzzles │ │ ├── Puzzle01Placeholder.png │ │ ├── Puzzle02Placeholder.png │ │ ├── Puzzle03Placeholder.png │ │ ├── Puzzle04Placeholder.png │ │ ├── Puzzle05Placeholder.png │ │ ├── Puzzle06Placeholder.png │ │ ├── Puzzle07Placeholder.png │ │ ├── Puzzle08Placeholder.png │ │ ├── Puzzle09Placeholder.png │ │ ├── Puzzle10Placeholder.png │ │ ├── Puzzle11Placeholder.png │ │ ├── Puzzle12Placeholder.png │ │ ├── SwitchBig.png │ │ ├── puzzle01.anim.toml │ │ ├── puzzle02.anim.toml │ │ ├── puzzle03.anim.toml │ │ ├── puzzle04.anim.toml │ │ ├── puzzle05.anim.toml │ │ ├── puzzle06.anim.toml │ │ ├── puzzle07.anim.toml │ │ ├── puzzle08.anim.toml │ │ ├── puzzle09.anim.toml │ │ ├── puzzle10.anim.toml │ │ ├── puzzle11.anim.toml │ │ ├── puzzle12.anim.toml │ │ └── switch.anim.toml │ ├── spider │ │ ├── big │ │ │ ├── tier1 │ │ │ │ ├── Chase.anim.toml │ │ │ │ ├── Chase.png │ │ │ │ ├── Death.anim.toml │ │ │ │ ├── Death.png │ │ │ │ ├── Decay.anim.toml │ │ │ │ ├── Decay.png │ │ │ │ ├── Defence.png │ │ │ │ ├── Defense.anim.toml │ │ │ │ ├── DefensiveAttack.anim.toml │ │ │ │ ├── DefensiveAttack.png │ │ │ │ ├── Idle.anim.toml │ │ │ │ ├── Idle.png │ │ │ │ ├── OffensiveAttack.anim.toml │ │ │ │ ├── OffensiveAttack.png │ │ │ │ ├── RangedAttack.anim.toml │ │ │ │ ├── RangedAttack.png │ │ │ │ ├── Retreat.anim.toml │ │ │ │ ├── Retreat.png │ │ │ │ ├── Sparks.anim.toml │ │ │ │ ├── Sparks.png │ │ │ │ ├── Walk.anim.toml │ │ │ │ ├── Walk.png │ │ │ │ ├── WalkTest.png │ │ │ │ └── WalkTestttt.png │ │ │ ├── tier2 │ │ │ │ ├── Death.anim.toml │ │ │ │ ├── Death.png │ │ │ │ ├── Decay.anim.toml │ │ │ │ ├── Decay.png │ │ │ │ ├── Defence.png │ │ │ │ ├── Defense.anim.toml │ │ │ │ ├── Idle.anim.toml │ │ │ │ ├── Idle.png │ │ │ │ ├── RangedAttack.anim.toml │ │ │ │ ├── RangedAttack.png │ │ │ │ ├── Sparks.anim.toml │ │ │ │ ├── Walk.anim.toml │ │ │ │ └── Walk.png │ │ │ └── tier3 │ │ │ │ ├── Death.anim.toml │ │ │ │ ├── Death.png │ │ │ │ ├── Decay.anim.toml │ │ │ │ ├── Decay.png │ │ │ │ ├── Defence.png │ │ │ │ ├── Defense.anim.toml │ │ │ │ ├── Idle.anim.toml │ │ │ │ ├── Idle.png │ │ │ │ ├── RangedAttack.anim.toml │ │ │ │ ├── RangedAttack.png │ │ │ │ ├── Walk.anim.toml │ │ │ │ └── Walk.png │ │ └── small │ │ │ ├── tier1 │ │ │ ├── Chase.anim.toml │ │ │ ├── Chase.png │ │ │ ├── Death.anim.toml │ │ │ ├── Death.png │ │ │ ├── Decay.anim.toml │ │ │ ├── Decay.png │ │ │ ├── Idle.anim.toml │ │ │ ├── Idle.png │ │ │ ├── Jump.anim.toml │ │ │ ├── Jump.png │ │ │ ├── MeleeAttack.anim.toml │ │ │ ├── MeleeAttack.png │ │ │ ├── Walk.anim.toml │ │ │ └── Walk.png │ │ │ ├── tier2 │ │ │ ├── Chase.anim.toml │ │ │ ├── Chase.png │ │ │ ├── Death.anim.toml │ │ │ ├── Death.png │ │ │ ├── Decay.anim.toml │ │ │ ├── Decay.png │ │ │ ├── Idle.anim.toml │ │ │ ├── Idle.png │ │ │ ├── Jump.anim.toml │ │ │ ├── Jump.png │ │ │ ├── MeleeAttack.anim.toml │ │ │ ├── MeleeAttack.png │ │ │ ├── Walk.anim.toml │ │ │ └── Walk.png │ │ │ └── tier3 │ │ │ ├── Chase.anim.toml │ │ │ ├── Chase.png │ │ │ ├── Death.anim.toml │ │ │ ├── Death.png │ │ │ ├── Decay.anim.toml │ │ │ ├── Decay.png │ │ │ ├── Idle.anim.toml │ │ │ ├── Idle.png │ │ │ ├── Jump.anim.toml │ │ │ ├── Jump.png │ │ │ ├── MeleeAttack.anim.toml │ │ │ ├── MeleeAttack.png │ │ │ ├── Walk.anim.toml │ │ │ └── Walk.png │ ├── weapons │ │ ├── Hammer.anim.toml │ │ ├── Hammer.png │ │ ├── Sword.anim.toml │ │ └── Sword.png │ └── yak │ │ ├── Idle.anim.toml │ │ └── Idle.png ├── audio.assets.ron ├── audio │ ├── attack │ │ ├── DashDownImpact.flac │ │ ├── DashDownStart.flac │ │ ├── HammerImpact1.flac │ │ ├── HammerImpact2.flac │ │ ├── HammerImpact3.flac │ │ ├── HammerImpact4.flac │ │ ├── HammerSwing1.flac │ │ ├── HammerSwing2.flac │ │ ├── HammerSwing3.flac │ │ ├── HammerSwing4.flac │ │ ├── HammerSwingDown1.flac │ │ ├── HammerSwingDown2.flac │ │ ├── HammerWhirl.flac │ │ ├── Impact1.flac │ │ ├── Impact2.flac │ │ ├── Impact3.flac │ │ ├── Impact4.flac │ │ ├── ImpactBass1.flac │ │ ├── ImpactBass2.flac │ │ ├── Shoot1.flac │ │ ├── Shoot2.flac │ │ ├── Shoot3.flac │ │ ├── Shoot4.flac │ │ ├── Slash1.flac │ │ ├── Slash2.flac │ │ ├── SwordImpact1.flac │ │ ├── SwordImpact2.flac │ │ ├── SwordImpact3.flac │ │ ├── SwordImpact4.flac │ │ ├── SwordImpact5.flac │ │ ├── SwordImpact6.flac │ │ ├── SwordImpact7.flac │ │ ├── SwordWhirl1.flac │ │ └── SwordWhirl2.flac │ ├── fx │ │ ├── PlayerGetsDamaged1.flac │ │ ├── PlayerGetsDamaged2.flac │ │ ├── PlayerGetsDamaged3.flac │ │ ├── PlayerGetsDamaged4.flac │ │ └── XpOrbs.flac │ ├── movement │ │ ├── Dash1a.flac │ │ ├── Dash1b.flac │ │ ├── Dash2a.flac │ │ ├── Dash2b.flac │ │ ├── Dash3a.flac │ │ ├── Dash3b.flac │ │ ├── FallImpact1.flac │ │ ├── FallImpact2.flac │ │ ├── FallImpact3.flac │ │ ├── FallImpact4.flac │ │ ├── FallStart1.flac │ │ ├── FallStart2.flac │ │ ├── FallStart3.flac │ │ ├── FallStart4.flac │ │ ├── FallStart5.flac │ │ ├── FallStart6.flac │ │ ├── JumpStart1.flac │ │ ├── JumpStart2.flac │ │ ├── JumpStart3.flac │ │ ├── JumpStart4.flac │ │ ├── JumpStart5.flac │ │ ├── JumpStart6.flac │ │ ├── JumpStart7.flac │ │ ├── JumpUp.flac │ │ ├── Slide1.flac │ │ ├── Slide2.flac │ │ ├── Slide3.flac │ │ ├── Slide4.flac │ │ ├── Step1.flac │ │ ├── Step10.flac │ │ ├── Step11.flac │ │ ├── Step12.flac │ │ ├── Step13.flac │ │ ├── Step14.flac │ │ ├── Step15.flac │ │ ├── Step2.flac │ │ ├── Step3.flac │ │ ├── Step4.flac │ │ ├── Step5.flac │ │ ├── Step6.flac │ │ ├── Step7.flac │ │ ├── Step8.flac │ │ └── Step9.flac │ ├── music │ │ ├── Ambience1.flac │ │ ├── Music1.flac │ │ ├── Music2.flac │ │ └── Music3.flac │ ├── spider │ │ ├── BigSpiderAttack1.flac │ │ ├── BigSpiderAttack2.flac │ │ ├── BigSpiderDeath1.flac │ │ ├── BigSpiderDeath2.flac │ │ ├── BigSpiderDeath3.flac │ │ ├── BigSpiderStep1.flac │ │ ├── BigSpiderStep2.flac │ │ ├── BigSpiderStep3.flac │ │ ├── BigSpiderStep4.flac │ │ ├── BigSpiderStep5.flac │ │ ├── BigSpiderStep6.flac │ │ ├── BigSpiderStep7.flac │ │ ├── BigSpiderStep8.flac │ │ ├── SmallSpiderAttack1.flac │ │ ├── SmallSpiderAttack2.flac │ │ ├── SmallSpiderAttack3.flac │ │ ├── SmallSpiderAttack4.flac │ │ ├── SmallSpiderDeath1.flac │ │ ├── SmallSpiderDeath2.flac │ │ ├── SmallSpiderDeath3.flac │ │ ├── SmallSpiderStep1.flac │ │ ├── SmallSpiderStep2.flac │ │ ├── SmallSpiderStep3.flac │ │ ├── SmallSpiderStep4.flac │ │ ├── SmallSpiderStep5.flac │ │ ├── SmallSpiderStep6.flac │ │ ├── SmallSpiderStep7.flac │ │ └── SmallSpiderStep8.flac │ └── yak │ │ ├── Mooo1.flac │ │ ├── Mooo2.flac │ │ └── Mooo3.flac ├── enemy.cfg.toml ├── font │ ├── Tektur-Bold.ttf │ ├── Tektur-Medium.ttf │ └── Tektur-Regular.ttf ├── fx │ ├── floater.png │ └── xporb.png ├── gameplay.assets.ron ├── items │ ├── passives │ │ ├── Bloodstone.png │ │ ├── CriticalRegeneration.png │ │ ├── DeadlyFeather.png │ │ ├── FlamingHeart.png │ │ ├── FrenziedAttack.png │ │ ├── GlowingShard.png │ │ ├── HeavyBoots.png │ │ ├── IceDagger.png │ │ ├── ObsidianNecklace.png │ │ ├── PackKiller.png │ │ ├── ProtectiveSpirit.png │ │ ├── RabbitsFoot.png │ │ ├── SerpentRing.png │ │ ├── Sharpshooter.png │ │ └── VitalityOverclock.png │ └── seeds │ │ ├── a │ │ ├── PlanetarySeedA1.png │ │ ├── PlanetarySeedA11.png │ │ ├── PlanetarySeedA12.png │ │ ├── PlanetarySeedA4.png │ │ ├── PlanetarySeedA5.png │ │ └── PlanetarySeedA8.png │ │ ├── b │ │ ├── PlanetarySeedB1.png │ │ ├── PlanetarySeedB12.png │ │ ├── PlanetarySeedB3.png │ │ ├── PlanetarySeedB4.png │ │ ├── PlanetarySeedB7.png │ │ └── PlanetarySeedB8.png │ │ ├── c │ │ ├── PlanetarySeedC1.png │ │ ├── PlanetarySeedC11.png │ │ ├── PlanetarySeedC2.png │ │ ├── PlanetarySeedC3.png │ │ ├── PlanetarySeedC4.png │ │ ├── PlanetarySeedC5.png │ │ ├── PlanetarySeedC8.png │ │ └── PlanetarySeedC9.png │ │ ├── d │ │ ├── PlanetarySeedD1.png │ │ ├── PlanetarySeedD2.png │ │ ├── PlanetarySeedD3.png │ │ ├── PlanetarySeedD6.png │ │ ├── PlanetarySeedD7.png │ │ └── PlanetarySeedD8.png │ │ └── e │ │ ├── PlanetarySeedE11.png │ │ ├── PlanetarySeedE12.png │ │ ├── PlanetarySeedE3.png │ │ ├── PlanetarySeedE6.png │ │ ├── PlanetarySeedE7.png │ │ └── PlanetarySeedE8.png ├── levels.assets.ron ├── levels │ ├── BackgroundTileset.png │ ├── GrassProps.png │ ├── IceMainTileset.png │ ├── IceProps.png │ ├── IciclesTileset.png │ ├── MainProps.png │ ├── MainTileset.png │ ├── MainTilesetAdditions.png │ ├── MainTilesetAdditions2.png │ ├── OldMainTileset.png │ ├── SnowOverlayTileset.png │ ├── TundraBackgroundTiles.png │ ├── TundraBackgroundTileset.png │ ├── TundraMainTileset.png │ ├── TundraProps.png │ ├── TundraTileset.png │ ├── geysers.png │ ├── level.01.ldtk │ ├── level.01 │ │ └── png │ │ │ ├── Level_0.png │ │ │ ├── Level_0__Background.png │ │ │ ├── Level_0__FarBackground-int.png │ │ │ ├── Level_0__FarBackground.png │ │ │ ├── Level_0__Geysers.png │ │ │ ├── Level_0__GrassOverlay.png │ │ │ ├── Level_0__IcePropsBack.png │ │ │ ├── Level_0__IcePropsFront.png │ │ │ ├── Level_0__IciclesOverlay.png │ │ │ ├── Level_0__Main-int.png │ │ │ ├── Level_0__Main.png │ │ │ ├── Level_0__Main2-int.png │ │ │ ├── Level_0__Main2.png │ │ │ ├── Level_0__Main3-int.png │ │ │ ├── Level_0__Main3.png │ │ │ ├── Level_0__MainOverlay.png │ │ │ ├── Level_0__MiddleBackground-int.png │ │ │ ├── Level_0__MiddleBackground.png │ │ │ ├── Level_0__NearBackground-int.png │ │ │ ├── Level_0__NearBackground.png │ │ │ ├── Level_0__SecretIce.png │ │ │ ├── Level_0__SecretTundra.png │ │ │ ├── Level_0__SnowOverlay.png │ │ │ ├── Level_0__TundraFarBackground-int.png │ │ │ ├── Level_0__TundraFarBackground.png │ │ │ ├── Level_0__TundraMain-int.png │ │ │ ├── Level_0__TundraMain.png │ │ │ ├── Level_0__TundraMiddleBackground-int.png │ │ │ ├── Level_0__TundraMiddleBackground.png │ │ │ ├── Level_0__TundraNearBackground-int.png │ │ │ ├── Level_0__TundraNearBackground.png │ │ │ ├── Level_0__TundraPropsBack.png │ │ │ ├── Level_0__TundraPropsFront.png │ │ │ ├── Level_0__Tundra_Ice.png │ │ │ ├── Level_0__Water.png │ │ │ ├── Level_0_bg.png │ │ │ ├── Level_1.png │ │ │ ├── Level_1__Background.png │ │ │ ├── Level_1__FarBackground-int.png │ │ │ ├── Level_1__FarBackground.png │ │ │ ├── Level_1__Geysers.png │ │ │ ├── Level_1__GrassOverlay.png │ │ │ ├── Level_1__IcePropsBack.png │ │ │ ├── Level_1__IcePropsFront.png │ │ │ ├── Level_1__IciclesOverlay.png │ │ │ ├── Level_1__Main-int.png │ │ │ ├── Level_1__Main.png │ │ │ ├── Level_1__Main2-int.png │ │ │ ├── Level_1__Main2.png │ │ │ ├── Level_1__Main3-int.png │ │ │ ├── Level_1__Main3.png │ │ │ ├── Level_1__MainOverlay.png │ │ │ ├── Level_1__MiddleBackground-int.png │ │ │ ├── Level_1__MiddleBackground.png │ │ │ ├── Level_1__NearBackground-int.png │ │ │ ├── Level_1__NearBackground.png │ │ │ ├── Level_1__SecretIce.png │ │ │ ├── Level_1__SecretTundra.png │ │ │ ├── Level_1__SnowOverlay.png │ │ │ ├── Level_1__TundraFarBackground-int.png │ │ │ ├── Level_1__TundraFarBackground.png │ │ │ ├── Level_1__TundraMain-int.png │ │ │ ├── Level_1__TundraMain.png │ │ │ ├── Level_1__TundraMiddleBackground-int.png │ │ │ ├── Level_1__TundraMiddleBackground.png │ │ │ ├── Level_1__TundraNearBackground-int.png │ │ │ ├── Level_1__TundraNearBackground.png │ │ │ ├── Level_1__TundraPropsBack.png │ │ │ ├── Level_1__TundraPropsFront.png │ │ │ ├── Level_1__Tundra_Ice.png │ │ │ ├── Level_1__Water.png │ │ │ └── Level_1_bg.png │ ├── level.dev.ldtk │ ├── level.dev │ │ └── png │ │ │ ├── Level_0__Background.png │ │ │ ├── Level_0__FarBackground-int.png │ │ │ ├── Level_0__FarBackground.png │ │ │ ├── Level_0__IciclesOverlay.png │ │ │ ├── Level_0__Main-int.png │ │ │ ├── Level_0__Main.png │ │ │ ├── Level_0__MainOverlay.png │ │ │ ├── Level_0__MiddleBackground-int.png │ │ │ ├── Level_0__MiddleBackground.png │ │ │ ├── Level_0__NearBackground-int.png │ │ │ ├── Level_0__NearBackground.png │ │ │ ├── Level_0__SnowOverlay.png │ │ │ └── Level_0_bg.png │ ├── oldBackgroundTileset.png │ └── water.png ├── locale │ ├── bg-BG │ │ ├── bg-BG.ftl.ron │ │ └── menu.ftl │ ├── en-US │ │ ├── en-US.ftl.ron │ │ └── menu.ftl │ └── ru-RU │ │ ├── menu.ftl │ │ └── ru-RU.ftl.ron ├── player.cfg.toml ├── shaders │ ├── ability_cooldown.wgsl │ ├── enemy_hp.wgsl │ ├── fog.wgsl │ ├── perlin_noise_2d.wgsl │ ├── perlin_noise_3d.wgsl │ ├── player_hp.wgsl │ ├── post_processing │ │ ├── darkness.wgsl │ │ ├── floaters_prepass.wgsl │ │ ├── floaters_render.wgsl │ │ └── vignette.wgsl │ └── simplex_noise.wgsl ├── sprites.assets.ron ├── test.cfg.toml ├── test.script.toml ├── ui.assets.ron └── ui │ ├── game │ ├── AttackSkillIcon.png │ ├── BowAttackSkillIcon.png │ ├── DashDownSkillIcon.png │ ├── DashSkillIcon.png │ ├── HammerAttackSkillIcon.png │ ├── HammerWhirlSkillIcon.png │ ├── StealthSkillIcon.png │ ├── ToolbarFrame.png │ └── WhirlSkillIcon.png │ └── mainmenu │ └── background.png ├── doc ├── book.toml └── src │ ├── SUMMARY.md │ ├── game-design.md │ ├── game-design │ ├── art-direction.md │ ├── audience.md │ ├── game-mechanics.md │ ├── game-mechanics │ │ ├── active-skills.md │ │ ├── creatures-ecosystem.md │ │ ├── passive-skills.md │ │ ├── platforming.md │ │ └── weapons-and-crafting.md │ ├── lore.md │ └── monetization.md │ ├── policy.md │ ├── policy │ ├── assets.md │ └── cli.md │ ├── tech.md │ └── tech │ ├── anim-ref.md │ ├── anim.md │ ├── cli-howto.md │ ├── cli-ref.md │ ├── cli.md │ ├── script-ref.md │ └── script.md ├── engine └── src │ ├── animation.rs │ ├── assets.rs │ ├── assets │ ├── animation.rs │ ├── config.rs │ └── script.rs │ ├── audio.rs │ ├── audio │ └── mixer.rs │ ├── ballistics_math.rs │ ├── condition.rs │ ├── data.rs │ ├── gent.rs │ ├── input.rs │ ├── lib.rs │ ├── physics.rs │ ├── script.rs │ ├── script │ ├── common.rs │ └── label.rs │ └── time.rs ├── game └── src │ ├── appstate.rs │ ├── assets.rs │ ├── audio.rs │ ├── camera.rs │ ├── cli.rs │ ├── dev.rs │ ├── game.rs │ ├── game │ ├── attack │ │ ├── arc_attack.rs │ │ ├── mod.rs │ │ └── particles.rs │ ├── enemy.rs │ ├── game_over.rs │ ├── gentstate.rs │ ├── merchant.rs │ ├── physics.rs │ ├── pickups.rs │ ├── player │ │ ├── mod.rs │ │ ├── player_action.rs │ │ ├── player_anim.rs │ │ ├── player_behaviour.rs │ │ └── player_weapon.rs │ ├── switches.rs │ ├── wall.rs │ ├── xp_orbs.rs │ └── yak.rs │ ├── gamestate.rs │ ├── graphics │ ├── ability_cooldown.rs │ ├── dmg_numbers.rs │ ├── dof │ │ ├── dof.wgsl │ │ └── mod.rs │ ├── enemy_hp.rs │ ├── fog.rs │ ├── mod.rs │ ├── particles_util.rs │ ├── player_hp.rs │ └── post_processing │ │ ├── darkness.rs │ │ ├── floaters.rs │ │ ├── floaters.wgsl │ │ ├── mod.rs │ │ └── vignette.rs │ ├── level.rs │ ├── locale.rs │ ├── main.rs │ ├── parallax.rs │ ├── screens │ └── loading.rs │ ├── stepping_egui.rs │ ├── ui.rs │ └── ui │ ├── ability_widget.rs │ ├── console.rs │ ├── controls_overlay.rs │ ├── kill_counter.rs │ ├── mainmenu.rs │ ├── passives.rs │ ├── popup.rs │ └── skill_toolbar.rs └── rustfmt.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/.github/workflows/deploy-mdbook.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-rustdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/.github/workflows/deploy-rustdoc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/README.md -------------------------------------------------------------------------------- /assets/animations.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations.assets.ron -------------------------------------------------------------------------------- /assets/animations/base.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/base.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/000.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/000.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/000_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/000_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/001.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/001.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/001_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/001_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/002.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/002.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/002_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/002_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/003.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/003.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/003_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/003_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/004.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/004.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/004_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/004_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/005.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/005.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/005_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/005_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/006.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/006.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/006_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/006_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/007.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/007.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/007_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/007_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/008.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/008.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/008_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/008_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/009.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/009.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/009_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/009_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/010.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/010.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/010_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/010_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/011.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/011.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/011_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/011_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/012.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/012.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/012_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/012_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/013.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/013.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/013_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/013_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/014.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/014.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/014_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/014_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/015.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/015.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/015_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/015_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/016.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/016.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/016_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/016_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/017.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/017.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/017_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/017_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/018.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/018.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/018_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/018_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/019.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/019.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/019_1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/019_1f.png -------------------------------------------------------------------------------- /assets/animations/dialogue/MrSnafflesBackground.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/MrSnafflesBackground.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/MrSnafflesBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/MrSnafflesBackground.png -------------------------------------------------------------------------------- /assets/animations/dialogue/VagrantBackground.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/VagrantBackground.anim.toml -------------------------------------------------------------------------------- /assets/animations/dialogue/VagrantBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/dialogue/VagrantBackground.png -------------------------------------------------------------------------------- /assets/animations/merchant/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/merchant/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/merchant/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/merchant/Idle.png -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicAir.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicAir.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicAirSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicAirSheet.png -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicArrow.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicArrow.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicArrowSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicArrowSheet.png -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicIdle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicIdle.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicIdleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicIdleSheet.png -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicRun.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicRun.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/bow/BasicRunSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/bow/BasicRunSheet.png -------------------------------------------------------------------------------- /assets/animations/player/hammer/BasicAir.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/BasicAir.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/hammer/BasicAirSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/BasicAirSheet.png -------------------------------------------------------------------------------- /assets/animations/player/hammer/BasicIdle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/BasicIdle.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/hammer/BasicIdleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/BasicIdleSheet.png -------------------------------------------------------------------------------- /assets/animations/player/hammer/DashDown.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/DashDown.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/hammer/DashDownSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/DashDownSheet.png -------------------------------------------------------------------------------- /assets/animations/player/hammer/Whirling.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/Whirling.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/hammer/WhirlingSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/hammer/WhirlingSheet.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Dash.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Dash.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/Dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Dash.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Death.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Fall.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Fall.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/FallSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/FallSheet.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/IdleLookDown.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/IdleLookDown.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/IdleLookDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/IdleLookDown.png -------------------------------------------------------------------------------- /assets/animations/player/movement/IdleLookUp.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/IdleLookUp.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/IdleLookUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/IdleLookUp.png -------------------------------------------------------------------------------- /assets/animations/player/movement/IdleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/IdleSheet.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Jump.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Jump.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/JumpSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/JumpSheet.png -------------------------------------------------------------------------------- /assets/animations/player/movement/JumpSheet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/JumpSheet2.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Roll.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Roll.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/Roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Roll.png -------------------------------------------------------------------------------- /assets/animations/player/movement/Run.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/Run.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/RunSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/RunSheet.png -------------------------------------------------------------------------------- /assets/animations/player/movement/RunWithDamage.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/RunWithDamage.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/WallSlide.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/WallSlide.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/movement/WallSlide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/movement/WallSlide.png -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicAir.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicAir.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicAirSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicAirSheet.png -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicIdle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicIdle.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicIdleSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicIdleSheet.png -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicRun.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicRun.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/BasicRunSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/BasicRunSheet.png -------------------------------------------------------------------------------- /assets/animations/player/sword/DashDown.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/DashDown.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/DashDownSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/DashDownSheet.png -------------------------------------------------------------------------------- /assets/animations/player/sword/DashDownStrike.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/DashDownStrike.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/Whirling.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/Whirling.anim.toml -------------------------------------------------------------------------------- /assets/animations/player/sword/WhirlingSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/WhirlingSheet.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerDownward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerDownward.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerDownwardTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerDownwardTrail.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerForward.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerForwardTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerForwardTrail.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerUpward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerUpward.png -------------------------------------------------------------------------------- /assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerUpwardTrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/player/sword/flicker - to be implemented later/PlayerSwordFlickerUpwardTrail.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle01Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle01Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle02Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle02Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle03Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle03Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle04Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle04Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle05Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle05Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle06Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle06Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle07Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle07Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle08Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle08Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle09Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle09Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle10Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle10Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle11Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle11Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/Puzzle12Placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/Puzzle12Placeholder.png -------------------------------------------------------------------------------- /assets/animations/puzzles/SwitchBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/SwitchBig.png -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle01.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle01.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle02.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle02.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle03.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle03.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle04.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle04.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle05.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle05.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle06.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle06.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle07.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle07.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle08.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle08.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle09.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle09.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle10.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle10.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle11.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle11.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/puzzle12.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/puzzle12.anim.toml -------------------------------------------------------------------------------- /assets/animations/puzzles/switch.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/puzzles/switch.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Chase.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Chase.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Chase.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Defence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Defence.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Defense.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Defense.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/DefensiveAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/DefensiveAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/DefensiveAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/DefensiveAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/OffensiveAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/OffensiveAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/OffensiveAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/OffensiveAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/RangedAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/RangedAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/RangedAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/RangedAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Retreat.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Retreat.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Retreat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Retreat.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Sparks.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Sparks.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Sparks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Sparks.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/Walk.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/WalkTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/WalkTest.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier1/WalkTestttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier1/WalkTestttt.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Defence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Defence.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Defense.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Defense.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/RangedAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/RangedAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/RangedAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/RangedAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Sparks.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Sparks.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier2/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier2/Walk.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Defence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Defence.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Defense.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Defense.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/RangedAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/RangedAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/RangedAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/RangedAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/big/tier3/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/big/tier3/Walk.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Chase.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Chase.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Chase.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Jump.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Jump.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Jump.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/MeleeAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/MeleeAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/MeleeAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/MeleeAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier1/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier1/Walk.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Chase.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Chase.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Chase.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Jump.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Jump.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Jump.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/MeleeAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/MeleeAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/MeleeAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/MeleeAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier2/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier2/Walk.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Chase.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Chase.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Chase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Chase.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Death.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Death.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Death.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Decay.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Decay.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Decay.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Idle.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Jump.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Jump.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Jump.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/MeleeAttack.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/MeleeAttack.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/MeleeAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/MeleeAttack.png -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Walk.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Walk.anim.toml -------------------------------------------------------------------------------- /assets/animations/spider/small/tier3/Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/spider/small/tier3/Walk.png -------------------------------------------------------------------------------- /assets/animations/weapons/Hammer.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/weapons/Hammer.anim.toml -------------------------------------------------------------------------------- /assets/animations/weapons/Hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/weapons/Hammer.png -------------------------------------------------------------------------------- /assets/animations/weapons/Sword.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/weapons/Sword.anim.toml -------------------------------------------------------------------------------- /assets/animations/weapons/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/weapons/Sword.png -------------------------------------------------------------------------------- /assets/animations/yak/Idle.anim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/yak/Idle.anim.toml -------------------------------------------------------------------------------- /assets/animations/yak/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/animations/yak/Idle.png -------------------------------------------------------------------------------- /assets/audio.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio.assets.ron -------------------------------------------------------------------------------- /assets/audio/attack/DashDownImpact.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/DashDownImpact.flac -------------------------------------------------------------------------------- /assets/audio/attack/DashDownStart.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/DashDownStart.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerImpact1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerImpact1.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerImpact2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerImpact2.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerImpact3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerImpact3.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerImpact4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerImpact4.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwing1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwing1.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwing2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwing2.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwing3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwing3.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwing4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwing4.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwingDown1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwingDown1.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerSwingDown2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerSwingDown2.flac -------------------------------------------------------------------------------- /assets/audio/attack/HammerWhirl.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/HammerWhirl.flac -------------------------------------------------------------------------------- /assets/audio/attack/Impact1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Impact1.flac -------------------------------------------------------------------------------- /assets/audio/attack/Impact2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Impact2.flac -------------------------------------------------------------------------------- /assets/audio/attack/Impact3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Impact3.flac -------------------------------------------------------------------------------- /assets/audio/attack/Impact4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Impact4.flac -------------------------------------------------------------------------------- /assets/audio/attack/ImpactBass1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/ImpactBass1.flac -------------------------------------------------------------------------------- /assets/audio/attack/ImpactBass2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/ImpactBass2.flac -------------------------------------------------------------------------------- /assets/audio/attack/Shoot1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Shoot1.flac -------------------------------------------------------------------------------- /assets/audio/attack/Shoot2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Shoot2.flac -------------------------------------------------------------------------------- /assets/audio/attack/Shoot3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Shoot3.flac -------------------------------------------------------------------------------- /assets/audio/attack/Shoot4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Shoot4.flac -------------------------------------------------------------------------------- /assets/audio/attack/Slash1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Slash1.flac -------------------------------------------------------------------------------- /assets/audio/attack/Slash2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/Slash2.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact1.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact2.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact3.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact4.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact5.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact6.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordImpact7.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordImpact7.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordWhirl1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordWhirl1.flac -------------------------------------------------------------------------------- /assets/audio/attack/SwordWhirl2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/attack/SwordWhirl2.flac -------------------------------------------------------------------------------- /assets/audio/fx/PlayerGetsDamaged1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/fx/PlayerGetsDamaged1.flac -------------------------------------------------------------------------------- /assets/audio/fx/PlayerGetsDamaged2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/fx/PlayerGetsDamaged2.flac -------------------------------------------------------------------------------- /assets/audio/fx/PlayerGetsDamaged3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/fx/PlayerGetsDamaged3.flac -------------------------------------------------------------------------------- /assets/audio/fx/PlayerGetsDamaged4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/fx/PlayerGetsDamaged4.flac -------------------------------------------------------------------------------- /assets/audio/fx/XpOrbs.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/fx/XpOrbs.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash1a.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash1a.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash1b.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash1b.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash2a.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash2a.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash2b.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash2b.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash3a.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash3a.flac -------------------------------------------------------------------------------- /assets/audio/movement/Dash3b.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Dash3b.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallImpact1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallImpact1.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallImpact2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallImpact2.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallImpact3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallImpact3.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallImpact4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallImpact4.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart1.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart2.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart3.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart4.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart5.flac -------------------------------------------------------------------------------- /assets/audio/movement/FallStart6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/FallStart6.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart1.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart2.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart3.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart4.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart5.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart6.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpStart7.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpStart7.flac -------------------------------------------------------------------------------- /assets/audio/movement/JumpUp.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/JumpUp.flac -------------------------------------------------------------------------------- /assets/audio/movement/Slide1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Slide1.flac -------------------------------------------------------------------------------- /assets/audio/movement/Slide2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Slide2.flac -------------------------------------------------------------------------------- /assets/audio/movement/Slide3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Slide3.flac -------------------------------------------------------------------------------- /assets/audio/movement/Slide4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Slide4.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step1.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step10.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step10.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step11.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step11.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step12.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step12.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step13.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step13.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step14.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step14.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step15.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step15.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step2.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step3.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step4.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step5.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step6.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step7.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step7.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step8.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step8.flac -------------------------------------------------------------------------------- /assets/audio/movement/Step9.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/movement/Step9.flac -------------------------------------------------------------------------------- /assets/audio/music/Ambience1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/music/Ambience1.flac -------------------------------------------------------------------------------- /assets/audio/music/Music1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/music/Music1.flac -------------------------------------------------------------------------------- /assets/audio/music/Music2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/music/Music2.flac -------------------------------------------------------------------------------- /assets/audio/music/Music3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/music/Music3.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderAttack1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderAttack1.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderAttack2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderAttack2.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderDeath1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderDeath1.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderDeath2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderDeath2.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderDeath3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderDeath3.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep1.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep2.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep3.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep4.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep5.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep6.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep7.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep7.flac -------------------------------------------------------------------------------- /assets/audio/spider/BigSpiderStep8.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/BigSpiderStep8.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderAttack1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderAttack1.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderAttack2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderAttack2.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderAttack3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderAttack3.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderAttack4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderAttack4.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderDeath1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderDeath1.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderDeath2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderDeath2.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderDeath3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderDeath3.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep1.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep2.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep3.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep4.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep5.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep5.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep6.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep6.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep7.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep7.flac -------------------------------------------------------------------------------- /assets/audio/spider/SmallSpiderStep8.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/spider/SmallSpiderStep8.flac -------------------------------------------------------------------------------- /assets/audio/yak/Mooo1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/yak/Mooo1.flac -------------------------------------------------------------------------------- /assets/audio/yak/Mooo2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/yak/Mooo2.flac -------------------------------------------------------------------------------- /assets/audio/yak/Mooo3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/audio/yak/Mooo3.flac -------------------------------------------------------------------------------- /assets/enemy.cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/enemy.cfg.toml -------------------------------------------------------------------------------- /assets/font/Tektur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/font/Tektur-Bold.ttf -------------------------------------------------------------------------------- /assets/font/Tektur-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/font/Tektur-Medium.ttf -------------------------------------------------------------------------------- /assets/font/Tektur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/font/Tektur-Regular.ttf -------------------------------------------------------------------------------- /assets/fx/floater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/fx/floater.png -------------------------------------------------------------------------------- /assets/fx/xporb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/fx/xporb.png -------------------------------------------------------------------------------- /assets/gameplay.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/gameplay.assets.ron -------------------------------------------------------------------------------- /assets/items/passives/Bloodstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/Bloodstone.png -------------------------------------------------------------------------------- /assets/items/passives/CriticalRegeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/CriticalRegeneration.png -------------------------------------------------------------------------------- /assets/items/passives/DeadlyFeather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/DeadlyFeather.png -------------------------------------------------------------------------------- /assets/items/passives/FlamingHeart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/FlamingHeart.png -------------------------------------------------------------------------------- /assets/items/passives/FrenziedAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/FrenziedAttack.png -------------------------------------------------------------------------------- /assets/items/passives/GlowingShard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/GlowingShard.png -------------------------------------------------------------------------------- /assets/items/passives/HeavyBoots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/HeavyBoots.png -------------------------------------------------------------------------------- /assets/items/passives/IceDagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/IceDagger.png -------------------------------------------------------------------------------- /assets/items/passives/ObsidianNecklace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/ObsidianNecklace.png -------------------------------------------------------------------------------- /assets/items/passives/PackKiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/PackKiller.png -------------------------------------------------------------------------------- /assets/items/passives/ProtectiveSpirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/ProtectiveSpirit.png -------------------------------------------------------------------------------- /assets/items/passives/RabbitsFoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/RabbitsFoot.png -------------------------------------------------------------------------------- /assets/items/passives/SerpentRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/SerpentRing.png -------------------------------------------------------------------------------- /assets/items/passives/Sharpshooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/Sharpshooter.png -------------------------------------------------------------------------------- /assets/items/passives/VitalityOverclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/passives/VitalityOverclock.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA1.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA11.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA12.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA4.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA5.png -------------------------------------------------------------------------------- /assets/items/seeds/a/PlanetarySeedA8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/a/PlanetarySeedA8.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB1.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB12.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB3.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB4.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB7.png -------------------------------------------------------------------------------- /assets/items/seeds/b/PlanetarySeedB8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/b/PlanetarySeedB8.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC1.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC11.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC2.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC3.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC4.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC5.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC8.png -------------------------------------------------------------------------------- /assets/items/seeds/c/PlanetarySeedC9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/c/PlanetarySeedC9.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD1.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD2.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD3.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD6.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD7.png -------------------------------------------------------------------------------- /assets/items/seeds/d/PlanetarySeedD8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/d/PlanetarySeedD8.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE11.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE12.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE3.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE6.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE7.png -------------------------------------------------------------------------------- /assets/items/seeds/e/PlanetarySeedE8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/items/seeds/e/PlanetarySeedE8.png -------------------------------------------------------------------------------- /assets/levels.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels.assets.ron -------------------------------------------------------------------------------- /assets/levels/BackgroundTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/BackgroundTileset.png -------------------------------------------------------------------------------- /assets/levels/GrassProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/GrassProps.png -------------------------------------------------------------------------------- /assets/levels/IceMainTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/IceMainTileset.png -------------------------------------------------------------------------------- /assets/levels/IceProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/IceProps.png -------------------------------------------------------------------------------- /assets/levels/IciclesTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/IciclesTileset.png -------------------------------------------------------------------------------- /assets/levels/MainProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/MainProps.png -------------------------------------------------------------------------------- /assets/levels/MainTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/MainTileset.png -------------------------------------------------------------------------------- /assets/levels/MainTilesetAdditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/MainTilesetAdditions.png -------------------------------------------------------------------------------- /assets/levels/MainTilesetAdditions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/MainTilesetAdditions2.png -------------------------------------------------------------------------------- /assets/levels/OldMainTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/OldMainTileset.png -------------------------------------------------------------------------------- /assets/levels/SnowOverlayTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/SnowOverlayTileset.png -------------------------------------------------------------------------------- /assets/levels/TundraBackgroundTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/TundraBackgroundTiles.png -------------------------------------------------------------------------------- /assets/levels/TundraBackgroundTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/TundraBackgroundTileset.png -------------------------------------------------------------------------------- /assets/levels/TundraMainTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/TundraMainTileset.png -------------------------------------------------------------------------------- /assets/levels/TundraProps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/TundraProps.png -------------------------------------------------------------------------------- /assets/levels/TundraTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/TundraTileset.png -------------------------------------------------------------------------------- /assets/levels/geysers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/geysers.png -------------------------------------------------------------------------------- /assets/levels/level.01.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01.ldtk -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Background.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__FarBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__FarBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__FarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__FarBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Geysers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Geysers.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__GrassOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__GrassOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__IcePropsBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__IcePropsBack.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__IcePropsFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__IcePropsFront.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__IciclesOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__IciclesOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main2-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main2-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main2.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main3-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main3-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Main3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Main3.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__MainOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__MainOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__MiddleBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__MiddleBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__MiddleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__MiddleBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__NearBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__NearBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__NearBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__NearBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__SecretIce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__SecretIce.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__SecretTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__SecretTundra.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__SnowOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__SnowOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraFarBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraFarBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraFarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraFarBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraMain-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraMain-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraMain.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraMiddleBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraMiddleBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraMiddleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraMiddleBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraNearBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraNearBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraNearBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraNearBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraPropsBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraPropsBack.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__TundraPropsFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__TundraPropsFront.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Tundra_Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Tundra_Ice.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0__Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0__Water.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_0_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_0_bg.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Background.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__FarBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__FarBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__FarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__FarBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Geysers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Geysers.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__GrassOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__GrassOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__IcePropsBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__IcePropsBack.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__IcePropsFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__IcePropsFront.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__IciclesOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__IciclesOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main2-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main2-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main2.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main3-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main3-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Main3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Main3.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__MainOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__MainOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__MiddleBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__MiddleBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__MiddleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__MiddleBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__NearBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__NearBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__NearBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__NearBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__SecretIce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__SecretIce.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__SecretTundra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__SecretTundra.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__SnowOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__SnowOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraFarBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraFarBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraFarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraFarBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraMain-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraMain-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraMain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraMain.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraMiddleBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraMiddleBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraMiddleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraMiddleBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraNearBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraNearBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraNearBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraNearBackground.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraPropsBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraPropsBack.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__TundraPropsFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__TundraPropsFront.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Tundra_Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Tundra_Ice.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1__Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1__Water.png -------------------------------------------------------------------------------- /assets/levels/level.01/png/Level_1_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.01/png/Level_1_bg.png -------------------------------------------------------------------------------- /assets/levels/level.dev.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev.ldtk -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__Background.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__FarBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__FarBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__FarBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__FarBackground.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__IciclesOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__IciclesOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__Main-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__Main-int.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__Main.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__MainOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__MainOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__MiddleBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__MiddleBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__MiddleBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__MiddleBackground.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__NearBackground-int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__NearBackground-int.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__NearBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__NearBackground.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0__SnowOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0__SnowOverlay.png -------------------------------------------------------------------------------- /assets/levels/level.dev/png/Level_0_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/level.dev/png/Level_0_bg.png -------------------------------------------------------------------------------- /assets/levels/oldBackgroundTileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/oldBackgroundTileset.png -------------------------------------------------------------------------------- /assets/levels/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/levels/water.png -------------------------------------------------------------------------------- /assets/locale/bg-BG/bg-BG.ftl.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/bg-BG/bg-BG.ftl.ron -------------------------------------------------------------------------------- /assets/locale/bg-BG/menu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/bg-BG/menu.ftl -------------------------------------------------------------------------------- /assets/locale/en-US/en-US.ftl.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/en-US/en-US.ftl.ron -------------------------------------------------------------------------------- /assets/locale/en-US/menu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/en-US/menu.ftl -------------------------------------------------------------------------------- /assets/locale/ru-RU/menu.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/ru-RU/menu.ftl -------------------------------------------------------------------------------- /assets/locale/ru-RU/ru-RU.ftl.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/locale/ru-RU/ru-RU.ftl.ron -------------------------------------------------------------------------------- /assets/player.cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/player.cfg.toml -------------------------------------------------------------------------------- /assets/shaders/ability_cooldown.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/ability_cooldown.wgsl -------------------------------------------------------------------------------- /assets/shaders/enemy_hp.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/enemy_hp.wgsl -------------------------------------------------------------------------------- /assets/shaders/fog.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/fog.wgsl -------------------------------------------------------------------------------- /assets/shaders/perlin_noise_2d.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/perlin_noise_2d.wgsl -------------------------------------------------------------------------------- /assets/shaders/perlin_noise_3d.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/perlin_noise_3d.wgsl -------------------------------------------------------------------------------- /assets/shaders/player_hp.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/player_hp.wgsl -------------------------------------------------------------------------------- /assets/shaders/post_processing/darkness.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/post_processing/darkness.wgsl -------------------------------------------------------------------------------- /assets/shaders/post_processing/floaters_prepass.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/post_processing/floaters_prepass.wgsl -------------------------------------------------------------------------------- /assets/shaders/post_processing/floaters_render.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/post_processing/floaters_render.wgsl -------------------------------------------------------------------------------- /assets/shaders/post_processing/vignette.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/post_processing/vignette.wgsl -------------------------------------------------------------------------------- /assets/shaders/simplex_noise.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/shaders/simplex_noise.wgsl -------------------------------------------------------------------------------- /assets/sprites.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/sprites.assets.ron -------------------------------------------------------------------------------- /assets/test.cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/test.cfg.toml -------------------------------------------------------------------------------- /assets/test.script.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/test.script.toml -------------------------------------------------------------------------------- /assets/ui.assets.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui.assets.ron -------------------------------------------------------------------------------- /assets/ui/game/AttackSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/AttackSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/BowAttackSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/BowAttackSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/DashDownSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/DashDownSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/DashSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/DashSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/HammerAttackSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/HammerAttackSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/HammerWhirlSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/HammerWhirlSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/StealthSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/StealthSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/game/ToolbarFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/ToolbarFrame.png -------------------------------------------------------------------------------- /assets/ui/game/WhirlSkillIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/game/WhirlSkillIcon.png -------------------------------------------------------------------------------- /assets/ui/mainmenu/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/assets/ui/mainmenu/background.png -------------------------------------------------------------------------------- /doc/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/book.toml -------------------------------------------------------------------------------- /doc/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/SUMMARY.md -------------------------------------------------------------------------------- /doc/src/game-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design.md -------------------------------------------------------------------------------- /doc/src/game-design/art-direction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/art-direction.md -------------------------------------------------------------------------------- /doc/src/game-design/audience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/audience.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics/active-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics/active-skills.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics/creatures-ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics/creatures-ecosystem.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics/passive-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics/passive-skills.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics/platforming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics/platforming.md -------------------------------------------------------------------------------- /doc/src/game-design/game-mechanics/weapons-and-crafting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/game-mechanics/weapons-and-crafting.md -------------------------------------------------------------------------------- /doc/src/game-design/lore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/lore.md -------------------------------------------------------------------------------- /doc/src/game-design/monetization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/game-design/monetization.md -------------------------------------------------------------------------------- /doc/src/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/policy.md -------------------------------------------------------------------------------- /doc/src/policy/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/policy/assets.md -------------------------------------------------------------------------------- /doc/src/policy/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/policy/cli.md -------------------------------------------------------------------------------- /doc/src/tech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech.md -------------------------------------------------------------------------------- /doc/src/tech/anim-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/anim-ref.md -------------------------------------------------------------------------------- /doc/src/tech/anim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/anim.md -------------------------------------------------------------------------------- /doc/src/tech/cli-howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/cli-howto.md -------------------------------------------------------------------------------- /doc/src/tech/cli-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/cli-ref.md -------------------------------------------------------------------------------- /doc/src/tech/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/cli.md -------------------------------------------------------------------------------- /doc/src/tech/script-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/script-ref.md -------------------------------------------------------------------------------- /doc/src/tech/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/doc/src/tech/script.md -------------------------------------------------------------------------------- /engine/src/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/animation.rs -------------------------------------------------------------------------------- /engine/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/assets.rs -------------------------------------------------------------------------------- /engine/src/assets/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/assets/animation.rs -------------------------------------------------------------------------------- /engine/src/assets/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/assets/config.rs -------------------------------------------------------------------------------- /engine/src/assets/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/assets/script.rs -------------------------------------------------------------------------------- /engine/src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/audio.rs -------------------------------------------------------------------------------- /engine/src/audio/mixer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/audio/mixer.rs -------------------------------------------------------------------------------- /engine/src/ballistics_math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/ballistics_math.rs -------------------------------------------------------------------------------- /engine/src/condition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/condition.rs -------------------------------------------------------------------------------- /engine/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/data.rs -------------------------------------------------------------------------------- /engine/src/gent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/gent.rs -------------------------------------------------------------------------------- /engine/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/input.rs -------------------------------------------------------------------------------- /engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/lib.rs -------------------------------------------------------------------------------- /engine/src/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/physics.rs -------------------------------------------------------------------------------- /engine/src/script.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/script.rs -------------------------------------------------------------------------------- /engine/src/script/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/script/common.rs -------------------------------------------------------------------------------- /engine/src/script/label.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/script/label.rs -------------------------------------------------------------------------------- /engine/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/engine/src/time.rs -------------------------------------------------------------------------------- /game/src/appstate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/appstate.rs -------------------------------------------------------------------------------- /game/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/assets.rs -------------------------------------------------------------------------------- /game/src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/audio.rs -------------------------------------------------------------------------------- /game/src/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/camera.rs -------------------------------------------------------------------------------- /game/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/cli.rs -------------------------------------------------------------------------------- /game/src/dev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/dev.rs -------------------------------------------------------------------------------- /game/src/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game.rs -------------------------------------------------------------------------------- /game/src/game/attack/arc_attack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/attack/arc_attack.rs -------------------------------------------------------------------------------- /game/src/game/attack/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/attack/mod.rs -------------------------------------------------------------------------------- /game/src/game/attack/particles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/attack/particles.rs -------------------------------------------------------------------------------- /game/src/game/enemy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/enemy.rs -------------------------------------------------------------------------------- /game/src/game/game_over.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/game_over.rs -------------------------------------------------------------------------------- /game/src/game/gentstate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/gentstate.rs -------------------------------------------------------------------------------- /game/src/game/merchant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/merchant.rs -------------------------------------------------------------------------------- /game/src/game/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/physics.rs -------------------------------------------------------------------------------- /game/src/game/pickups.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/pickups.rs -------------------------------------------------------------------------------- /game/src/game/player/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/player/mod.rs -------------------------------------------------------------------------------- /game/src/game/player/player_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/player/player_action.rs -------------------------------------------------------------------------------- /game/src/game/player/player_anim.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/player/player_anim.rs -------------------------------------------------------------------------------- /game/src/game/player/player_behaviour.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/player/player_behaviour.rs -------------------------------------------------------------------------------- /game/src/game/player/player_weapon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/player/player_weapon.rs -------------------------------------------------------------------------------- /game/src/game/switches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/switches.rs -------------------------------------------------------------------------------- /game/src/game/wall.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/wall.rs -------------------------------------------------------------------------------- /game/src/game/xp_orbs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/xp_orbs.rs -------------------------------------------------------------------------------- /game/src/game/yak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/game/yak.rs -------------------------------------------------------------------------------- /game/src/gamestate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/gamestate.rs -------------------------------------------------------------------------------- /game/src/graphics/ability_cooldown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/ability_cooldown.rs -------------------------------------------------------------------------------- /game/src/graphics/dmg_numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/dmg_numbers.rs -------------------------------------------------------------------------------- /game/src/graphics/dof/dof.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/dof/dof.wgsl -------------------------------------------------------------------------------- /game/src/graphics/dof/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/dof/mod.rs -------------------------------------------------------------------------------- /game/src/graphics/enemy_hp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/enemy_hp.rs -------------------------------------------------------------------------------- /game/src/graphics/fog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/fog.rs -------------------------------------------------------------------------------- /game/src/graphics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/mod.rs -------------------------------------------------------------------------------- /game/src/graphics/particles_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/particles_util.rs -------------------------------------------------------------------------------- /game/src/graphics/player_hp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/player_hp.rs -------------------------------------------------------------------------------- /game/src/graphics/post_processing/darkness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/post_processing/darkness.rs -------------------------------------------------------------------------------- /game/src/graphics/post_processing/floaters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/post_processing/floaters.rs -------------------------------------------------------------------------------- /game/src/graphics/post_processing/floaters.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/post_processing/floaters.wgsl -------------------------------------------------------------------------------- /game/src/graphics/post_processing/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/post_processing/mod.rs -------------------------------------------------------------------------------- /game/src/graphics/post_processing/vignette.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/graphics/post_processing/vignette.rs -------------------------------------------------------------------------------- /game/src/level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/level.rs -------------------------------------------------------------------------------- /game/src/locale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/locale.rs -------------------------------------------------------------------------------- /game/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/main.rs -------------------------------------------------------------------------------- /game/src/parallax.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/parallax.rs -------------------------------------------------------------------------------- /game/src/screens/loading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/screens/loading.rs -------------------------------------------------------------------------------- /game/src/stepping_egui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/stepping_egui.rs -------------------------------------------------------------------------------- /game/src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui.rs -------------------------------------------------------------------------------- /game/src/ui/ability_widget.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/ability_widget.rs -------------------------------------------------------------------------------- /game/src/ui/console.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/console.rs -------------------------------------------------------------------------------- /game/src/ui/controls_overlay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/controls_overlay.rs -------------------------------------------------------------------------------- /game/src/ui/kill_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/kill_counter.rs -------------------------------------------------------------------------------- /game/src/ui/mainmenu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/mainmenu.rs -------------------------------------------------------------------------------- /game/src/ui/passives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/passives.rs -------------------------------------------------------------------------------- /game/src/ui/popup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/popup.rs -------------------------------------------------------------------------------- /game/src/ui/skill_toolbar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/game/src/ui/skill_toolbar.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSeekerGame/TheSeeker/HEAD/rustfmt.toml --------------------------------------------------------------------------------