generated from NeoForgeMDKs/MDK-1.21-NeoGradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19b235c
commit 38ff5f5
Showing
14 changed files
with
158 additions
and
23 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
src/generated/resources/.cache/76628b3669be6416cac089213fb784b3a46a1968
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// 1.21.1 2024-09-29T17:36:09.149322632 Multiblocks: nautec | ||
3738df99167bd9a5db3a1e4f92c3e91e994fa2c1 data/nautec/modonomicon/multiblocks/drain.json |
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/c622617f6fabf890a00b9275cd5f643584a8a2c8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// 1.21.1 2024-09-29T15:46:30.478711514 Languages: en_us | ||
a86b31e1e4713b4d53a3affa72470d3892f256ba assets/nautec/lang/en_us.json | ||
// 1.21.1 2024-09-29T17:36:09.153307029 Languages: en_us | ||
9e68096f6aa3e605b3141a4f2b887efa5ae6b3f2 assets/nautec/lang/en_us.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
src/generated/resources/data/nautec/modonomicon/multiblocks/drain.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"type": "modonomicon:dense", | ||
"mapping": { | ||
"*": { | ||
"type": "modonomicon:display", | ||
"display": "minecraft:basalt" | ||
}, | ||
"+": { | ||
"type": "modonomicon:display", | ||
"display": "minecraft:stone" | ||
}, | ||
"0": { | ||
"type": "modonomicon:block", | ||
"block": "nautec:deep_sea_drain" | ||
}, | ||
"W": { | ||
"type": "modonomicon:block", | ||
"block": "nautec:deep_sea_drain_wall" | ||
} | ||
}, | ||
"pattern": [ | ||
[ | ||
"_____", | ||
"_WWW_", | ||
"_W0W_", | ||
"_WWW_", | ||
"_____" | ||
], | ||
[ | ||
"*+*+*", | ||
"+*+*+", | ||
"*+*+*", | ||
"+*+*+", | ||
"*+*+*" | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...portingdeadmods/nautec/compat/modonomicon/datagen/book/NautecGuideMultiblockProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.portingdeadmods.nautec.compat.modonomicon.datagen.book; | ||
|
||
import com.klikli_dev.modonomicon.api.datagen.MultiblockProvider; | ||
import com.portingdeadmods.nautec.Nautec; | ||
import com.portingdeadmods.nautec.registries.NTBlocks; | ||
import net.minecraft.data.PackOutput; | ||
|
||
public class NautecGuideMultiblockProvider extends MultiblockProvider { | ||
public NautecGuideMultiblockProvider(PackOutput packOutput) { | ||
super(packOutput, Nautec.MODID); | ||
} | ||
|
||
@Override | ||
public void buildMultiblocks() { | ||
this.add(modLoc("drain"), new MultiblockProvider.DenseMultiblockBuilder() | ||
.layer( | ||
"WWW", | ||
"W0W", | ||
"WWW" | ||
) | ||
.block('W', NTBlocks.DRAIN_WALL) | ||
.block('0', NTBlocks.DRAIN).build(false)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.