├── .editorconfig ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── JSON └── .gitkeep ├── README.md ├── audio ├── clap.wav ├── clap_impact.wav ├── clap_punchy.wav ├── click-01.wav ├── click-02.wav ├── click_diff.wav ├── click_song.wav ├── laser_slam.wav ├── snare.wav ├── snare_lo.wav ├── tick_bt.wav └── tick_fx.wav ├── backgrounds └── fallback │ ├── bg.fs │ └── bg.lua ├── config-definitions.json ├── fonts ├── ContinuumMedium.ttf ├── RajdhaniBold.ttf ├── RajdhaniMedium.ttf ├── RajdhaniRegular.ttf ├── RajdhaniSemiBold.ttf └── SmartFontUI.otf ├── nautica.json ├── radar.lua ├── scripts ├── challengeresult.lua ├── collectiondialog.lua ├── collectionswindow │ ├── CollectionsWindow.lua │ └── CollectionsWindowContext.lua ├── common.lua ├── common │ ├── Animation.lua │ ├── Background.lua │ ├── Button.lua │ ├── ControlLabel.lua │ ├── DimmedNumber.lua │ ├── Easing.lua │ ├── Grid.lua │ ├── Image.lua │ ├── ItemCount.lua │ ├── ItemCursor.lua │ ├── JsonTable.lua │ ├── Knobs.lua │ ├── Label.lua │ ├── List.lua │ ├── Logger.lua │ ├── Mouse.lua │ ├── Scrollbar.lua │ ├── SearchBar.lua │ ├── Spinner.lua │ ├── Window.lua │ ├── constants │ │ ├── Clears.lua │ │ ├── Colors.lua │ │ ├── DifficultyNames.lua │ │ ├── Fonts.lua │ │ ├── GaugeProperties.lua │ │ ├── Grades.lua │ │ ├── RatingColors.lua │ │ └── TextAlignments.lua │ ├── debug.lua │ └── helpers │ │ ├── advanceSelection.lua │ │ ├── didPress.lua │ │ ├── getColor.lua │ │ ├── getDateTemplate.lua │ │ ├── getLaserColors.lua │ │ ├── getVolforce.lua │ │ ├── isOfficialChart.lua │ │ ├── loadJackets.lua │ │ ├── pulse.lua │ │ └── removeParentheses.lua ├── downloadscreen.lua ├── gameplay.lua ├── gameplay │ ├── BpmData.lua │ ├── Chain.lua │ ├── Console.lua │ ├── CritBar.lua │ ├── Earlate.lua │ ├── GameplayContext.lua │ ├── GaugeBar.lua │ ├── HitAnimations.lua │ ├── HitDeltaBar.lua │ ├── HoldAnimation.lua │ ├── LaneSpeed.lua │ ├── LaserAlerts.lua │ ├── LaserAnimations.lua │ ├── LaserCursors.lua │ ├── MockCritLine.lua │ ├── PlayerCard.lua │ ├── PracticeInfo.lua │ ├── RingAnimation.lua │ ├── ScoreDifference.lua │ ├── ScoreInfo.lua │ ├── SongInfo.lua │ ├── TrackInfo.lua │ ├── constants │ │ ├── HitAnimationProperties.lua │ │ ├── HitLanes.lua │ │ └── HoldAnimationProperties.lua │ └── helpers │ │ ├── makeHitAnimation.lua │ │ ├── makeHitAnimationQueues.lua │ │ ├── makeHoldAnimation.lua │ │ ├── makeHoldAnimationStates.lua │ │ ├── makeLaserAnimationStates.lua │ │ ├── makeLaserAnimations.lua │ │ └── makeLaserRings.lua ├── gameplaysettings │ ├── GameplaySettings.lua │ └── constants │ │ ├── GameplaySettingProperties.lua │ │ └── GameplaySettingsTabs.lua ├── gamesettingsdialog.lua ├── json.lua ├── lib │ └── json.lua ├── multiplayerscreen.lua ├── result.lua ├── results │ ├── ResultsContext.lua │ ├── ResultsGraphs.lua │ ├── ResultsPanel.lua │ ├── ResultsScoreList.lua │ ├── ResultsTrack.lua │ ├── constants │ │ ├── ResultsGraphsLabels.lua │ │ ├── ResultsPanelLabels.lua │ │ └── ResultsScoreListLabels.lua │ └── helpers │ │ ├── formatChart.lua │ │ ├── formatScore.lua │ │ ├── getGaugeData.lua │ │ ├── getGaugeValue.lua │ │ ├── getGraphData.lua │ │ ├── getHitStats.lua │ │ ├── getHitWindows.lua │ │ ├── getObjectRatings.lua │ │ ├── getRatings.lua │ │ ├── getScoreData.lua │ │ ├── getTimingData.lua │ │ └── getTrackObjects.lua ├── settingswindow │ ├── GameSetting.lua │ ├── SettingsWindow.lua │ ├── SettingsWindowContext.lua │ ├── constants │ │ ├── FormattedGameSettings.lua │ │ └── FormattedPracticeSettings.lua │ └── helpers │ │ ├── formatBool.lua │ │ ├── formatFloat.lua │ │ ├── formatInt.lua │ │ └── getSettingsProps.lua ├── songselect │ ├── DropdownMenu.lua │ ├── FolderStats.lua │ ├── FolderStatsCache.lua │ ├── LeaderboardCache.lua │ ├── Radar.lua │ ├── SongCache.lua │ ├── SongGrid.lua │ ├── SongPanel.lua │ ├── SongSelectContext.lua │ ├── SongSelectFooter.lua │ ├── SongSelectScoreList.lua │ ├── SortItem.lua │ ├── Top50.lua │ ├── background.lua │ ├── chalwheel.lua │ ├── constants │ │ ├── FolderStatsClears.lua │ │ ├── FolderStatsGrades.lua │ │ ├── RadarDb.lua │ │ ├── RadarLabels.lua │ │ ├── SongPanelLabels.lua │ │ ├── SongSelectScoreListLabels.lua │ │ └── Sorts.lua │ ├── filterwheel.lua │ ├── helpers │ │ ├── formatDropdownItem.lua │ │ ├── getDiffInOrder.lua │ │ ├── getFolderData.lua │ │ ├── getFolderScoreData.lua │ │ ├── getFolders.lua │ │ ├── getSegmentColors.lua │ │ └── menusClosed.lua │ ├── songwheel.lua │ └── sortwheel.lua ├── songtransition.lua ├── titlescreen.lua ├── titlescreen │ ├── Buttons.lua │ ├── Title.lua │ ├── TitlescreenContext.lua │ ├── UpdatePrompt.lua │ └── helpers │ │ ├── makeTitlescreenButtons.lua │ │ └── makeUpdatePromptButtons.lua ├── transition.lua └── volforcetarget │ ├── VolforceTarget.lua │ └── helpers │ ├── getCalculatorButtons.lua │ └── getVfRequirements.lua ├── shaders ├── background.vs ├── blackLaser.fs ├── blackLaser.vs ├── button.fs ├── button.vs ├── diffFrame.fs ├── diffFrame.vs ├── font.fs ├── font.vs ├── foreground.fs ├── gauge.fs ├── gauge.vs ├── guiButton.fs ├── guiButton.gs ├── guiButton.vs ├── guiColor.fs ├── guiColor.vs ├── guiGraph.fs ├── guiGraph.vs ├── guiTex.fs ├── guiTex.vs ├── holdbutton.fs ├── holdbutton.vs ├── image.fs ├── image.vs ├── laser.fs ├── laser.vs ├── overlay.fs ├── overlay.vs ├── particle.fs ├── particle.gs ├── particle.vs ├── progressBar.fs ├── progressBar.vs ├── songSelBack.fs ├── songSelBack.vs ├── sprite.fs ├── sprite.vs ├── track.fs ├── track.vs ├── trackCover.fs └── trackCover.vs ├── skin.cfg └── textures ├── badges ├── clear.png ├── full-combo.png ├── hard-clear.png ├── perfect.png └── played.png ├── bg.png ├── bg_portrait.png ├── button.png ├── buttonhold.png ├── cursor.png ├── fg_texture.png ├── fxbutton.png ├── fxbuttonhold.png ├── gameplay ├── avatar.png ├── console │ ├── base.png │ ├── button_1.png │ ├── button_2.png │ ├── button_3.png │ ├── button_4.png │ ├── button_5.png │ ├── button_6.png │ ├── front.png │ ├── glow_1.png │ ├── glow_2.png │ ├── ring_1.png │ └── ring_2.png ├── crit_bar │ ├── fill.png │ └── overlay.png ├── hit_animations │ ├── critical │ │ ├── sdvx │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ ├── 0003.png │ │ │ ├── 0004.png │ │ │ ├── 0005.png │ │ │ ├── 0006.png │ │ │ ├── 0007.png │ │ │ ├── 0008.png │ │ │ ├── 0009.png │ │ │ ├── 0010.png │ │ │ ├── 0011.png │ │ │ ├── 0012.png │ │ │ ├── 0013.png │ │ │ ├── 0014.png │ │ │ ├── 0015.png │ │ │ ├── 0016.png │ │ │ ├── 0017.png │ │ │ ├── 0018.png │ │ │ ├── 0019.png │ │ │ ├── 0020.png │ │ │ ├── 0021.png │ │ │ ├── 0022.png │ │ │ ├── 0023.png │ │ │ ├── 0024.png │ │ │ ├── 0025.png │ │ │ ├── 0026.png │ │ │ ├── 0027.png │ │ │ ├── 0028.png │ │ │ ├── 0029.png │ │ │ ├── 0030.png │ │ │ ├── 0031.png │ │ │ ├── 0032.png │ │ │ ├── 0033.png │ │ │ ├── 0034.png │ │ │ └── 0035.png │ │ └── standard │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ ├── 0003.png │ │ │ ├── 0004.png │ │ │ ├── 0005.png │ │ │ ├── 0006.png │ │ │ ├── 0007.png │ │ │ ├── 0008.png │ │ │ ├── 0009.png │ │ │ ├── 0010.png │ │ │ ├── 0011.png │ │ │ ├── 0012.png │ │ │ ├── 0013.png │ │ │ ├── 0014.png │ │ │ ├── 0015.png │ │ │ └── 0016.png │ ├── error │ │ └── sdvx │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ ├── 0003.png │ │ │ ├── 0004.png │ │ │ ├── 0005.png │ │ │ ├── 0006.png │ │ │ ├── 0007.png │ │ │ ├── 0008.png │ │ │ ├── 0009.png │ │ │ ├── 0010.png │ │ │ ├── 0011.png │ │ │ ├── 0012.png │ │ │ ├── 0013.png │ │ │ ├── 0014.png │ │ │ ├── 0015.png │ │ │ ├── 0016.png │ │ │ ├── 0017.png │ │ │ ├── 0018.png │ │ │ ├── 0019.png │ │ │ ├── 0020.png │ │ │ ├── 0021.png │ │ │ ├── 0022.png │ │ │ ├── 0023.png │ │ │ └── 0024.png │ ├── hold │ │ ├── sdvx │ │ │ ├── effect.png │ │ │ ├── inner │ │ │ │ ├── 0001.png │ │ │ │ ├── 0002.png │ │ │ │ ├── 0003.png │ │ │ │ ├── 0004.png │ │ │ │ ├── 0005.png │ │ │ │ ├── 0006.png │ │ │ │ ├── 0007.png │ │ │ │ ├── 0008.png │ │ │ │ ├── 0009.png │ │ │ │ ├── 0010.png │ │ │ │ ├── 0011.png │ │ │ │ ├── 0012.png │ │ │ │ ├── 0013.png │ │ │ │ ├── 0014.png │ │ │ │ ├── 0015.png │ │ │ │ ├── 0016.png │ │ │ │ ├── 0017.png │ │ │ │ ├── 0018.png │ │ │ │ ├── 0019.png │ │ │ │ ├── 0020.png │ │ │ │ ├── 0021.png │ │ │ │ ├── 0022.png │ │ │ │ ├── 0023.png │ │ │ │ ├── 0024.png │ │ │ │ ├── 0025.png │ │ │ │ ├── 0026.png │ │ │ │ ├── 0027.png │ │ │ │ ├── 0028.png │ │ │ │ ├── 0029.png │ │ │ │ └── 0030.png │ │ │ └── ring.png │ │ └── standard │ │ │ ├── effect.png │ │ │ └── ring.png │ ├── laser_ring_1.png │ ├── laser_ring_2.png │ ├── laser_slam_1 │ │ ├── 0001.png │ │ ├── 0002.png │ │ ├── 0003.png │ │ ├── 0004.png │ │ ├── 0005.png │ │ ├── 0006.png │ │ ├── 0007.png │ │ ├── 0008.png │ │ ├── 0009.png │ │ ├── 0010.png │ │ ├── 0011.png │ │ ├── 0012.png │ │ ├── 0013.png │ │ ├── 0014.png │ │ ├── 0015.png │ │ ├── 0016.png │ │ ├── 0017.png │ │ ├── 0018.png │ │ ├── 0019.png │ │ ├── 0020.png │ │ ├── 0021.png │ │ ├── 0022.png │ │ ├── 0023.png │ │ ├── 0024.png │ │ ├── 0025.png │ │ ├── 0026.png │ │ ├── 0027.png │ │ ├── 0028.png │ │ ├── 0029.png │ │ ├── 0030.png │ │ ├── 0031.png │ │ ├── 0032.png │ │ ├── 0033.png │ │ ├── 0034.png │ │ ├── 0035.png │ │ ├── 0036.png │ │ ├── 0037.png │ │ ├── 0038.png │ │ ├── 0039.png │ │ ├── 0040.png │ │ ├── 0041.png │ │ ├── 0042.png │ │ ├── 0043.png │ │ ├── 0044.png │ │ ├── 0045.png │ │ ├── 0046.png │ │ ├── 0047.png │ │ ├── 0048.png │ │ ├── 0049.png │ │ └── 0050.png │ ├── laser_slam_2 │ │ ├── 0001.png │ │ ├── 0002.png │ │ ├── 0003.png │ │ ├── 0004.png │ │ ├── 0005.png │ │ ├── 0006.png │ │ ├── 0007.png │ │ ├── 0008.png │ │ ├── 0009.png │ │ ├── 0010.png │ │ ├── 0011.png │ │ ├── 0012.png │ │ ├── 0013.png │ │ ├── 0014.png │ │ ├── 0015.png │ │ ├── 0016.png │ │ ├── 0017.png │ │ ├── 0018.png │ │ ├── 0019.png │ │ ├── 0020.png │ │ ├── 0021.png │ │ ├── 0022.png │ │ ├── 0023.png │ │ ├── 0024.png │ │ ├── 0025.png │ │ ├── 0026.png │ │ ├── 0027.png │ │ ├── 0028.png │ │ ├── 0029.png │ │ ├── 0030.png │ │ ├── 0031.png │ │ ├── 0032.png │ │ ├── 0033.png │ │ ├── 0034.png │ │ ├── 0035.png │ │ ├── 0036.png │ │ ├── 0037.png │ │ ├── 0038.png │ │ ├── 0039.png │ │ ├── 0040.png │ │ ├── 0041.png │ │ ├── 0042.png │ │ ├── 0043.png │ │ ├── 0044.png │ │ ├── 0045.png │ │ ├── 0046.png │ │ ├── 0047.png │ │ ├── 0048.png │ │ ├── 0049.png │ │ └── 0050.png │ ├── near │ │ ├── sdvx │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ ├── 0003.png │ │ │ ├── 0004.png │ │ │ ├── 0005.png │ │ │ ├── 0006.png │ │ │ ├── 0007.png │ │ │ ├── 0008.png │ │ │ ├── 0009.png │ │ │ ├── 0010.png │ │ │ ├── 0011.png │ │ │ ├── 0012.png │ │ │ ├── 0013.png │ │ │ ├── 0014.png │ │ │ ├── 0015.png │ │ │ ├── 0016.png │ │ │ ├── 0017.png │ │ │ ├── 0018.png │ │ │ ├── 0019.png │ │ │ ├── 0020.png │ │ │ ├── 0021.png │ │ │ ├── 0022.png │ │ │ ├── 0023.png │ │ │ ├── 0024.png │ │ │ ├── 0025.png │ │ │ ├── 0026.png │ │ │ ├── 0027.png │ │ │ ├── 0028.png │ │ │ ├── 0029.png │ │ │ ├── 0030.png │ │ │ ├── 0031.png │ │ │ ├── 0032.png │ │ │ ├── 0033.png │ │ │ ├── 0034.png │ │ │ └── 0035.png │ │ └── standard │ │ │ ├── 0001.png │ │ │ ├── 0002.png │ │ │ ├── 0003.png │ │ │ ├── 0004.png │ │ │ ├── 0005.png │ │ │ ├── 0006.png │ │ │ ├── 0007.png │ │ │ ├── 0008.png │ │ │ ├── 0009.png │ │ │ ├── 0010.png │ │ │ ├── 0011.png │ │ │ ├── 0012.png │ │ │ ├── 0013.png │ │ │ ├── 0014.png │ │ │ ├── 0015.png │ │ │ └── 0016.png │ └── s_critical │ │ └── sdvx │ │ ├── 0001.png │ │ ├── 0002.png │ │ ├── 0003.png │ │ ├── 0004.png │ │ ├── 0005.png │ │ ├── 0006.png │ │ ├── 0007.png │ │ ├── 0008.png │ │ ├── 0009.png │ │ ├── 0010.png │ │ ├── 0011.png │ │ ├── 0012.png │ │ ├── 0013.png │ │ ├── 0014.png │ │ ├── 0015.png │ │ ├── 0016.png │ │ ├── 0017.png │ │ ├── 0018.png │ │ ├── 0019.png │ │ ├── 0020.png │ │ ├── 0021.png │ │ ├── 0022.png │ │ ├── 0023.png │ │ ├── 0024.png │ │ ├── 0025.png │ │ ├── 0026.png │ │ ├── 0027.png │ │ ├── 0028.png │ │ ├── 0029.png │ │ ├── 0030.png │ │ ├── 0031.png │ │ ├── 0032.png │ │ ├── 0033.png │ │ ├── 0034.png │ │ └── 0035.png └── laser_cursors │ ├── fill.png │ ├── overlay.png │ ├── streak_bot.png │ └── streak_top.png ├── hitbeam0.png ├── hitbeam1.png ├── hitbeam2.png ├── hitbeam3.png ├── hitbeam4.png ├── hitcolors.png ├── image_warning.png ├── laser_entry_l.png ├── laser_entry_r.png ├── laser_exit_l.png ├── laser_exit_r.png ├── laser_l.png ├── laser_r.png ├── legend ├── BT-A.png ├── BT-AB.png ├── BT-ABC.png ├── BT-ABCD.png ├── BT-ABD.png ├── BT-AC.png ├── BT-ACD.png ├── BT-AD.png ├── BT-B.png ├── BT-BC.png ├── BT-BCD.png ├── BT-BD.png ├── BT-C.png ├── BT-CD.png ├── BT-D.png ├── FX-L.png ├── FX-LR.png ├── FX-R.png ├── knob-left.png ├── knob-right.png └── start.png ├── loading.png ├── pointer.png ├── pointer_overlay.png ├── score ├── A+.png ├── A.png ├── AA+.png ├── AA.png ├── AAA+.png ├── AAA.png ├── B.png ├── C.png ├── D.png └── S.png ├── score0.png ├── score1.png ├── score2.png ├── scorehit.png ├── settings_bg.png ├── settings_bg_portrait.png ├── song_select ├── jacket_gradient.png └── loading.png ├── tick.png ├── track.png └── trackCover.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | TODO.md 3 | JSON 4 | updateSkinCfg.js 5 | patch.zip -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /JSON/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/README.md -------------------------------------------------------------------------------- /audio/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/clap.wav -------------------------------------------------------------------------------- /audio/clap_impact.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/clap_impact.wav -------------------------------------------------------------------------------- /audio/clap_punchy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/clap_punchy.wav -------------------------------------------------------------------------------- /audio/click-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/click-01.wav -------------------------------------------------------------------------------- /audio/click-02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/click-02.wav -------------------------------------------------------------------------------- /audio/click_diff.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/click_diff.wav -------------------------------------------------------------------------------- /audio/click_song.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/click_song.wav -------------------------------------------------------------------------------- /audio/laser_slam.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/laser_slam.wav -------------------------------------------------------------------------------- /audio/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/snare.wav -------------------------------------------------------------------------------- /audio/snare_lo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/snare_lo.wav -------------------------------------------------------------------------------- /audio/tick_bt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/tick_bt.wav -------------------------------------------------------------------------------- /audio/tick_fx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/audio/tick_fx.wav -------------------------------------------------------------------------------- /backgrounds/fallback/bg.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/backgrounds/fallback/bg.fs -------------------------------------------------------------------------------- /backgrounds/fallback/bg.lua: -------------------------------------------------------------------------------- 1 | function render_bg(dt) 2 | end 3 | -------------------------------------------------------------------------------- /config-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/config-definitions.json -------------------------------------------------------------------------------- /fonts/ContinuumMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/ContinuumMedium.ttf -------------------------------------------------------------------------------- /fonts/RajdhaniBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/RajdhaniBold.ttf -------------------------------------------------------------------------------- /fonts/RajdhaniMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/RajdhaniMedium.ttf -------------------------------------------------------------------------------- /fonts/RajdhaniRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/RajdhaniRegular.ttf -------------------------------------------------------------------------------- /fonts/RajdhaniSemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/RajdhaniSemiBold.ttf -------------------------------------------------------------------------------- /fonts/SmartFontUI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/fonts/SmartFontUI.otf -------------------------------------------------------------------------------- /nautica.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /radar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/radar.lua -------------------------------------------------------------------------------- /scripts/challengeresult.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/challengeresult.lua -------------------------------------------------------------------------------- /scripts/collectiondialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/collectiondialog.lua -------------------------------------------------------------------------------- /scripts/collectionswindow/CollectionsWindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/collectionswindow/CollectionsWindow.lua -------------------------------------------------------------------------------- /scripts/collectionswindow/CollectionsWindowContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/collectionswindow/CollectionsWindowContext.lua -------------------------------------------------------------------------------- /scripts/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common.lua -------------------------------------------------------------------------------- /scripts/common/Animation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Animation.lua -------------------------------------------------------------------------------- /scripts/common/Background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Background.lua -------------------------------------------------------------------------------- /scripts/common/Button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Button.lua -------------------------------------------------------------------------------- /scripts/common/ControlLabel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/ControlLabel.lua -------------------------------------------------------------------------------- /scripts/common/DimmedNumber.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/DimmedNumber.lua -------------------------------------------------------------------------------- /scripts/common/Easing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Easing.lua -------------------------------------------------------------------------------- /scripts/common/Grid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Grid.lua -------------------------------------------------------------------------------- /scripts/common/Image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Image.lua -------------------------------------------------------------------------------- /scripts/common/ItemCount.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/ItemCount.lua -------------------------------------------------------------------------------- /scripts/common/ItemCursor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/ItemCursor.lua -------------------------------------------------------------------------------- /scripts/common/JsonTable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/JsonTable.lua -------------------------------------------------------------------------------- /scripts/common/Knobs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Knobs.lua -------------------------------------------------------------------------------- /scripts/common/Label.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Label.lua -------------------------------------------------------------------------------- /scripts/common/List.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/List.lua -------------------------------------------------------------------------------- /scripts/common/Logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Logger.lua -------------------------------------------------------------------------------- /scripts/common/Mouse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Mouse.lua -------------------------------------------------------------------------------- /scripts/common/Scrollbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Scrollbar.lua -------------------------------------------------------------------------------- /scripts/common/SearchBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/SearchBar.lua -------------------------------------------------------------------------------- /scripts/common/Spinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Spinner.lua -------------------------------------------------------------------------------- /scripts/common/Window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/Window.lua -------------------------------------------------------------------------------- /scripts/common/constants/Clears.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/Clears.lua -------------------------------------------------------------------------------- /scripts/common/constants/Colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/Colors.lua -------------------------------------------------------------------------------- /scripts/common/constants/DifficultyNames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/DifficultyNames.lua -------------------------------------------------------------------------------- /scripts/common/constants/Fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/Fonts.lua -------------------------------------------------------------------------------- /scripts/common/constants/GaugeProperties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/GaugeProperties.lua -------------------------------------------------------------------------------- /scripts/common/constants/Grades.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/Grades.lua -------------------------------------------------------------------------------- /scripts/common/constants/RatingColors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/RatingColors.lua -------------------------------------------------------------------------------- /scripts/common/constants/TextAlignments.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/constants/TextAlignments.lua -------------------------------------------------------------------------------- /scripts/common/debug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/debug.lua -------------------------------------------------------------------------------- /scripts/common/helpers/advanceSelection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/advanceSelection.lua -------------------------------------------------------------------------------- /scripts/common/helpers/didPress.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/didPress.lua -------------------------------------------------------------------------------- /scripts/common/helpers/getColor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/getColor.lua -------------------------------------------------------------------------------- /scripts/common/helpers/getDateTemplate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/getDateTemplate.lua -------------------------------------------------------------------------------- /scripts/common/helpers/getLaserColors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/getLaserColors.lua -------------------------------------------------------------------------------- /scripts/common/helpers/getVolforce.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/getVolforce.lua -------------------------------------------------------------------------------- /scripts/common/helpers/isOfficialChart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/isOfficialChart.lua -------------------------------------------------------------------------------- /scripts/common/helpers/loadJackets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/loadJackets.lua -------------------------------------------------------------------------------- /scripts/common/helpers/pulse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/pulse.lua -------------------------------------------------------------------------------- /scripts/common/helpers/removeParentheses.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/common/helpers/removeParentheses.lua -------------------------------------------------------------------------------- /scripts/downloadscreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/downloadscreen.lua -------------------------------------------------------------------------------- /scripts/gameplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay.lua -------------------------------------------------------------------------------- /scripts/gameplay/BpmData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/BpmData.lua -------------------------------------------------------------------------------- /scripts/gameplay/Chain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/Chain.lua -------------------------------------------------------------------------------- /scripts/gameplay/Console.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/Console.lua -------------------------------------------------------------------------------- /scripts/gameplay/CritBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/CritBar.lua -------------------------------------------------------------------------------- /scripts/gameplay/Earlate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/Earlate.lua -------------------------------------------------------------------------------- /scripts/gameplay/GameplayContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/GameplayContext.lua -------------------------------------------------------------------------------- /scripts/gameplay/GaugeBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/GaugeBar.lua -------------------------------------------------------------------------------- /scripts/gameplay/HitAnimations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/HitAnimations.lua -------------------------------------------------------------------------------- /scripts/gameplay/HitDeltaBar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/HitDeltaBar.lua -------------------------------------------------------------------------------- /scripts/gameplay/HoldAnimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/HoldAnimation.lua -------------------------------------------------------------------------------- /scripts/gameplay/LaneSpeed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/LaneSpeed.lua -------------------------------------------------------------------------------- /scripts/gameplay/LaserAlerts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/LaserAlerts.lua -------------------------------------------------------------------------------- /scripts/gameplay/LaserAnimations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/LaserAnimations.lua -------------------------------------------------------------------------------- /scripts/gameplay/LaserCursors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/LaserCursors.lua -------------------------------------------------------------------------------- /scripts/gameplay/MockCritLine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/MockCritLine.lua -------------------------------------------------------------------------------- /scripts/gameplay/PlayerCard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/PlayerCard.lua -------------------------------------------------------------------------------- /scripts/gameplay/PracticeInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/PracticeInfo.lua -------------------------------------------------------------------------------- /scripts/gameplay/RingAnimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/RingAnimation.lua -------------------------------------------------------------------------------- /scripts/gameplay/ScoreDifference.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/ScoreDifference.lua -------------------------------------------------------------------------------- /scripts/gameplay/ScoreInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/ScoreInfo.lua -------------------------------------------------------------------------------- /scripts/gameplay/SongInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/SongInfo.lua -------------------------------------------------------------------------------- /scripts/gameplay/TrackInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/TrackInfo.lua -------------------------------------------------------------------------------- /scripts/gameplay/constants/HitAnimationProperties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/constants/HitAnimationProperties.lua -------------------------------------------------------------------------------- /scripts/gameplay/constants/HitLanes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/constants/HitLanes.lua -------------------------------------------------------------------------------- /scripts/gameplay/constants/HoldAnimationProperties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/constants/HoldAnimationProperties.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeHitAnimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeHitAnimation.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeHitAnimationQueues.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeHitAnimationQueues.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeHoldAnimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeHoldAnimation.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeHoldAnimationStates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeHoldAnimationStates.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeLaserAnimationStates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeLaserAnimationStates.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeLaserAnimations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeLaserAnimations.lua -------------------------------------------------------------------------------- /scripts/gameplay/helpers/makeLaserRings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplay/helpers/makeLaserRings.lua -------------------------------------------------------------------------------- /scripts/gameplaysettings/GameplaySettings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplaysettings/GameplaySettings.lua -------------------------------------------------------------------------------- /scripts/gameplaysettings/constants/GameplaySettingProperties.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplaysettings/constants/GameplaySettingProperties.lua -------------------------------------------------------------------------------- /scripts/gameplaysettings/constants/GameplaySettingsTabs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gameplaysettings/constants/GameplaySettingsTabs.lua -------------------------------------------------------------------------------- /scripts/gamesettingsdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/gamesettingsdialog.lua -------------------------------------------------------------------------------- /scripts/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/json.lua -------------------------------------------------------------------------------- /scripts/lib/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/lib/json.lua -------------------------------------------------------------------------------- /scripts/multiplayerscreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/multiplayerscreen.lua -------------------------------------------------------------------------------- /scripts/result.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/result.lua -------------------------------------------------------------------------------- /scripts/results/ResultsContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/ResultsContext.lua -------------------------------------------------------------------------------- /scripts/results/ResultsGraphs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/ResultsGraphs.lua -------------------------------------------------------------------------------- /scripts/results/ResultsPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/ResultsPanel.lua -------------------------------------------------------------------------------- /scripts/results/ResultsScoreList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/ResultsScoreList.lua -------------------------------------------------------------------------------- /scripts/results/ResultsTrack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/ResultsTrack.lua -------------------------------------------------------------------------------- /scripts/results/constants/ResultsGraphsLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/constants/ResultsGraphsLabels.lua -------------------------------------------------------------------------------- /scripts/results/constants/ResultsPanelLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/constants/ResultsPanelLabels.lua -------------------------------------------------------------------------------- /scripts/results/constants/ResultsScoreListLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/constants/ResultsScoreListLabels.lua -------------------------------------------------------------------------------- /scripts/results/helpers/formatChart.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/formatChart.lua -------------------------------------------------------------------------------- /scripts/results/helpers/formatScore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/formatScore.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getGaugeData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getGaugeData.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getGaugeValue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getGaugeValue.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getGraphData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getGraphData.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getHitStats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getHitStats.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getHitWindows.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getHitWindows.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getObjectRatings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getObjectRatings.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getRatings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getRatings.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getScoreData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getScoreData.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getTimingData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getTimingData.lua -------------------------------------------------------------------------------- /scripts/results/helpers/getTrackObjects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/results/helpers/getTrackObjects.lua -------------------------------------------------------------------------------- /scripts/settingswindow/GameSetting.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/GameSetting.lua -------------------------------------------------------------------------------- /scripts/settingswindow/SettingsWindow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/SettingsWindow.lua -------------------------------------------------------------------------------- /scripts/settingswindow/SettingsWindowContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/SettingsWindowContext.lua -------------------------------------------------------------------------------- /scripts/settingswindow/constants/FormattedGameSettings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/constants/FormattedGameSettings.lua -------------------------------------------------------------------------------- /scripts/settingswindow/constants/FormattedPracticeSettings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/constants/FormattedPracticeSettings.lua -------------------------------------------------------------------------------- /scripts/settingswindow/helpers/formatBool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/helpers/formatBool.lua -------------------------------------------------------------------------------- /scripts/settingswindow/helpers/formatFloat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/helpers/formatFloat.lua -------------------------------------------------------------------------------- /scripts/settingswindow/helpers/formatInt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/helpers/formatInt.lua -------------------------------------------------------------------------------- /scripts/settingswindow/helpers/getSettingsProps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/settingswindow/helpers/getSettingsProps.lua -------------------------------------------------------------------------------- /scripts/songselect/DropdownMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/DropdownMenu.lua -------------------------------------------------------------------------------- /scripts/songselect/FolderStats.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/FolderStats.lua -------------------------------------------------------------------------------- /scripts/songselect/FolderStatsCache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/FolderStatsCache.lua -------------------------------------------------------------------------------- /scripts/songselect/LeaderboardCache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/LeaderboardCache.lua -------------------------------------------------------------------------------- /scripts/songselect/Radar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/Radar.lua -------------------------------------------------------------------------------- /scripts/songselect/SongCache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongCache.lua -------------------------------------------------------------------------------- /scripts/songselect/SongGrid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongGrid.lua -------------------------------------------------------------------------------- /scripts/songselect/SongPanel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongPanel.lua -------------------------------------------------------------------------------- /scripts/songselect/SongSelectContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongSelectContext.lua -------------------------------------------------------------------------------- /scripts/songselect/SongSelectFooter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongSelectFooter.lua -------------------------------------------------------------------------------- /scripts/songselect/SongSelectScoreList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SongSelectScoreList.lua -------------------------------------------------------------------------------- /scripts/songselect/SortItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/SortItem.lua -------------------------------------------------------------------------------- /scripts/songselect/Top50.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/Top50.lua -------------------------------------------------------------------------------- /scripts/songselect/background.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/background.lua -------------------------------------------------------------------------------- /scripts/songselect/chalwheel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/chalwheel.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/FolderStatsClears.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/FolderStatsClears.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/FolderStatsGrades.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/FolderStatsGrades.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/RadarDb.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/RadarDb.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/RadarLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/RadarLabels.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/SongPanelLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/SongPanelLabels.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/SongSelectScoreListLabels.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/SongSelectScoreListLabels.lua -------------------------------------------------------------------------------- /scripts/songselect/constants/Sorts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/constants/Sorts.lua -------------------------------------------------------------------------------- /scripts/songselect/filterwheel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/filterwheel.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/formatDropdownItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/formatDropdownItem.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/getDiffInOrder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/getDiffInOrder.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/getFolderData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/getFolderData.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/getFolderScoreData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/getFolderScoreData.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/getFolders.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/getFolders.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/getSegmentColors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/getSegmentColors.lua -------------------------------------------------------------------------------- /scripts/songselect/helpers/menusClosed.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/helpers/menusClosed.lua -------------------------------------------------------------------------------- /scripts/songselect/songwheel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/songwheel.lua -------------------------------------------------------------------------------- /scripts/songselect/sortwheel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songselect/sortwheel.lua -------------------------------------------------------------------------------- /scripts/songtransition.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/songtransition.lua -------------------------------------------------------------------------------- /scripts/titlescreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen.lua -------------------------------------------------------------------------------- /scripts/titlescreen/Buttons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/Buttons.lua -------------------------------------------------------------------------------- /scripts/titlescreen/Title.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/Title.lua -------------------------------------------------------------------------------- /scripts/titlescreen/TitlescreenContext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/TitlescreenContext.lua -------------------------------------------------------------------------------- /scripts/titlescreen/UpdatePrompt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/UpdatePrompt.lua -------------------------------------------------------------------------------- /scripts/titlescreen/helpers/makeTitlescreenButtons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/helpers/makeTitlescreenButtons.lua -------------------------------------------------------------------------------- /scripts/titlescreen/helpers/makeUpdatePromptButtons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/titlescreen/helpers/makeUpdatePromptButtons.lua -------------------------------------------------------------------------------- /scripts/transition.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/transition.lua -------------------------------------------------------------------------------- /scripts/volforcetarget/VolforceTarget.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/volforcetarget/VolforceTarget.lua -------------------------------------------------------------------------------- /scripts/volforcetarget/helpers/getCalculatorButtons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/volforcetarget/helpers/getCalculatorButtons.lua -------------------------------------------------------------------------------- /scripts/volforcetarget/helpers/getVfRequirements.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/scripts/volforcetarget/helpers/getVfRequirements.lua -------------------------------------------------------------------------------- /shaders/background.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/background.vs -------------------------------------------------------------------------------- /shaders/blackLaser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/blackLaser.fs -------------------------------------------------------------------------------- /shaders/blackLaser.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/blackLaser.vs -------------------------------------------------------------------------------- /shaders/button.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/button.fs -------------------------------------------------------------------------------- /shaders/button.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/button.vs -------------------------------------------------------------------------------- /shaders/diffFrame.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/diffFrame.fs -------------------------------------------------------------------------------- /shaders/diffFrame.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/diffFrame.vs -------------------------------------------------------------------------------- /shaders/font.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/font.fs -------------------------------------------------------------------------------- /shaders/font.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/font.vs -------------------------------------------------------------------------------- /shaders/foreground.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/foreground.fs -------------------------------------------------------------------------------- /shaders/gauge.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/gauge.fs -------------------------------------------------------------------------------- /shaders/gauge.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/gauge.vs -------------------------------------------------------------------------------- /shaders/guiButton.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiButton.fs -------------------------------------------------------------------------------- /shaders/guiButton.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiButton.gs -------------------------------------------------------------------------------- /shaders/guiButton.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiButton.vs -------------------------------------------------------------------------------- /shaders/guiColor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiColor.fs -------------------------------------------------------------------------------- /shaders/guiColor.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiColor.vs -------------------------------------------------------------------------------- /shaders/guiGraph.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiGraph.fs -------------------------------------------------------------------------------- /shaders/guiGraph.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiGraph.vs -------------------------------------------------------------------------------- /shaders/guiTex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiTex.fs -------------------------------------------------------------------------------- /shaders/guiTex.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/guiTex.vs -------------------------------------------------------------------------------- /shaders/holdbutton.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/holdbutton.fs -------------------------------------------------------------------------------- /shaders/holdbutton.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/holdbutton.vs -------------------------------------------------------------------------------- /shaders/image.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/image.fs -------------------------------------------------------------------------------- /shaders/image.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/image.vs -------------------------------------------------------------------------------- /shaders/laser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/laser.fs -------------------------------------------------------------------------------- /shaders/laser.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/laser.vs -------------------------------------------------------------------------------- /shaders/overlay.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/overlay.fs -------------------------------------------------------------------------------- /shaders/overlay.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/overlay.vs -------------------------------------------------------------------------------- /shaders/particle.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/particle.fs -------------------------------------------------------------------------------- /shaders/particle.gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/particle.gs -------------------------------------------------------------------------------- /shaders/particle.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/particle.vs -------------------------------------------------------------------------------- /shaders/progressBar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/progressBar.fs -------------------------------------------------------------------------------- /shaders/progressBar.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/progressBar.vs -------------------------------------------------------------------------------- /shaders/songSelBack.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/songSelBack.fs -------------------------------------------------------------------------------- /shaders/songSelBack.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/songSelBack.vs -------------------------------------------------------------------------------- /shaders/sprite.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/sprite.fs -------------------------------------------------------------------------------- /shaders/sprite.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/sprite.vs -------------------------------------------------------------------------------- /shaders/track.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/track.fs -------------------------------------------------------------------------------- /shaders/track.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/track.vs -------------------------------------------------------------------------------- /shaders/trackCover.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/trackCover.fs -------------------------------------------------------------------------------- /shaders/trackCover.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/shaders/trackCover.vs -------------------------------------------------------------------------------- /skin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/skin.cfg -------------------------------------------------------------------------------- /textures/badges/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/badges/clear.png -------------------------------------------------------------------------------- /textures/badges/full-combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/badges/full-combo.png -------------------------------------------------------------------------------- /textures/badges/hard-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/badges/hard-clear.png -------------------------------------------------------------------------------- /textures/badges/perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/badges/perfect.png -------------------------------------------------------------------------------- /textures/badges/played.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/badges/played.png -------------------------------------------------------------------------------- /textures/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/bg.png -------------------------------------------------------------------------------- /textures/bg_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/bg_portrait.png -------------------------------------------------------------------------------- /textures/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/button.png -------------------------------------------------------------------------------- /textures/buttonhold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/buttonhold.png -------------------------------------------------------------------------------- /textures/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/cursor.png -------------------------------------------------------------------------------- /textures/fg_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/fg_texture.png -------------------------------------------------------------------------------- /textures/fxbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/fxbutton.png -------------------------------------------------------------------------------- /textures/fxbuttonhold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/fxbuttonhold.png -------------------------------------------------------------------------------- /textures/gameplay/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/avatar.png -------------------------------------------------------------------------------- /textures/gameplay/console/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/base.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_1.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_2.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_3.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_4.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_5.png -------------------------------------------------------------------------------- /textures/gameplay/console/button_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/button_6.png -------------------------------------------------------------------------------- /textures/gameplay/console/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/front.png -------------------------------------------------------------------------------- /textures/gameplay/console/glow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/glow_1.png -------------------------------------------------------------------------------- /textures/gameplay/console/glow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/glow_2.png -------------------------------------------------------------------------------- /textures/gameplay/console/ring_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/ring_1.png -------------------------------------------------------------------------------- /textures/gameplay/console/ring_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/console/ring_2.png -------------------------------------------------------------------------------- /textures/gameplay/crit_bar/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/crit_bar/fill.png -------------------------------------------------------------------------------- /textures/gameplay/crit_bar/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/crit_bar/overlay.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0031.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0032.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0033.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0034.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/sdvx/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/sdvx/0035.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/critical/standard/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/critical/standard/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/error/sdvx/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/error/sdvx/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/effect.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/inner/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/inner/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/sdvx/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/sdvx/ring.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/standard/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/standard/effect.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/hold/standard/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/hold/standard/ring.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_ring_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_ring_1.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_ring_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_ring_2.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0031.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0032.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0033.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0034.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0035.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0036.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0037.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0038.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0039.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0040.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0041.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0042.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0043.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0044.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0045.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0046.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0047.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0048.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0049.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_1/0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_1/0050.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0031.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0032.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0033.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0034.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0035.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0036.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0037.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0038.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0039.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0040.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0041.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0042.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0043.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0044.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0045.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0046.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0047.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0048.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0049.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/laser_slam_2/0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/laser_slam_2/0050.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0031.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0032.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0033.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0034.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/sdvx/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/sdvx/0035.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/near/standard/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/near/standard/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0001.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0002.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0003.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0004.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0005.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0006.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0007.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0008.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0009.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0010.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0011.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0012.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0013.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0014.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0015.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0016.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0017.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0018.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0019.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0020.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0021.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0022.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0023.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0024.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0025.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0026.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0027.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0028.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0029.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0030.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0031.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0032.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0033.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0034.png -------------------------------------------------------------------------------- /textures/gameplay/hit_animations/s_critical/sdvx/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/hit_animations/s_critical/sdvx/0035.png -------------------------------------------------------------------------------- /textures/gameplay/laser_cursors/fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/laser_cursors/fill.png -------------------------------------------------------------------------------- /textures/gameplay/laser_cursors/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/laser_cursors/overlay.png -------------------------------------------------------------------------------- /textures/gameplay/laser_cursors/streak_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/laser_cursors/streak_bot.png -------------------------------------------------------------------------------- /textures/gameplay/laser_cursors/streak_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/gameplay/laser_cursors/streak_top.png -------------------------------------------------------------------------------- /textures/hitbeam0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitbeam0.png -------------------------------------------------------------------------------- /textures/hitbeam1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitbeam1.png -------------------------------------------------------------------------------- /textures/hitbeam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitbeam2.png -------------------------------------------------------------------------------- /textures/hitbeam3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitbeam3.png -------------------------------------------------------------------------------- /textures/hitbeam4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitbeam4.png -------------------------------------------------------------------------------- /textures/hitcolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/hitcolors.png -------------------------------------------------------------------------------- /textures/image_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/image_warning.png -------------------------------------------------------------------------------- /textures/laser_entry_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_entry_l.png -------------------------------------------------------------------------------- /textures/laser_entry_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_entry_r.png -------------------------------------------------------------------------------- /textures/laser_exit_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_exit_l.png -------------------------------------------------------------------------------- /textures/laser_exit_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_exit_r.png -------------------------------------------------------------------------------- /textures/laser_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_l.png -------------------------------------------------------------------------------- /textures/laser_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/laser_r.png -------------------------------------------------------------------------------- /textures/legend/BT-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-A.png -------------------------------------------------------------------------------- /textures/legend/BT-AB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-AB.png -------------------------------------------------------------------------------- /textures/legend/BT-ABC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-ABC.png -------------------------------------------------------------------------------- /textures/legend/BT-ABCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-ABCD.png -------------------------------------------------------------------------------- /textures/legend/BT-ABD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-ABD.png -------------------------------------------------------------------------------- /textures/legend/BT-AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-AC.png -------------------------------------------------------------------------------- /textures/legend/BT-ACD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-ACD.png -------------------------------------------------------------------------------- /textures/legend/BT-AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-AD.png -------------------------------------------------------------------------------- /textures/legend/BT-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-B.png -------------------------------------------------------------------------------- /textures/legend/BT-BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-BC.png -------------------------------------------------------------------------------- /textures/legend/BT-BCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-BCD.png -------------------------------------------------------------------------------- /textures/legend/BT-BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-BD.png -------------------------------------------------------------------------------- /textures/legend/BT-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-C.png -------------------------------------------------------------------------------- /textures/legend/BT-CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-CD.png -------------------------------------------------------------------------------- /textures/legend/BT-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/BT-D.png -------------------------------------------------------------------------------- /textures/legend/FX-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/FX-L.png -------------------------------------------------------------------------------- /textures/legend/FX-LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/FX-LR.png -------------------------------------------------------------------------------- /textures/legend/FX-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/FX-R.png -------------------------------------------------------------------------------- /textures/legend/knob-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/knob-left.png -------------------------------------------------------------------------------- /textures/legend/knob-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/knob-right.png -------------------------------------------------------------------------------- /textures/legend/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/legend/start.png -------------------------------------------------------------------------------- /textures/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/loading.png -------------------------------------------------------------------------------- /textures/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/pointer.png -------------------------------------------------------------------------------- /textures/pointer_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/pointer_overlay.png -------------------------------------------------------------------------------- /textures/score/A+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/A+.png -------------------------------------------------------------------------------- /textures/score/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/A.png -------------------------------------------------------------------------------- /textures/score/AA+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/AA+.png -------------------------------------------------------------------------------- /textures/score/AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/AA.png -------------------------------------------------------------------------------- /textures/score/AAA+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/AAA+.png -------------------------------------------------------------------------------- /textures/score/AAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/AAA.png -------------------------------------------------------------------------------- /textures/score/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/B.png -------------------------------------------------------------------------------- /textures/score/C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/C.png -------------------------------------------------------------------------------- /textures/score/D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/D.png -------------------------------------------------------------------------------- /textures/score/S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score/S.png -------------------------------------------------------------------------------- /textures/score0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score0.png -------------------------------------------------------------------------------- /textures/score1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score1.png -------------------------------------------------------------------------------- /textures/score2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/score2.png -------------------------------------------------------------------------------- /textures/scorehit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/scorehit.png -------------------------------------------------------------------------------- /textures/settings_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/settings_bg.png -------------------------------------------------------------------------------- /textures/settings_bg_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/settings_bg_portrait.png -------------------------------------------------------------------------------- /textures/song_select/jacket_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/song_select/jacket_gradient.png -------------------------------------------------------------------------------- /textures/song_select/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/song_select/loading.png -------------------------------------------------------------------------------- /textures/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/tick.png -------------------------------------------------------------------------------- /textures/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/track.png -------------------------------------------------------------------------------- /textures/trackCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hoshikara/Nightfall/HEAD/textures/trackCover.png --------------------------------------------------------------------------------