added some drinks

This commit is contained in:
steev 2023-11-05 15:14:30 +01:00
parent 5c6cbb7403
commit 17cb28c68d
33 changed files with 91 additions and 2 deletions

View File

@ -37,6 +37,16 @@ public class ModCreativeModeTabs {
pOutput.accept(ModItems.Milling_Stone.get());
pOutput.accept(ModItems.Pressed_Iron.get());
pOutput.accept(ModItems.Pressure_Body.get());
pOutput.accept(ModItems.Glass.get());
pOutput.accept(ModItems.Glass_Of_Whine.get());
pOutput.accept(ModItems.Glass_Of_Corn_Beer.get());
pOutput.accept(ModItems.Glass_Of_Apple_Juice.get());
pOutput.accept(ModItems.Glass_Of_Grape_Juice.get());
pOutput.accept(ModItems.Glass_Of_Water.get());
pOutput.accept(ModItems.Bottle_Of_Whine.get());
pOutput.accept(ModItems.Bottle_Of_Corn_Beer.get());
pOutput.accept(ModItems.Bottle_Of_Apple_Juice.get());
pOutput.accept(ModItems.Bottle_Of_Grape_Juice.get());
})
.build());

View File

@ -28,7 +28,16 @@ public class ModItems {
public static final RegistryObject<Item> Milling_Stone = ITEMS.register("milling_stone", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Pressed_Iron = ITEMS.register("pressed_iron", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Pressure_Body = ITEMS.register("pressure_body", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Bottle_Of_Corn_Beer = ITEMS.register("bottle_of_corn_beer", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Bottle_Of_Whine = ITEMS.register("bottle_of_whine", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Bottle_Of_Grape_Juice = ITEMS.register("bottle_of_grape_juice", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Bottle_Of_Apple_Juice = ITEMS.register("bottle_of_apple_juice", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass = ITEMS.register("glass", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass_Of_Corn_Beer = ITEMS.register("glass_of_corn_beer", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass_Of_Whine = ITEMS.register("glass_of_whine", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass_Of_Grape_Juice = ITEMS.register("glass_of_grape_juice", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass_Of_Apple_Juice = ITEMS.register("glass_of_apple_juice", () -> new Item(new Item.Properties()));
public static final RegistryObject<Item> Glass_Of_Water = ITEMS.register("glass_of_water", () -> new Item(new Item.Properties()));
/***
* registers the deferredregister
* @param eventBus the mods eventbus

View File

@ -10,10 +10,20 @@
"item.brewcraft.malt": "Malt",
"item.brewcraft.heater_body": "Heater Body",
"item.brewcraft.heater_element": "Heater Element",
"item.brewcraft.heater_element": "Mashine Body",
"item.brewcraft.mashine_body": "Mashine Body",
"item.brewcraft.milling_stone": "Milling Stone",
"item.brewcraft.pressed_iron": "Pressed Iron",
"item.brewcraft.pressure_body": "Pressure Body",
"item.brewcraft.bottle_of_corn_beer": "Bottle of Corn Beer",
"item.brewcraft.bottle_of_whine": "Bottle of Whine",
"item.brewcraft.bottle_of_apple_juice": "Bottle of Apple Juice",
"item.brewcraft.bottle_of_grape_juice": "Bottle of Grape Juice",
"item.brewcraft.glass_of_corn_beer": "Glass of Corn Beer",
"item.brewcraft.glass_of_whine": "Glass of Whine",
"item.brewcraft.glass_of_apple_juice": "Glass of Apple Juice",
"item.brewcraft.glass_of_grape_juice": "Glass of Grape Juice",
"item.brewcraft.glass_of_water": "Glass of Water",
"item.brewcraft.glass": "Glass",
"creativetab.brewcraft_tab": "Brewcraft"
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/bottle_of_apple_juice"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/bottle_of_corn_beer"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/bottle_of_grape_juice"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/bottle_of_whine"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass_of_apple_juice"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass_of_corn_beer"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass_of_grape_juice"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass_of_water"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "brewcraft:item/glass_of_whine"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

BIN
tex/apple_juice.psd Normal file

Binary file not shown.

BIN
tex/corn_beer.psd Normal file

Binary file not shown.

BIN
tex/glass.psd Normal file

Binary file not shown.

Binary file not shown.

BIN
tex/glass_of_corn_beer.psd Normal file

Binary file not shown.

Binary file not shown.

BIN
tex/glass_of_water.psd Normal file

Binary file not shown.

BIN
tex/glass_of_whine.psd Normal file

Binary file not shown.

BIN
tex/grape_juice.psd Normal file

Binary file not shown.

BIN
tex/whine.psd Normal file

Binary file not shown.