Skip to content

Commit

Permalink
Add Liquid + Solidified Bromine (#37)
Browse files Browse the repository at this point in the history
Co-authored-by: v3ect0rgames <164247766+v3ect0rgames@users.noreply.github.com>
  • Loading branch information
IntegerLimit and v3ect0rgames authored Nov 25, 2024
1 parent b1723a6 commit 4d1a5c3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public static void propertyChanges() {
Einsteinium.setProperty(PropertyKey.INGOT, new IngotProperty());
Graphite.setProperty(PropertyKey.INGOT, new IngotProperty());

Bromine.setProperty(PropertyKey.FLUID, new FluidProperty(FluidStorageKeys.LIQUID, new FluidBuilder()));
Neptunium.setProperty(PropertyKey.FLUID, new FluidProperty(FluidStorageKeys.LIQUID, new FluidBuilder()));
Curium.setProperty(PropertyKey.FLUID, new FluidProperty(FluidStorageKeys.LIQUID, new FluidBuilder()));
Berkelium.setProperty(PropertyKey.FLUID, new FluidProperty(FluidStorageKeys.LIQUID, new FluidBuilder()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ public class LabsItems {
*/
public static ItemBase SOLIDIFIED_ARGON;
public static ItemBase SOLIDIFIED_CHLORINE;
public static ItemBase SOLIDIFIED_BROMINE;
public static ItemBase SOLIDIFIED_FLUORINE;
public static ItemBase SOLIDIFIED_HELIUM;
public static ItemBase SOLIDIFIED_HYDROGEN;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public static void initSolidified() {
SOLIDIFIED_ARGON = createItem(new ItemBase(makeLabsName("solidifiedargon"), LabsCreativeTabs.TAB_NOMI_LABS));
SOLIDIFIED_CHLORINE = createItem(
new ItemBase(makeLabsName("solidifiedchlorine"), LabsCreativeTabs.TAB_NOMI_LABS));
SOLIDIFIED_BROMINE = createItem(
new ItemBase(makeLabsName("solidifiedbromine"), LabsCreativeTabs.TAB_NOMI_LABS));
SOLIDIFIED_FLUORINE = createItem(
new ItemBase(makeLabsName("solidifiedfluorine"), LabsCreativeTabs.TAB_NOMI_LABS));
SOLIDIFIED_HELIUM = createItem(new ItemBase(makeLabsName("solidifiedhelium"), LabsCreativeTabs.TAB_NOMI_LABS));
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/nomilabs/blockstates/fluids.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@
}
}]
}
}
}
1 change: 1 addition & 0 deletions src/main/resources/assets/nomilabs/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,7 @@ item.nomilabs.helium3rover.name=Helium-3 Rover

item.nomilabs.solidifiedargon.name=Solidified Argon
item.nomilabs.solidifiedchlorine.name=Solidified Chlorine
item.nomilabs.solidifiedbromine.name=Solidified Bromine
item.nomilabs.solidifiedfluorine.name=Solidified Fluorine
item.nomilabs.solidifiedhelium.name=Solidified Helium
item.nomilabs.solidifiedhydrogen.name=Solidified Hydrogen
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "nomilabs:items/solidifiedbromine"
}
}
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 4d1a5c3

Please sign in to comment.