Compare commits

..

2 commits

Author SHA1 Message Date
22858 3eb46a27f5
Merge 3426e66bd8 into d66170c8fe 2024-05-07 14:34:03 +00:00
22858 3426e66bd8 RU recipes 2024-05-07 22:32:27 +08:00
3 changed files with 5 additions and 9 deletions

View file

@ -136,8 +136,8 @@ public class CuttingRecipeGen extends ProcessingRecipeGen {
NE_2 = cuttingCompatLogOnly(Mods.NE, "jabuticaba"),
// Regions Unexplored
RU = cuttingCompat(Mods.RU, "baobab", "blackwood", "brimwood", "cobalt", "cypress", "dead", "eucalyptus", "joshua",
"kapok", "larch", "magnolia", "maple","mauve", "palm", "pine", "redwood", "socotra", "willow"),
RU = cuttingCompat(Mods.RU, "baobab", "blackwood", "brimwood", "cobalt", "cypress", "dead", "eucalyptus", "joshua",
"kapok", "larch", "magnolia", "maple","mauve", "palm", "pine", "redwood", "socotra", "willow"),
RU_2 = stripAndMakePlanks(Mods.RU, "blue_bioshroom_stem", "stripped_blue_bioshroom_stem", "blue_bioshroom_planks"),
RU_3 = stripAndMakePlanks(Mods.RU, "blue_bioshroom_hyphae", "stripped_blue_bioshroom_hyphae", "blue_bioshroom_planks"),
RU_4 = stripAndMakePlanks(Mods.RU, "green_bioshroom_stem", "stripped_green_bioshroom_stem", "green_bioshroom_planks"),
@ -150,10 +150,7 @@ public class CuttingRecipeGen extends ProcessingRecipeGen {
RU_11 = stripAndMakePlanks(Mods.RU, "brimwood_log_magma", "stripped_brimwood", null),
RU_12 = stripAndMakePlanks(Mods.RU, "ashen_log", "stripped_dead_log", null),
RU_13 = stripAndMakePlanks(Mods.RU, "ashen_wood", "stripped_dead_wood", null)
;
GeneratedRecipe stripAndMakePlanks(Block wood, Block stripped, Block planks) {
create(() -> wood, b -> b.duration(50)

View file

@ -51,7 +51,7 @@ public enum Mods {
GOOD("goodending"),
BMK("biomemakeover"),
NE("nethers_exoticism"),
RU("regions_unexplored"),
RU("regions_unexplored")
;

View file

@ -184,8 +184,8 @@ public class CreateRegistrateTags {
helper.add(Mods.ATM_2, "rosewood", "grimwood");
helper.add(Mods.GOOD, "muddy_oak", "cypress");
helper.add(Mods.BMK, "blighted_balsa", "willow", "swamp_cypress", "ancient_oak");
helper.add(Mods.RU, "alpha", "ashen", "baobab", "blackwood", "brimwood", "cobalt", "cypress", "dead", "eucalyptus", "joshua",
"kapok", "larch", "magnolia", "maple","mauve", "palm", "pine", "redwood", "socotra", "willow");
helper.add(Mods.RU, "alpha", "ashen", "baobab", "blackwood", "brimwood", "cobalt", "cypress", "dead", "eucalyptus", "joshua",
"kapok", "larch", "magnolia", "maple","mauve", "palm", "pine", "redwood", "socotra", "willow");
TagGen.addOptional(logAppender, Mods.AUTUM, "maple");
@ -203,7 +203,6 @@ public class CreateRegistrateTags {
TagGen.addOptional(logAppender, Mods.RU, "stripped_yellow_bioshroom_stem");
TagGen.addOptional(woodAppender, Mods.RU, "stripped_yellow_bioshroom_hyphae");
TagGen.addOptional(logAppender, Mods.RU, "brimwood_log_magma");
}
private static void genFluidTags(RegistrateTagsProvider<Fluid> prov) {