Version bump to 0.6.12
KubeJS scripts added: - server_scripts/cookingforblockheads.js - Added recipe override for the Cooking for Blockheads sink - Iron Ingot (3x) --> Atomic Alloy (Mekanism) (3x) - Water Bucket --> Water Source Tier 5 (Water Sources)
This commit is contained in:
parent
21efba5795
commit
116a580290
3 changed files with 20 additions and 2 deletions
|
@ -175,6 +175,10 @@ hash = "bcf3c45ad159d8825654ef5af1bf32d894a45a62dac422a9f59f2524e1110a58"
|
|||
file = "kubejs/server_scripts/recipes/cheese.js"
|
||||
hash = "53a4c35fb3d971df5fed83ee152f66570c4d083641a01fbf876694740a21cfb6"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/recipes/cookingforblockheads.js"
|
||||
hash = "2af739119b21bd7e0b66f42efdf1a7c61cd104c6669fd4717bf4ad76b05b7e2a"
|
||||
|
||||
[[files]]
|
||||
file = "kubejs/server_scripts/recipes/immersiveengineering.js"
|
||||
hash = "1f5e1baf6616c815215c9a5fb6e4ef00409ace878547a69235059b0707bc5f95"
|
||||
|
|
14
src/kubejs/server_scripts/recipes/cookingforblockheads.js
Normal file
14
src/kubejs/server_scripts/recipes/cookingforblockheads.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
ServerEvents.recipes((event) => {
|
||||
// Remove the Cooking for Blockheads Sink recipe and add a progression-based one
|
||||
event.remove({ output: "cookingforblockheads:sink" })
|
||||
|
||||
event.shaped("cookingforblockheads:sink", [
|
||||
'AAA',
|
||||
'BCB',
|
||||
'BBB'
|
||||
], {
|
||||
A: "mekanism:alloy_atomic",
|
||||
B: "minecraft:terracotta",
|
||||
C: "watersources:water_source_tier_5"
|
||||
})
|
||||
})
|
|
@ -1,12 +1,12 @@
|
|||
name = "GalacticFactory"
|
||||
author = "GalacticFactory"
|
||||
version = "0.6.11"
|
||||
version = "0.6.12"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "076c56d6798594d1a64f9f66d6ba726369fd558bacba11d3352f7037fe843d08"
|
||||
hash = "5f72c7ae925b3654be89990f7a3da97864fc1adef94d0b9ef19b794b11b9af73"
|
||||
|
||||
[versions]
|
||||
forge = "47.2.0"
|
||||
|
|
Reference in a new issue