-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to latest helldivers-2/json module (#69)
* update to latest helldivers-2/json module - update source generator to work with new JSON format - add environmental and biome data to planets - made planet names translatable * make `json` folder invisible in project again
- Loading branch information
Showing
7 changed files
with
91 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace Helldivers.Models.V1.Planets; | ||
|
||
/// <summary> | ||
/// Represents information about a biome of a planet. | ||
/// </summary> | ||
/// <param name="Name">The name of this biome.</param> | ||
/// <param name="Description">A human-readable description of the biome.</param> | ||
public sealed record Biome( | ||
string Name, | ||
string Description | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace Helldivers.Models.V1.Planets; | ||
|
||
/// <summary> | ||
/// Describes an environmental hazard that can be present on a <see cref="Planet" />. | ||
/// </summary> | ||
/// <param name="Name">The name of this environmental hazard.</param> | ||
/// <param name="Description">The description of the environmental hazard.</param> | ||
public sealed record Hazard( | ||
string Name, | ||
string Description | ||
); |
Submodule json
updated
13 files
+1 −1 | factions.json | |
+1,741 −173 | items/armor/armor.json | |
+6 −2 | items/boosters.json | |
+1,152 −271 | items/item_names.json | |
+8 −0 | items/weapons/grenades.json | |
+65 −13 | items/weapons/primary.json | |
+18 −5 | items/weapons/secondary.json | |
+0 −263 | planets.json | |
+70 −0 | planets/biomes.json | |
+54 −0 | planets/environmentals.json | |
+6,669 −0 | planets/planets.json | |
+0 −57 | sectors.json | |
+113 −0 | warbonds/democratic_detonation.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters