v0.8-1.16.5-36.0.14

This commit is contained in:
Citali 2021-02-07 11:32:48 +01:00
parent ec6001382f
commit 8627606b8e
Signed by: Citali
GPG Key ID: CD1CD4279A473F9C
19 changed files with 327 additions and 30 deletions

View File

@ -2,32 +2,14 @@
## Additions
- Add Runelic (1.16.5-7.0.1)
## Removals
## Updates
- Update achitectury (1.5.105 to 1.5.107)
- Update BotanyPots (1.16.5-7.0.2 to 1.16.5-7.0.6)
- Update Cyclic (1.16.5-1.1.5 to 1.16.5-1.1.6)
- Update dungeons_plus (1.16.4-1.1.2 to 1.16.4-1.1.3)
- Update engineerstools (1.16.4-1.1.3 to 1.16.4-1.1.4)
- Update envirocore (1.16.4-3.0.7.0 to 1.16.5-3.0.7.1)
- Update envirotech (1.16.4-3.0.7.0 to 1.16.5-3.0.7.1)
- Update ftb-gui-library (1605.2.1.37 to 1605.2.1.38)
- Update geckolib (1.16.5-3.0.11 to 1.16.5-3.0.12)
- Update industrial-foregoing (1.16.5-3.2.9.1 to 1.16.5-3.2.9.2)
- Update kubejs (1605-3.6.160 to 1605-3.6.162)
- Update mcjtylib (1.16-5.0.15 to 1.16-5.0.16)
- Update rftoolscontrol (1.16-4.0.6 to 1.16-4.0.7)
- Update rftoolsstorage (1.16-2.0.8 to 1.16-2.0.9)
- Update rftoolsutility (1.16-3.0.20 to 1.16-3.0.21)
- Update rsgauges (1.16.4-1.2.8 to 1.16.4-1.2.9-b1)
- Update titanium (1.16.4-3.2.6.1 to 1.16.5-3.2.6.2)
- Update trashcans (1.16.4-1.0.6a to 1.16.4-1.0.7)
- Update valkyrielib (1.16.4-3.0.7.0 to 1.16.5-3.0.7.1)
## Changes
- Change kubejs recepies and worldgen
### Kubejs
- Change vanilla ore drops
- Change create lapis press recipe
- Add new graphite block and recipe to create diamond with create

View File

@ -0,0 +1,5 @@
{
"variants": {
"normal": [{"model": "kubejs:graphite_block"}]
}
}

View File

@ -0,0 +1,4 @@
{
"block.kubejs.graphite_block": "Graphite",
"item.kubejs.diamond_nugget": "Diamond Nugget"
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "kubejs:blocks/graphite_block"
}
}

View File

Before

Width:  |  Height:  |  Size: 912 B

After

Width:  |  Height:  |  Size: 912 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 597 B

View File

@ -1,5 +1,4 @@
events.listen('jei.hide.items', (event) => {
event.hide('/appliedenergistics2:facade/');
event.hide('thermal:bitumen');
event.hide('/apatite/');
});

View File

@ -0,0 +1,48 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "emendatusenigmatica:coal_chunk"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:coal"
}
]
}
]
}
]
}

View File

@ -0,0 +1,48 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "emendatusenigmatica:diamond_chunk"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:diamond"
}
]
}
]
}
]
}

View File

@ -0,0 +1,48 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "emendatusenigmatica:emerald_chunk"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:emerald"
}
]
}
]
}
]
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "emendatusenigmatica:gold_chunk"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "emendatusenigmatica:iron_chunk"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "emendatusenigmatica:lapis_chunk"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 4.0,
"max": 9.0,
"type": "minecraft:uniform"
}
},
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:lapis_lazuli"
}
]
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"enchantments": [
{
"enchantment": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
],
"name": "emendatusenigmatica:redstone_chunk"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 4.0,
"max": 5.0,
"type": "minecraft:uniform"
}
},
{
"function": "minecraft:apply_bonus",
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:redstone"
}
]
}
]
}
]
}

View File

@ -18,5 +18,8 @@ events.listen('recipes', e => {
pressing, sandpaper_polishing, splashing, filling, emptying, mechanical_crafting
} = e.recipes.create;
pressing(Item.of('#forge:storage_blocks/coal', 9), 'kubejs:graphite_one');
compacting('kubejs:graphite_block', ['#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal','#forge:storage_blocks/coal']).heated();
compacting('kubejs:graphite_block', ['#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal','#forge:storage_blocks/charcoal']).heated();
compacting('kubejs:diamond_nugget', ['kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block', 'kubejs:graphite_block']).superheated();
compacting('minecraft:diamond', ['kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget', 'kubejs:diamond_nugget']).superheated();
});

View File

@ -1,6 +1,9 @@
// priority: 98
events.listen('recipes', e => {
// Create
e.replaceInput({id: 'create:pressing/lapis_block'}, 'minecraft:lapis_block', '#forge:gems/lapis');
// Mana and Artifice
e.replaceInput({}, 'mana-and-artifice:vinteum_ore', '#forge:ores/arcane');
});

View File

@ -0,0 +1,3 @@
events.listen('block.registry', e => {
e.create('graphite_block').material('rock').hardness(0.5).add()
});

View File

@ -1,6 +1,4 @@
events.listen('item.registry', function (event) {
event.create('diamond_nugget').group('fellies').displayName('Diamond Nugget');
event.create('graphite_one').group('fellies').displayName('Graphite 1');
event.create('graphite_two').group('fellies').displayName('Graphite 2');
event.create('graphite_three').group('fellies').displayName('Graphite 3');
events.listen('item.registry', e => {
e.createBlockItem('graphite_block').add();
e.create('diamond_nugget').add();
});