Star chair recipe
This commit is contained in:
parent
1f9719ceab
commit
7be3607da8
@ -1,6 +1,7 @@
|
|||||||
package ru.dbotthepony.mc.otm.datagen.recipes
|
package ru.dbotthepony.mc.otm.datagen.recipes
|
||||||
|
|
||||||
import net.minecraft.data.recipes.*
|
import net.minecraft.data.recipes.*
|
||||||
|
import net.minecraft.tags.ItemTags
|
||||||
import net.minecraft.world.item.DyeColor
|
import net.minecraft.world.item.DyeColor
|
||||||
import net.minecraft.world.item.ItemStack
|
import net.minecraft.world.item.ItemStack
|
||||||
import net.minecraft.world.item.Items
|
import net.minecraft.world.item.Items
|
||||||
@ -435,4 +436,12 @@ fun addDecorativesRecipes(provider: MatteryRecipeProvider, consumer: RecipeOutpu
|
|||||||
|
|
||||||
builder.build(consumer)
|
builder.build(consumer)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for ((color, item) in MRegistry.STAR_CHAIR.allItems) {
|
||||||
|
MatteryRecipe(item, category = RecipeCategory.DECORATIONS)
|
||||||
|
.rowB(color?.tag)
|
||||||
|
.row(MItemTags.TRITANIUM_PLATES, ItemTags.WOOL, MItemTags.TRITANIUM_PLATES)
|
||||||
|
.row(MItemTags.TRITANIUM_PLATES, MItemTags.CARBON_PLATES, MItemTags.TRITANIUM_PLATES)
|
||||||
|
.build(consumer)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user