Skip to content

Commit

Permalink
Update 100K Challenge to move the temperature ID for new worlds farth…
Browse files Browse the repository at this point in the history
…er up and out of range of any foreseeable future addition to the Klei temperature ranges.
  • Loading branch information
peterhaneve committed Sep 6, 2024
1 parent 643de45 commit 6de82f8
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Challenge100K/Challenge100K.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class Challenge100K : KMod.UserMod2 {
/// <summary>
/// The enum value used for 100K subworlds.
/// </summary>
public const Temperature.Range ONE_HUNDRED_K = (Temperature.Range)12;
public const Temperature.Range ONE_HUNDRED_K = (Temperature.Range)25;

/// <summary>
/// The sprite to load for the asteroid selection.
Expand All @@ -52,7 +52,7 @@ public sealed class Challenge100K : KMod.UserMod2 {
/// <summary>
/// The "to 11" cold temperature for frigid biomes.
///
/// Changed to 12 to avoid a clash with I Love Slicksters.
/// Changed to 25 to avoid a clash with I Love Slicksters.
/// </summary>
private static Temperature to11 = null;

Expand Down
4 changes: 2 additions & 2 deletions Challenge100K/Challenge100K.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>One Hundred K Challenge</AssemblyTitle>
<FileVersion>3.3.0.0</FileVersion>
<FileVersion>3.4.0.0</FileVersion>
<RootNamespace>PeterHan.Challenge100K</RootNamespace>
<Description>Can you survive a world with a temperature of 100 K?</Description>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<SupportedContent>VANILLA_ID</SupportedContent>
<LastWorkingBuild>489681</LastWorkingBuild>
<LastWorkingBuild>600112</LastWorkingBuild>
<Platforms>Vanilla;Mergedown</Platforms>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/forest/ForestFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldForest
temperatureRange: 12
temperatureRange: 25
density:
min: 10
max: 15
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/frozen/FrozenFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldFrozen
temperatureRange: 12
temperatureRange: 25
minChildCount: 4
density:
min: 10
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/jungle/JungleFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldJungle
temperatureRange: 12
temperatureRange: 25
density:
min: 10
max: 15
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/marsh/MarshFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldHotMarsh
temperatureRange: 12
temperatureRange: 25
density:
min: 20
max: 25
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/ocean/OceanFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldOcean
temperatureRange: 12
temperatureRange: 25
density:
min: 10
max: 15
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/oil/OilPocketsFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/OilPockets
temperatureRange: 12
temperatureRange: 25
minChildCount: 2
density:
min: 35
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/rust/RustFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldRust
temperatureRange: 12
temperatureRange: 25
density:
min: 10
max: 15
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/Sandstone
temperatureRange: 12
temperatureRange: 25
density:
min: 10
max: 20
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/space/SpaceFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/Generic
temperatureRange: 12
temperatureRange: 25
minChildCount: 4
density:
min: 35
Expand Down
2 changes: 1 addition & 1 deletion Challenge100K/worldgen/subworlds/space/SurfaceFrigid.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
biomeNoise: noise/subworldFrozen
temperatureRange: 12
temperatureRange: 25
minChildCount: 1
density:
min: 70
Expand Down

0 comments on commit 6de82f8

Please sign in to comment.