diff --git a/build.gradle b/build.gradle index b32a3eae..b7291ca4 100644 --- a/build.gradle +++ b/build.gradle @@ -157,7 +157,7 @@ curseforge { releaseType = 'alpha' addGameVersion '1.17' mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) { - displayName = "[${project.minecraft_version}] Dimensional Doors ${version}" + displayName = "[21w06a] Dimensional Doors ${version}" } afterEvaluate { uploadTask.dependsOn("remapJar") diff --git a/gradle.properties b/gradle.properties index 2bd1b2cc..f03acd9f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,3 @@ -minecraft_version=1.16.4 -yarn_mappings=1.16.4+build.7 -loader_version=0.10.8 - -fabric_version=0.29.3+1.16 - -mod_version=4.0.0+alpha.1 +mod_version=4.0.0+alpha.2 org.gradle.jvmargs=-Xmx2048m diff --git a/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom.json b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom.json new file mode 100644 index 00000000..19ea3796 --- /dev/null +++ b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom.json @@ -0,0 +1,21 @@ +{ + "type": "dimdoors:schematic", + "id": "v2/custom/lantredom", + "modifiers": [ + { + "type": "dimdoors:rift_data", + "ids": [0], + "rift_data": "rift_data/pocket_entrance" + }, + { + "type": "dimdoors:rift_data", + "ids": [2], + "rift_data": "rift_data/available_link" + }, + { + "type": "dimdoors:relative", + "point_a": 1, + "point_b": 3 + } + ] +} diff --git a/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_end.json b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_end.json new file mode 100644 index 00000000..d3e16bd9 --- /dev/null +++ b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_end.json @@ -0,0 +1,21 @@ +{ + "type": "dimdoors:schematic", + "id": "v2/custom/lantredom_end", + "modifiers": [ + { + "type": "dimdoors:rift_data", + "ids": [0], + "rift_data": "rift_data/pocket_entrance" + }, + { + "type": "dimdoors:rift_data", + "ids": [2], + "rift_data": "rift_data/available_link" + }, + { + "type": "dimdoors:relative", + "point_a": 1, + "point_b": 3 + } + ] +} diff --git a/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_red.json b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_red.json new file mode 100644 index 00000000..53351934 --- /dev/null +++ b/src/main/resources/data/dimdoors/pockets/generators/custom/lantredom_red.json @@ -0,0 +1,21 @@ +{ + "type": "dimdoors:schematic", + "id": "v2/custom/lantredom_red", + "modifiers": [ + { + "type": "dimdoors:rift_data", + "ids": [0], + "rift_data": "rift_data/pocket_entrance" + }, + { + "type": "dimdoors:rift_data", + "ids": [2], + "rift_data": "rift_data/available_link" + }, + { + "type": "dimdoors:relative", + "point_a": 1, + "point_b": 3 + } + ] +} diff --git a/src/main/resources/data/dimdoors/pockets/groups/dungeon.json b/src/main/resources/data/dimdoors/pockets/groups/dungeon.json index d2119acc..3fa24eac 100644 --- a/src/main/resources/data/dimdoors/pockets/groups/dungeon.json +++ b/src/main/resources/data/dimdoors/pockets/groups/dungeon.json @@ -112,5 +112,17 @@ { "id": "custom/smile_6", "type": "dimdoors:id" + }, + { + "id": "custom/lantredom", + "type": "dimdoors:id" + }, + { + "id": "custom/lantredom_end", + "type": "dimdoors:id" + }, + { + "id": "custom/lantredom_red", + "type": "dimdoors:id" } ] diff --git a/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom.schem b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom.schem new file mode 100644 index 00000000..c887a7cb Binary files /dev/null and b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom.schem differ diff --git a/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_end.schem b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_end.schem new file mode 100644 index 00000000..32921c20 Binary files /dev/null and b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_end.schem differ diff --git a/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_red.schem b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_red.schem new file mode 100644 index 00000000..7956c28e Binary files /dev/null and b/src/main/resources/data/dimdoors/pockets/schematic/v2/custom/lantredom_red.schem differ