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
719a5f1
commit 35a5c18
Showing
33 changed files
with
317 additions
and
178 deletions.
There are no files selected for viewing
9 changes: 5 additions & 4 deletions
9
src/generated/resources/.cache/5db5b310cf1abc4c7f33d2d565e2a2290a7f6c4d
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,12 +1,13 @@ | ||
// 1.21.1 2024-09-08T20:54:17.6791305 Item Models: modjam | ||
207e815e9b4c9ebca4f444f877e2488a5ce9b1c5 assets/modjam/models/item/aquarine_steel.json | ||
// 1.21.1 2024-09-08T20:58:34.718144882 Item Models: modjam | ||
51765874ad3111adf69684269ad9a422bfbaac4a assets/modjam/models/item/aquarine_steel_block.json | ||
e674d6859446f65b4ee805ed6e9f47d6cde82515 assets/modjam/models/item/aquarine_steel_ingot.json | ||
098a336dd0b210f2b650174de2346a665b921edd assets/modjam/models/item/aquarine_steel_wrench.json | ||
dd0c37deb1f33fb0844da4a540706681887fc3d4 assets/modjam/models/item/aquatic_catalyst.json | ||
66eb6899181dacf931e95e546a991d5e25dcc5da assets/modjam/models/item/atlantic_gold_ingot.json | ||
246cda7a0fca8b278dd6ed5392d0ce745d9fa097 assets/modjam/models/item/chiseled_dark_prismarine.json | ||
4d6b8c829a1afa42db37e92f67ddf057d763b124 assets/modjam/models/item/crate.json | ||
b918bbc26234f9f47c0330279cee33fb368261df assets/modjam/models/item/crowbar.json | ||
5dd5fd7a7c348bbaf51df14605c5241bf75e18ae assets/modjam/models/item/dark_prismarine_pillar.json | ||
4d48047a9639345841262719f87f57c3494e4a55 assets/modjam/models/item/deep_sea_drain.json | ||
945ba48b672ffdee7c76e0939012a2b60ce471a6 assets/modjam/models/item/eas_bucket.json | ||
5b6b9e8621c065cb4167e4b6dfdfaecb0fd7186d assets/modjam/models/item/eas_vial.json | ||
f0f9891cd57b3a66f7440a71b925348bb8ea745b assets/modjam/models/item/glass_vial.json | ||
dab337d602d93b0a4930b69e652b1155300c6502 assets/modjam/models/item/prism_monocle.json |
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e
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,3 +1,3 @@ | ||
// 1.21.1 2024-09-08T12:32:55.0498344 Recipes | ||
// 1.21.1 2024-09-08T20:58:34.720183238 Recipes | ||
212d75a5fccad42ec0cc51d1e1dfe77b53a8b988 data/minecraft/recipe/netherite_ingot.json | ||
e6305710cc75c951fede63dbafbfde7bbd146a5d data/modjam/recipe/aquarine_steel.json | ||
6a3498b9b03ea934405ac04d33c6714f372eeb3f data/modjam/recipe/aquarine_steel_ingot.json |
6 changes: 0 additions & 6 deletions
6
src/generated/resources/assets/modjam/models/item/aquarine_steel.json
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/generated/resources/data/modjam/recipe/aquarine_steel.json
This file was deleted.
Oops, something went wrong.
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
43 changes: 23 additions & 20 deletions
43
src/main/java/com/portingdeadmods/modjam/capabilities/augmentation/Slot.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 |
---|---|---|
@@ -1,26 +1,29 @@ | ||
package com.portingdeadmods.modjam.capabilities.augmentation; | ||
|
||
public enum Slot { | ||
HEAD(0), | ||
BODY(1), | ||
ARMS(2), | ||
LEGS(3), | ||
HEART(4), | ||
NONE(-1); | ||
HEAD(0), | ||
BODY(1), | ||
ARMS(2), | ||
LEGS(3), | ||
HEART(4), | ||
NONE(-1); | ||
|
||
public int slotId; | ||
Slot(int id){ | ||
this.slotId = id; | ||
} | ||
public boolean Compare(int i){return slotId == i;} | ||
public static Slot GetValue(int _id) | ||
{ | ||
Slot[] Slots = Slot.values(); | ||
for(int i = 0; i < Slots.length; i++) | ||
{ | ||
if(Slots[i].Compare(_id)) | ||
return Slots[i]; | ||
} | ||
return Slot.NONE; | ||
public int slotId; | ||
|
||
Slot(int id) { | ||
this.slotId = id; | ||
} | ||
|
||
public boolean Compare(int i) { | ||
return slotId == i; | ||
} | ||
|
||
public static Slot GetValue(int _id) { | ||
Slot[] Slots = Slot.values(); | ||
for (int i = 0; i < Slots.length; i++) { | ||
if (Slots[i].Compare(_id)) | ||
return Slots[i]; | ||
} | ||
return Slot.NONE; | ||
} | ||
} |
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.