├── .conform.yaml ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── conform.yml │ ├── draft.yml │ └── release.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md └── savegame-editor ├── .gitignore ├── README.md ├── components.json ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── assets │ ├── fonts │ │ └── adrip1.ttf │ ├── icons │ │ ├── dying_light_icon.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── icon.ico │ │ ├── icon.jpg │ │ ├── language.png │ │ ├── resize.png │ │ └── zombie.png │ ├── pictures │ │ ├── backgrounds │ │ │ ├── Background.jpg │ │ │ ├── batang.png │ │ │ ├── beast_wall.jpg │ │ │ ├── beast_workbench.jpg │ │ │ ├── dark_trader.jpg │ │ │ ├── drop-background.jpg │ │ │ ├── main-white.jpg │ │ │ ├── slider-1.jpg │ │ │ ├── slider-2.jpg │ │ │ ├── slider-3.jpg │ │ │ ├── slider-4.jpg │ │ │ ├── slider-5.jpg │ │ │ ├── slider-6.jpg │ │ │ ├── slider-7.jpg │ │ │ └── spooked.jpg │ │ ├── contributors │ │ │ ├── batang.png │ │ │ ├── caz.png │ │ │ ├── eric_playz.webp │ │ │ ├── mchawk.jpg │ │ │ └── zdashero.png │ │ ├── hawks-outpost.webp │ │ └── sponsors │ │ │ └── easily-spooked.jpeg │ └── react.svg ├── tauri.svg └── vite.svg ├── src-tauri ├── .gitignore ├── CRC_Bypass │ ├── CRCBypass.asi │ └── winmm.dll ├── Cargo.lock ├── Cargo.toml ├── Hawks_Outpost │ ├── Endgame │ │ ├── endgame.sav │ │ └── save.json │ ├── Ghost │ │ ├── ghost.sav │ │ └── save.json │ └── Spooky │ │ ├── christmas.sav │ │ └── save.json ├── IDs │ ├── Ammo.txt │ ├── Cash.txt │ ├── Collectable.txt │ ├── CraftComponent.txt │ ├── CraftPart.txt │ ├── Equipment.txt │ ├── EvolvingItem.txt │ ├── Firearm.txt │ ├── Flashlight.txt │ ├── InventoryItem.txt │ ├── ItemBundle.txt │ ├── Lockpick.txt │ ├── LootPack.txt │ ├── Medkit.txt │ ├── Melee.txt │ ├── Other.txt │ ├── OutfitPart.txt │ ├── Powerup.txt │ ├── SurvivorPack.txt │ ├── SyringeAntizin.txt │ ├── Throwable.txt │ ├── ThrowableLiquid.txt │ ├── Token.txt │ ├── Uncategorized.txt │ ├── Valuable.txt │ ├── VehicleUpgrade.txt │ └── Voucher.txt ├── Patched_Items │ ├── mchawk.csv │ ├── not_dropable.txt │ └── not_shareable.txt ├── build.rs ├── capabilities │ └── migrated.json ├── gen │ └── schemas │ │ ├── acl-manifests.json │ │ ├── capabilities.json │ │ ├── desktop-schema.json │ │ ├── linux-schema.json │ │ └── windows-schema.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── base │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── 32x32.png │ │ ├── Square107x107Logo.png │ │ ├── Square142x142Logo.png │ │ ├── Square150x150Logo.png │ │ ├── Square284x284Logo.png │ │ ├── Square30x30Logo.png │ │ ├── Square310x310Logo.png │ │ ├── Square44x44Logo.png │ │ ├── Square71x71Logo.png │ │ ├── Square89x89Logo.png │ │ ├── StoreLogo.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ └── icon.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── logger.rs │ ├── main.rs │ └── save_logic │ │ ├── bypass_crc.rs │ │ ├── file_analyser.rs │ │ ├── id_fetcher.rs │ │ ├── mod.rs │ │ ├── patched_items_fetcher.rs │ │ ├── save_outpost.rs │ │ ├── struct_data.rs │ │ └── test_saves.rs └── tauri.conf.json ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── custom │ │ ├── breadcrums-component.tsx │ │ ├── contributor-avatar-component.tsx │ │ ├── custom-navbar-component.tsx │ │ ├── data-table-component.tsx │ │ ├── helix-loader │ │ │ ├── helix-loader-component.css │ │ │ └── helix-loader-component.tsx │ │ ├── id-search-component.tsx │ │ ├── inventory-item-card.tsx │ │ ├── item-id-combobox-component.tsx │ │ ├── knowledge-carousel-component.tsx │ │ ├── outpost-carousel-component.tsx │ │ ├── sponsor-avatar-component.tsx │ │ └── theme-button.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── theme-provider.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ ├── typography.tsx │ │ └── use-toast.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── models │ ├── models.ts │ ├── save-models.ts │ ├── settings-manager.tsx │ └── settings-model.ts ├── pages │ ├── backpack-page.tsx │ ├── campaign-page.tsx │ ├── debug-page.tsx │ ├── ids-page.tsx │ ├── inventory-page.tsx │ ├── knowledge-vault.tsx │ ├── main-page.tsx │ ├── outpost-page.tsx │ ├── patched-items-page.tsx │ ├── player-page.tsx │ ├── settings-page.tsx │ ├── skills-page.tsx │ ├── sponsor-page.tsx │ ├── unlockables-page.tsx │ └── welcome-page.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.conform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.conform.yaml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/conform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/workflows/conform.yml -------------------------------------------------------------------------------- /.github/workflows/draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/workflows/draft.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/SECURITY.md -------------------------------------------------------------------------------- /savegame-editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/.gitignore -------------------------------------------------------------------------------- /savegame-editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/README.md -------------------------------------------------------------------------------- /savegame-editor/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/components.json -------------------------------------------------------------------------------- /savegame-editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/index.html -------------------------------------------------------------------------------- /savegame-editor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/package-lock.json -------------------------------------------------------------------------------- /savegame-editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/package.json -------------------------------------------------------------------------------- /savegame-editor/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/postcss.config.js -------------------------------------------------------------------------------- /savegame-editor/public/assets/fonts/adrip1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/fonts/adrip1.ttf -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/dying_light_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/dying_light_icon.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/file.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/folder.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/icon.ico -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/icon.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/language.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/resize.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/icons/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/icons/zombie.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/Background.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/batang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/batang.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/beast_wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/beast_wall.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/beast_workbench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/beast_workbench.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/dark_trader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/dark_trader.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/drop-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/drop-background.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/main-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/main-white.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-1.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-2.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-3.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-4.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-5.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-6.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/slider-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/slider-7.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/backgrounds/spooked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/backgrounds/spooked.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/contributors/batang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/contributors/batang.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/contributors/caz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/contributors/caz.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/contributors/eric_playz.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/contributors/eric_playz.webp -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/contributors/mchawk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/contributors/mchawk.jpg -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/contributors/zdashero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/contributors/zdashero.png -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/hawks-outpost.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/hawks-outpost.webp -------------------------------------------------------------------------------- /savegame-editor/public/assets/pictures/sponsors/easily-spooked.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/pictures/sponsors/easily-spooked.jpeg -------------------------------------------------------------------------------- /savegame-editor/public/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/assets/react.svg -------------------------------------------------------------------------------- /savegame-editor/public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/tauri.svg -------------------------------------------------------------------------------- /savegame-editor/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/public/vite.svg -------------------------------------------------------------------------------- /savegame-editor/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/.gitignore -------------------------------------------------------------------------------- /savegame-editor/src-tauri/CRC_Bypass/CRCBypass.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/CRC_Bypass/CRCBypass.asi -------------------------------------------------------------------------------- /savegame-editor/src-tauri/CRC_Bypass/winmm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/CRC_Bypass/winmm.dll -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Endgame/endgame.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Endgame/endgame.sav -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Endgame/save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Endgame/save.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Ghost/ghost.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Ghost/ghost.sav -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Ghost/save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Ghost/save.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Spooky/christmas.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Spooky/christmas.sav -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Hawks_Outpost/Spooky/save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Hawks_Outpost/Spooky/save.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Ammo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Ammo.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Cash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Cash.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Collectable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Collectable.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/CraftComponent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/CraftComponent.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/CraftPart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/CraftPart.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Equipment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Equipment.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/EvolvingItem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/EvolvingItem.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Firearm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Firearm.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Flashlight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Flashlight.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/InventoryItem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/InventoryItem.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/ItemBundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/ItemBundle.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Lockpick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Lockpick.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/LootPack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/LootPack.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Medkit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Medkit.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Melee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Melee.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Other.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/OutfitPart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/OutfitPart.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Powerup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Powerup.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/SurvivorPack.txt: -------------------------------------------------------------------------------- 1 | SurvivorPack_Test -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/SyringeAntizin.txt: -------------------------------------------------------------------------------- 1 | AntizinContainer -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Throwable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Throwable.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/ThrowableLiquid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/ThrowableLiquid.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Token.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Token.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Uncategorized.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Uncategorized.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Valuable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Valuable.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/VehicleUpgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/VehicleUpgrade.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/IDs/Voucher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/IDs/Voucher.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Patched_Items/mchawk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Patched_Items/mchawk.csv -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Patched_Items/not_dropable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Patched_Items/not_dropable.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/Patched_Items/not_shareable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/Patched_Items/not_shareable.txt -------------------------------------------------------------------------------- /savegame-editor/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/build.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/capabilities/migrated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/capabilities/migrated.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/gen/schemas/acl-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/gen/schemas/acl-manifests.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/gen/schemas/capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/gen/schemas/capabilities.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/gen/schemas/desktop-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/gen/schemas/desktop-schema.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/gen/schemas/linux-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/gen/schemas/linux-schema.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/gen/schemas/windows-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/gen/schemas/windows-schema.json -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/128x128.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/128x128@2x.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/32x32.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square107x107Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square142x142Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square150x150Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square284x284Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square30x30Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square310x310Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square44x44Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square71x71Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/Square89x89Logo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/StoreLogo.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/icon.icns -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/icon.ico -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/base/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/base/icon.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /savegame-editor/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/logger.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/main.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/bypass_crc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/bypass_crc.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/file_analyser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/file_analyser.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/id_fetcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/id_fetcher.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/mod.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/patched_items_fetcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/patched_items_fetcher.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/save_outpost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/save_outpost.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/struct_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/struct_data.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/src/save_logic/test_saves.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/src/save_logic/test_saves.rs -------------------------------------------------------------------------------- /savegame-editor/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /savegame-editor/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/App.css -------------------------------------------------------------------------------- /savegame-editor/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/App.tsx -------------------------------------------------------------------------------- /savegame-editor/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/assets/react.svg -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/breadcrums-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/breadcrums-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/contributor-avatar-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/contributor-avatar-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/custom-navbar-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/custom-navbar-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/data-table-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/data-table-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/helix-loader/helix-loader-component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/helix-loader/helix-loader-component.css -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/helix-loader/helix-loader-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/helix-loader/helix-loader-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/id-search-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/id-search-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/inventory-item-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/inventory-item-card.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/item-id-combobox-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/item-id-combobox-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/knowledge-carousel-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/knowledge-carousel-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/outpost-carousel-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/outpost-carousel-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/sponsor-avatar-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/sponsor-avatar-component.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/custom/theme-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/custom/theme-button.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/button.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/card.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/command.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/form.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/input.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/label.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/table.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/theme-provider.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/typography.tsx -------------------------------------------------------------------------------- /savegame-editor/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /savegame-editor/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/index.css -------------------------------------------------------------------------------- /savegame-editor/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/lib/utils.ts -------------------------------------------------------------------------------- /savegame-editor/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/main.tsx -------------------------------------------------------------------------------- /savegame-editor/src/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/models/models.ts -------------------------------------------------------------------------------- /savegame-editor/src/models/save-models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/models/save-models.ts -------------------------------------------------------------------------------- /savegame-editor/src/models/settings-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/models/settings-manager.tsx -------------------------------------------------------------------------------- /savegame-editor/src/models/settings-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/models/settings-model.ts -------------------------------------------------------------------------------- /savegame-editor/src/pages/backpack-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/backpack-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/campaign-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/campaign-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/debug-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/debug-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/ids-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/ids-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/inventory-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/inventory-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/knowledge-vault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/knowledge-vault.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/main-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/main-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/outpost-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/outpost-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/patched-items-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/patched-items-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/player-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/player-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/settings-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/settings-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/skills-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/skills-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/sponsor-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/sponsor-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/unlockables-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/unlockables-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/pages/welcome-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/src/pages/welcome-page.tsx -------------------------------------------------------------------------------- /savegame-editor/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /savegame-editor/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/tailwind.config.js -------------------------------------------------------------------------------- /savegame-editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/tsconfig.json -------------------------------------------------------------------------------- /savegame-editor/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/tsconfig.node.json -------------------------------------------------------------------------------- /savegame-editor/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marcel-TO/DL2_Save_Editor/HEAD/savegame-editor/vite.config.ts --------------------------------------------------------------------------------