]> git.smokeofanarchy.ru Git - space-station-14.git/commit
Salvage dungeons (#14520)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Fri, 10 Mar 2023 05:41:22 +0000 (16:41 +1100)
committerGitHub <noreply@github.com>
Fri, 10 Mar 2023 05:41:22 +0000 (16:41 +1100)
commit6157dfa3c029d74d2cc4deea6af6fac832fe6b1b
tree7c626fc9d936a8e4ad716981c44a6fdcd79fc2e0
parent214ca06997e49bf9f9100aaefe0d149ef14eedba
Salvage dungeons (#14520)
145 files changed:
Content.Client/Entry/EntryPoint.cs
Content.Client/IconSmoothing/IconSmoothComponent.cs
Content.Client/IconSmoothing/IconSmoothSystem.cs
Content.Client/Lobby/UI/LobbyCharacterPreviewPanel.cs
Content.Client/Parallax/ParallaxGenerator.cs
Content.Client/Salvage/SalvageSystem.cs [new file with mode: 0644]
Content.Client/Salvage/UI/SalvageExpeditionConsoleBoundUserInterface.cs [new file with mode: 0644]
Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml [new file with mode: 0644]
Content.Client/Salvage/UI/SalvageExpeditionWindow.xaml.cs [new file with mode: 0644]
Content.IntegrationTests/Tests/Procedural/DungeonTests.cs [new file with mode: 0644]
Content.Server/CPUJob/JobQueues/Queues/JobQueue.cs
Content.Server/Cargo/Systems/CargoSystem.cs
Content.Server/Construction/AnchorableSystem.cs
Content.Server/Decals/DecalSystem.cs
Content.Server/NPC/Pathfinding/PathfindingSystem.Common.cs
Content.Server/NPC/Pathfinding/PathfindingSystem.Distance.cs
Content.Server/NPC/Pathfinding/PathfindingSystem.Grid.cs
Content.Server/NPC/Pathfinding/PathfindingSystem.Helper.cs [new file with mode: 0644]
Content.Server/Parallax/BiomeSystem.cs
Content.Server/Pinpointer/ServerPinpointerSystem.cs
Content.Server/Procedural/DungeonAtlasTemplateComponent.cs [new file with mode: 0644]
Content.Server/Procedural/DungeonJob.Generator.cs [new file with mode: 0644]
Content.Server/Procedural/DungeonJob.PostGen.cs [new file with mode: 0644]
Content.Server/Procedural/DungeonJob.cs [new file with mode: 0644]
Content.Server/Procedural/DungeonSystem.Commands.cs [new file with mode: 0644]
Content.Server/Procedural/DungeonSystem.cs [new file with mode: 0644]
Content.Server/Salvage/SalvageMapPrototype.cs
Content.Server/Salvage/SalvageSystem.cs
Content.Server/Shuttles/Events/FTLCompletedEvent.cs [moved from Content.Server/Shuttles/Events/HyperspaceJumpCompletedEvent.cs with 74% similarity]
Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs
Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs
Content.Shared/CCVar/CCVars.cs
Content.Shared/Movement/Systems/SharedMoverController.cs
Content.Shared/Parallax/Biomes/BiomeComponent.cs
Content.Shared/Parallax/Biomes/BiomePrototype.cs
Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs
Content.Shared/Procedural/Dungeon.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonConfigPrototype.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonGenerators/IDunGen.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonGenerators/PrefabDunGen.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonPath.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonPresetPrototype.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonRoom.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonRoomPackPrototype.cs [new file with mode: 0644]
Content.Shared/Procedural/DungeonRoomPrototype.cs [new file with mode: 0644]
Content.Shared/Procedural/Loot/ClusterLoot.cs [new file with mode: 0644]
Content.Shared/Procedural/Loot/IDungeonLoot.cs [new file with mode: 0644]
Content.Shared/Procedural/Loot/SalvageLootPrototype.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/BoundaryWallPostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/EntrancePostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/ExternalWindowPostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/IPostDunGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/InternalWindowPostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/MiddleConnectionPostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/PostGeneration/WallMountPostGen.cs [new file with mode: 0644]
Content.Shared/Procedural/Rewards/BankReward.cs [new file with mode: 0644]
Content.Shared/Procedural/Rewards/ISalvageReward.cs [new file with mode: 0644]
Content.Shared/Procedural/Rewards/SalvageRewardPrototype.cs [new file with mode: 0644]
Content.Shared/Random/Helpers/SharedRandomExtensions.cs
Content.Shared/Salvage/Expeditions/Extraction/SalvageExtraction.cs [new file with mode: 0644]
Content.Shared/Salvage/Expeditions/IFactionExpeditionConfig.cs [new file with mode: 0644]
Content.Shared/Salvage/Expeditions/SalvageFactionPrototype.cs [new file with mode: 0644]
Content.Shared/Salvage/Expeditions/SalvageMobGroup.cs [new file with mode: 0644]
Content.Shared/Salvage/Expeditions/Structure/SalvageStructure.cs [new file with mode: 0644]
Content.Shared/Salvage/Expeditions/Structure/SalvageStructureFaction.cs [new file with mode: 0644]
Content.Shared/Salvage/ISalvageMission.cs [new file with mode: 0644]
Content.Shared/Salvage/SalvageExpeditionPrototype.cs [new file with mode: 0644]
Content.Shared/Salvage/SalvageExpeditions.cs [new file with mode: 0644]
Content.Shared/Salvage/SharedSalvageSystem.cs [new file with mode: 0644]
Content.Shared/Storage/EntitySpawnEntry.cs
Resources/Audio/Effects/Footsteps/attributions.yml [new file with mode: 0644]
Resources/Audio/Effects/Footsteps/water1.ogg [new file with mode: 0644]
Resources/Audio/Effects/Footsteps/water2.ogg [new file with mode: 0644]
Resources/Audio/Effects/Footsteps/water3.ogg [new file with mode: 0644]
Resources/Audio/Effects/Footsteps/water4.ogg [new file with mode: 0644]
Resources/ConfigPresets/Build/development.toml
Resources/Locale/en-US/procedural/command.ftl [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/17x17.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/17x5.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/3x5.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/3x7.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/5x11.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/5x17.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/5x5.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/LargeArea2.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/LargeArea3.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/LargeArea4.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/MediumArea2.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/MediumArea3.yml [new file with mode: 0644]
Resources/Maps/Dungeon/Templates/MediumArea4.yml [new file with mode: 0644]
Resources/Maps/Dungeon/experiment.yml [new file with mode: 0644]
Resources/Maps/Dungeon/template.yml [new file with mode: 0644]
Resources/Prototypes/Catalog/Fills/Paper/salvage_lore.yml
Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml
Resources/Prototypes/Entities/Structures/Specific/xeno.yml [new file with mode: 0644]
Resources/Prototypes/Entities/Tiles/basalt.yml
Resources/Prototypes/Entities/Tiles/water.yml [new file with mode: 0644]
Resources/Prototypes/Parallaxes/planet.yml
Resources/Prototypes/Procedural/Themes/experiment.yml [new file with mode: 0644]
Resources/Prototypes/Procedural/dungeon_configs.yml [new file with mode: 0644]
Resources/Prototypes/Procedural/dungeon_presets.yml [new file with mode: 0644]
Resources/Prototypes/Procedural/dungeon_room_packs.yml [new file with mode: 0644]
Resources/Prototypes/SoundCollections/footsteps.yml
Resources/Prototypes/Tiles/planet.yml
Resources/Prototypes/biomes.yml
Resources/Prototypes/ore.yml
Resources/Prototypes/tags.yml
Resources/Textures/Structures/Specific/xeno_building.rsi/frenzytower.png [new file with mode: 0644]
Resources/Textures/Structures/Specific/xeno_building.rsi/meta.json [new file with mode: 0644]
Resources/Textures/Structures/Specific/xeno_building.rsi/recoverytower.png [new file with mode: 0644]
Resources/Textures/Structures/Specific/xeno_building.rsi/wardingtower-unshaded.png [new file with mode: 0644]
Resources/Textures/Structures/Specific/xeno_building.rsi/wardingtower.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid0.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid1.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid10.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid11.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid12.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid2.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid3.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid4.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid5.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid6.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid7.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid8.png [new file with mode: 0644]
Resources/Textures/Tiles/Asteroid/asteroid9.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand1.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand10.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand11.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand12.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand13.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand14.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand15.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand2.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand3.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand4.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand5.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand6.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand7.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand8.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/Desert/iron_sand/ironsand9.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/dirt.rsi/dirt.png [new file with mode: 0644]
Resources/Textures/Tiles/Planet/dirt.rsi/meta.json [new file with mode: 0644]
Resources/Textures/Tiles/Planet/water.rsi/meta.json [new file with mode: 0644]
Resources/Textures/Tiles/Planet/water.rsi/shoreline_water.png [new file with mode: 0644]