Initial release

This commit is contained in:
2022-10-27 10:28:51 +02:00
commit e7f9022dfb
55 changed files with 3781 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

View File

@@ -0,0 +1,3 @@
{
"generator.customstructures.void_world": "Staircase world"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "customstructures:item/structure_spawner"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

View File

@@ -0,0 +1,3 @@
accessWidener v1 named
extendable class net/minecraft/world/gen/chunk/NoiseChunkGenerator
accessible class net/minecraft/world/gen/WorldPresets$Registrar

View File

@@ -0,0 +1,15 @@
{
"required": true,
"minVersion": "0.8",
"package": "de.nicolasklier.custom_structures.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ExampleMixin",
"PlayerTickMixin"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"customstructures:stair_world"
]
}

View File

@@ -0,0 +1,39 @@
{
"schemaVersion": 1,
"id": "customstructures",
"version": "0.1",
"accessWidener": "customstructures.accesswidener",
"name": "Custom Structures",
"description": "Place weird looking structures into your world or generate worlds full of them!",
"authors": [
"Nicolas Klier"
],
"contact": {
"homepage": "https://klier.dev/",
"sources": "https://github.com/Mondei1/customstructures"
},
"license": "CC0-1.0",
"icon": "assets/customstructures/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.nicolasklier.custom_structures.CustomStructures"
]
},
"mixins": [
"customstructures.mixins.json"
],
"depends": {
"fabricloader": ">=0.14.9",
"fabric-api": "*",
"minecraft": "~1.19",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}