Skip to content

Commit

Permalink
Vials
Browse files Browse the repository at this point in the history
  • Loading branch information
ReclipseTheOne committed Sep 7, 2024
1 parent a438a6b commit 077c3f5
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// 1.21.1 2024-09-06T15:44:54.6487524 Item Models: modjam
// 1.21.1 2024-09-07T16:00:13.3184328 Item Models: modjam
207e815e9b4c9ebca4f444f877e2488a5ce9b1c5 assets/modjam/models/item/aquarine_steel.json
51765874ad3111adf69684269ad9a422bfbaac4a assets/modjam/models/item/aquarine_steel_block.json
dd0c37deb1f33fb0844da4a540706681887fc3d4 assets/modjam/models/item/aquatic_catalyst.json
246cda7a0fca8b278dd6ed5392d0ce745d9fa097 assets/modjam/models/item/chiseled_dark_prismarine.json
5dd5fd7a7c348bbaf51df14605c5241bf75e18ae assets/modjam/models/item/dark_prismarine_pillar.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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "modjam:item/eas_vial"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "modjam:item/glass_vial"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ protected void registerModels() {
// Register item models here
basicItem(MJItems.PRISM_MONOCLE.get());
basicItem(MJItems.AQUARINE_STEEL.get());
basicItem(MJItems.ELECTROLYTE_ALGAE_SERUM_VIAL.get());
basicItem(MJItems.GLASS_VIAL.get());

blockItems();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ public final class MJItems {

public static final DeferredItem<Item> AQUARINE_STEEL = registerItem("aquarine_steel",
Item::new, new Item.Properties());

public static final DeferredItem<Item> GLASS_VIAL = registerItem("glass_vial", Item::new, new Item.Properties());
public static final DeferredItem<Item> ELECTROLYTE_ALGAE_SERUM_VIAL = registerItem("eas_vial", Item::new, new Item.Properties());

public static final DeferredItem<PrismMonocleItem> PRISM_MONOCLE = registerItem("prism_monocle",
PrismMonocleItem::new, new Item.Properties());

Expand Down
5 changes: 5 additions & 0 deletions src/main/resources/assets/modjam/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@
"curios.identifier.prism_monocle": "Monocle",
"modjam.creative_tab.main": "ModJam",

"fluid_type.modjam.soap_water": "Soap Water",
"fluid_type.modjam.electrolyte_algae_serum": "Electrolyte Algae Serum",

"item.modjam.prism_monocle": "Prism Monocle",
"item.modjam.aquarine_steel": "Aquarine Steel Ingot",
"item.modjam.salt_water_bucket": "Salt Water Bucket",
"item.modjam.electrolyte_algae_serum_bucket": "Electrolyte Algae Serum (EAS) Bucket",
"item.modjam.glass_vial": "Glass Vial",
"item.modjam.eas_vial": "Vial of Electrolyte Algae Serum",

"block.modjam.aquarine_steel_block": "Aquarine Steel Block",
"block.modjam.aquatic_catalyst": "Aquatic Catalyst",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 077c3f5

Please sign in to comment.