Skip to content

Commit

Permalink
loaf completion
Browse files Browse the repository at this point in the history
  • Loading branch information
khjxiaogu committed Sep 10, 2024
1 parent a8b1890 commit c106b37
Show file tree
Hide file tree
Showing 86 changed files with 511 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ protected void addTags(Provider pProvider) {
}
tag(CPTags.Blocks.LOAF_HEATING_BLOCKS).add(rk(Blocks.FIRE)).add(rk(Blocks.CAMPFIRE)).add(rk(Blocks.LAVA)).add(rk(Blocks.LAVA_CAULDRON)).add(CPBlocks.FUMAROLE_VENT.getKey());
tag(CPTags.Blocks.LOAF_HEATING_IGNORE).addTags(BlockTags.ALL_SIGNS,BlockTags.ALL_HANGING_SIGNS,BlockTags.BANNERS,BlockTags.BUTTONS,BlockTags.FENCES,BlockTags.CROPS,CPTags.Blocks.PANS).add(CPBlocks.WOLF.getKey(),CPBlocks.LOAF.getKey(),CPBlocks.LOAF_DOUGH.getKey(),CPBlocks.PUMICE_BLOOM.getKey());
tag(BlockTags.CLIMBABLE).add(CPBlocks.LOAF_DOUGH.getKey()).add(CPBlocks.LOAF.getKey());
for (MaterialType tye : CPBlocks.all_materials) {
String str=tye.getName();
if(tye.isPillarMaterial())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ protected void registerModels() {

for (String s : CPItems.soups) {
simpleTexture(s, "soups/");
texture(s+"_loaf", "bread_bowls/"+s);

}
for(String s:CPItems.bread_bowls)
texture(s+"_loaf", "bread_bowls/"+s);
for (String s : CPItems.base_material)
texture(s);
for (FoodMaterialInfo s : CPItems.food_material)
texture(s.name);
simpleTexture("water", "soups/");
simpleTexture("milk", "soups/");
texture("water_loaf", "bread_bowls/water");
texture("milk_loaf", "bread_bowls/milk");
texture("loaf_bowl", "bread_bowl");
for (String s : CPItems.aspics)
simpleTexture(s, "aspics/");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,14 @@ protected void buildRecipes(RecipeOutput outx) {
for (String s : CPFluids.getSoupfluids()) {
ResourceLocation fs = mrl(s);
out.accept(rl("bowl/" + s),new BowlContainingRecipe( item(fs), fluid(fs),BowlContainingRecipe.WOODEN_BOWL));
out.accept(rl("bowl/" + s),new BowlContainingRecipe( item(fs), fluid(fs),BowlContainingRecipe.BREAD_BOWL));

}
for (String s : CPItems.bread_bowls) {
ResourceLocation fs = mrl(s);
out.accept(rl("bowl/" + s+"_loaf"),new BowlContainingRecipe( item(fs), fluid(fs),BowlContainingRecipe.BREAD_BOWL));

}

// out.accept(dissolve(RankineItems.CORN_EAR.get()));
out.accept(rl("bowl_type/bowl"), new BowlTypeRecipe(BowlContainingRecipe.WOODEN_BOWL,Ingredient.of(Items.BOWL)));
out.accept(rl("bowl_type/loaf_bowl"), new BowlTypeRecipe(BowlContainingRecipe.WOODEN_BOWL,Ingredient.of(CPBlocks.LOAF_BOWL.get().asItem())));
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/bisque"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/borscht"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/egg_drop_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/fish_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/goulash"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/hodgepodge"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowl"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/meat_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/mushroom_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/nettle_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/poultry_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/pumpkin_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/seaweed_soup"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/stock"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/stracciatella"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "caupona:item/bread_bowls/vegetable_soup"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:acquacotta"
},
"inType": "caupona:bowl",
"item": "caupona:acquacotta"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:bisque"
},
"inType": "caupona:bowl",
"item": "caupona:bisque"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:bisque"
},
"inType": "caupona:loaf",
"item": "caupona:bisque"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:bone_gelatin"
},
"inType": "caupona:bowl",
"item": "caupona:bone_gelatin"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:borscht"
},
"inType": "caupona:bowl",
"item": "caupona:borscht"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:borscht_cream"
},
"inType": "caupona:bowl",
"item": "caupona:borscht_cream"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:borscht"
},
"inType": "caupona:loaf",
"item": "caupona:borscht"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:congee"
},
"inType": "caupona:bowl",
"item": "caupona:congee"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:cream_of_meat_soup"
},
"inType": "caupona:bowl",
"item": "caupona:cream_of_meat_soup"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:cream_of_mushroom_soup"
},
"inType": "caupona:bowl",
"item": "caupona:cream_of_mushroom_soup"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:custard"
},
"inType": "caupona:bowl",
"item": "caupona:custard"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:dilute_soup"
},
"inType": "caupona:bowl",
"item": "caupona:dilute_soup"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:egg_drop_soup"
},
"inType": "caupona:bowl",
"item": "caupona:egg_drop_soup"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:egg_drop_soup"
},
"inType": "caupona:loaf",
"item": "caupona:egg_drop_soup"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:egg_tongsui"
},
"inType": "caupona:bowl",
"item": "caupona:egg_tongsui"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:fish_chowder"
},
"inType": "caupona:bowl",
"item": "caupona:fish_chowder"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:fish_soup"
},
"inType": "caupona:bowl",
"item": "caupona:fish_soup"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:fish_soup"
},
"inType": "caupona:loaf",
"item": "caupona:fish_soup"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:fricassee"
},
"inType": "caupona:bowl",
"item": "caupona:fricassee"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:goji_tongsui"
},
"inType": "caupona:bowl",
"item": "caupona:goji_tongsui"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:goulash"
},
"inType": "caupona:bowl",
"item": "caupona:goulash"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:goulash"
},
"inType": "caupona:loaf",
"item": "caupona:goulash"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:gruel"
},
"inType": "caupona:bowl",
"item": "caupona:gruel"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:hodgepodge"
},
"inType": "caupona:bowl",
"item": "caupona:hodgepodge"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"type": "caupona:bowl",
"fluid": {
"fluid": "caupona:hodgepodge"
},
"inType": "caupona:loaf",
"item": "caupona:hodgepodge"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"fluid": {
"fluid": "caupona:meat_soup"
},
"inType": "caupona:bowl",
"item": "caupona:meat_soup"
}
Loading

0 comments on commit c106b37

Please sign in to comment.