added more drinks
This commit is contained in:
parent
17cb28c68d
commit
c6b2d8ae35
@ -40,13 +40,23 @@ public class ModCreativeModeTabs {
|
||||
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_Hop_Beer.get());
|
||||
pOutput.accept(ModItems.Glass_Of_Yeast_Beer.get());
|
||||
pOutput.accept(ModItems.Glass_Of_Pils_Beer.get());
|
||||
pOutput.accept(ModItems.Glass_Of_Apple_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.Glass_Of_Sake.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Whine.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Corn_Beer.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Hop_Beer.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Yeast_Beer.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Pils_Beer.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Apple_Beer.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Apple_Juice.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Grape_Juice.get());
|
||||
pOutput.accept(ModItems.Bottle_Of_Sake.get());
|
||||
})
|
||||
.build());
|
||||
|
||||
|
@ -29,15 +29,25 @@ public class ModItems {
|
||||
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_Hop_Beer = ITEMS.register("bottle_of_hop_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Bottle_Of_Pils_Beer = ITEMS.register("bottle_of_pils_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Bottle_Of_Yeast_Beer = ITEMS.register("bottle_of_yeast_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Bottle_Of_Apple_Beer = ITEMS.register("bottle_of_apple_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> Bottle_Of_Sake = ITEMS.register("bottle_of_sake", () -> 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_Hop_Beer = ITEMS.register("glass_of_hop_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Glass_Of_Yeast_Beer = ITEMS.register("glass_of_yeast_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Glass_Of_Apple_Beer = ITEMS.register("glass_of_apple_beer", () -> new Item(new Item.Properties()));
|
||||
public static final RegistryObject<Item> Glass_Of_Pils_Beer = ITEMS.register("glass_of_pils_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()));
|
||||
public static final RegistryObject<Item> Glass_Of_Sake = ITEMS.register("glass_of_sake", () -> new Item(new Item.Properties()));
|
||||
/***
|
||||
* registers the deferredregister
|
||||
* @param eventBus the mods eventbus
|
||||
|
@ -18,11 +18,18 @@
|
||||
"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.bottle_of_sake": "Bottle of Sake",
|
||||
"item.brewcraft.bottle_of_yeast_beer": "Bottle of Yeast Beer",
|
||||
"item.brewcraft.bottle_of_pils_beer": "Bottle of Pils Beer",
|
||||
"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_of_sake": "Glass of Sake",
|
||||
"item.brewcraft.glass_of_yeast_beer": "Glass of Yeast Beer",
|
||||
"item.brewcraft.glass_of_pils_beer": "Glass of Pils Beer",
|
||||
|
||||
"item.brewcraft.glass": "Glass",
|
||||
|
||||
"creativetab.brewcraft_tab": "Brewcraft"
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/bottle_of_apple_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/bottle_of_hop_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/bottle_of_pils_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/bottle_of_sake"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/bottle_of_yeast_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/glass_of_apple_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/glass_of_hop_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/glass_of_pils_beer"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/glass_of_sake"
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "brewcraft:item/glass_of_yeast_beer"
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 337 B |
Binary file not shown.
After Width: | Height: | Size: 341 B |
Binary file not shown.
After Width: | Height: | Size: 324 B |
Binary file not shown.
After Width: | Height: | Size: 408 B |
Binary file not shown.
After Width: | Height: | Size: 414 B |
Binary file not shown.
After Width: | Height: | Size: 384 B |
BIN
tex/bottle_of_hop_beer.psd
Normal file
BIN
tex/bottle_of_hop_beer.psd
Normal file
Binary file not shown.
BIN
tex/bottle_of_pils_beer.psd
Normal file
BIN
tex/bottle_of_pils_beer.psd
Normal file
Binary file not shown.
BIN
tex/bottle_of_sake.psd
Normal file
BIN
tex/bottle_of_sake.psd
Normal file
Binary file not shown.
BIN
tex/glass_of_hop_beer.psd
Normal file
BIN
tex/glass_of_hop_beer.psd
Normal file
Binary file not shown.
BIN
tex/glass_of_pils_beer.psd
Normal file
BIN
tex/glass_of_pils_beer.psd
Normal file
Binary file not shown.
BIN
tex/glass_of_sake.psd
Normal file
BIN
tex/glass_of_sake.psd
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user