Initial release
This commit is contained in:
BIN
src/main/resources/assets/customstructures/icon.png
Normal file
BIN
src/main/resources/assets/customstructures/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 453 B |
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"generator.customstructures.void_world": "Staircase world"
|
||||
}
|
||||
@@ -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 |
3
src/main/resources/customstructures.accesswidener
Normal file
3
src/main/resources/customstructures.accesswidener
Normal file
@@ -0,0 +1,3 @@
|
||||
accessWidener v1 named
|
||||
extendable class net/minecraft/world/gen/chunk/NoiseChunkGenerator
|
||||
accessible class net/minecraft/world/gen/WorldPresets$Registrar
|
||||
15
src/main/resources/customstructures.mixins.json
Normal file
15
src/main/resources/customstructures.mixins.json
Normal 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
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"customstructures:stair_world"
|
||||
]
|
||||
}
|
||||
39
src/main/resources/fabric.mod.json
Normal file
39
src/main/resources/fabric.mod.json
Normal 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": "*"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user