mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-27 05:18:08 +01:00
Merge branch 'mc1.18/dev' into mc1.19/dev
This commit is contained in:
commit
3025941258
5 changed files with 20 additions and 9 deletions
|
@ -2,19 +2,29 @@
|
|||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"rolls": 1.0,
|
||||
"bonus_rolls": 0.0,
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "create:tiled_glass"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:match_tool",
|
||||
"predicate": {
|
||||
"enchantments": [
|
||||
{
|
||||
"enchantment": "minecraft:silk_touch",
|
||||
"levels": {
|
||||
"min": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -14,7 +14,7 @@
|
|||
"processingTime": 50,
|
||||
"results": [
|
||||
{
|
||||
"item": "upgrade_aquatic:strippped_driftwood"
|
||||
"item": "upgrade_aquatic:stripped_driftwood"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -8,7 +8,7 @@
|
|||
],
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "upgrade_aquatic:strippped_driftwood"
|
||||
"item": "upgrade_aquatic:stripped_driftwood"
|
||||
}
|
||||
],
|
||||
"processingTime": 50,
|
|
@ -41,6 +41,7 @@ public class AllPaletteBlocks {
|
|||
.addLayer(() -> RenderType::cutout)
|
||||
.recipe((c, p) -> p.stonecutting(DataIngredient.tag(Tags.Items.GLASS_COLORLESS), c::get))
|
||||
.blockstate((c, p) -> BlockStateGen.cubeAll(c, p, "palettes/"))
|
||||
.loot((t, g) -> t.dropWhenSilkTouch(g))
|
||||
.tag(Tags.Blocks.GLASS_COLORLESS, BlockTags.IMPERMEABLE)
|
||||
.item()
|
||||
.tag(Tags.Items.GLASS_COLORLESS)
|
||||
|
|
|
@ -128,7 +128,7 @@ public class CuttingRecipeGen extends ProcessingRecipeGen {
|
|||
|
||||
// Upgrade Aquatic
|
||||
UA = cuttingCompat(Mods.UA, "river"),
|
||||
UA_2 = stripAndMakePlanks(Mods.UA, "driftwood", "strippped_driftwood", "driftwood_planks"),
|
||||
UA_2 = stripAndMakePlanks(Mods.UA, "driftwood", "stripped_driftwood", "driftwood_planks"),
|
||||
UA_3 = cuttingCompatLogOnly(Mods.UA, "driftwood"),
|
||||
|
||||
//Vault Hunters
|
||||
|
|
Loading…
Reference in a new issue