Skip to content

Commit

Permalink
Increase Spawn Rates
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph T. McQuigg <[email protected]>

(cherry picked from commit cc357a1)
  • Loading branch information
JT122406 committed Mar 9, 2024
1 parent 08cd271 commit 1360959
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 333897074,
"separation": 500,
"spacing": 4096
"separation": 350,
"spacing": 2048
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 989914746,
"separation": 500,
"spacing": 4096
"separation": 350,
"spacing": 2048
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 751341351,
"separation": 500,
"spacing": 4096
"separation": 350,
"spacing": 2048
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"placement": {
"type": "minecraft:random_spread",
"salt": 442038945,
"separation": 500,
"spacing": 4096
"separation": 350,
"spacing": 2048
},
"structures": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void bootstrap(BootstapContext<StructureSet> context) {
new RandomSpreadStructurePlacement(150, 85, RandomSpreadType.LINEAR, 1189082690));

register(context, POKESHOPS, GenerationsStructuresKeys.SCARLET_POKESHOP,
new RandomSpreadStructurePlacement(500, 250, RandomSpreadType.LINEAR, 293756737));
new RandomSpreadStructurePlacement(400, 250, RandomSpreadType.LINEAR, 293756737));

register(context, SPIKE, GenerationsStructuresKeys.SPIKE,
new RandomSpreadStructurePlacement(20, 10, RandomSpreadType.LINEAR, 732790531));
Expand All @@ -53,23 +53,23 @@ public static void bootstrap(BootstapContext<StructureSet> context) {
createStructureSelectionEntry(context, GenerationsStructuresKeys.BEAST_BALLOON, 2),
createStructureSelectionEntry(context, GenerationsStructuresKeys.MEOWTH_BALLOON, 3),
createStructureSelectionEntry(context, GenerationsStructuresKeys.POKE_BALLOON, 5)
), new RandomSpreadStructurePlacement(100, 50, RandomSpreadType.LINEAR, 738478911)
), new RandomSpreadStructurePlacement(100, 45, RandomSpreadType.LINEAR, 738478911)
);

register(context, ISLANDS, GenerationsStructuresKeys.ISLANDS,
new RandomSpreadStructurePlacement(100, 50, RandomSpreadType.LINEAR, 347680677));
new RandomSpreadStructurePlacement(100, 45, RandomSpreadType.LINEAR, 347680677));

register(context, FROZEN_SHRINE, GenerationsStructuresKeys.FROZEN_SHRINE,
new RandomSpreadStructurePlacement(4096, 500, RandomSpreadType.LINEAR, 989914746));
new RandomSpreadStructurePlacement(2048, 350, RandomSpreadType.LINEAR, 989914746));

register(context, FIERY_SHRINE, GenerationsStructuresKeys.FIERY_SHRINE,
new RandomSpreadStructurePlacement(4096, 500, RandomSpreadType.LINEAR, 333897074));
new RandomSpreadStructurePlacement(2048, 350, RandomSpreadType.LINEAR, 333897074));

register(context, STATIC_SHRINE, GenerationsStructuresKeys.STATIC_SHRINE,
new RandomSpreadStructurePlacement(4096, 500, RandomSpreadType.LINEAR, 442038945));
new RandomSpreadStructurePlacement(2048, 350, RandomSpreadType.LINEAR, 442038945));

register(context, LUGIA_SHRINE, GenerationsStructuresKeys.LUGIA_SHRINE,
new RandomSpreadStructurePlacement(4096, 500, RandomSpreadType.LINEAR, 751341351));
new RandomSpreadStructurePlacement(2048, 350, RandomSpreadType.LINEAR, 751341351));
}

/**
Expand Down
15 changes: 6 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,21 @@ archives_base_name=Generations-Structures
mod_version=1.4.0-Alpha
maven_group=generations.gg.generations.structures.generationsstructures

fabric_loader_version=0.15.6
fabric_api_version=0.91.0
fabric_loader_version=0.15.7
fabric_api_version=0.92.0

forge_version=47.2.20

parchment=2023.09.03

generations-core_version=2.1.2-Beta-SNAPSHOT
architectury_version=9.1.12
botarium_version=2.3.1
generations-core_version=2.2.2-Beta
architectury_version=9.1.13
botarium_version=2.3.2
devauth_version=1.2.0
cobblemon_version=1.4.1+1.20.1

terrablender_version=3.0.1.2
terrablender_version=3.0.1.4
BOP_version=18.0.0.598
BYGForge_version=1.19.4-4.0.1.0-forge
BYGFabric_version=4858380
geckolib_version=4.4

# Publishing
github_token=xxx

0 comments on commit 1360959

Please sign in to comment.