Added mod files
This commit is contained in:
8
overrides/kubejs/startup_scripts/mods/moreminecarts.js
Normal file
8
overrides/kubejs/startup_scripts/mods/moreminecarts.js
Normal file
@@ -0,0 +1,8 @@
|
||||
if(Platform.isLoaded("moreminecarts")) {
|
||||
BlockEvents.modification(event => {
|
||||
// vitric cactus takes a long time to break. So we shorten its breaking time
|
||||
event.modify("moreminecarts:glass_cactus", block => {
|
||||
block.destroySpeed = 0.4
|
||||
})
|
||||
})
|
||||
}
|
||||
9
overrides/kubejs/startup_scripts/mods/trials.js
Normal file
9
overrides/kubejs/startup_scripts/mods/trials.js
Normal file
@@ -0,0 +1,9 @@
|
||||
if (Platform.isLoaded("trials")) {
|
||||
MoreJSEvents.registerPotionBrewing((event) => {
|
||||
// Potion recipes are not shown in jei by default for some reason
|
||||
event.addPotionBrewing("trials:breeze_rod", "minecraft:awkward", "trials:winded");
|
||||
event.addPotionBrewing("minecraft:stone", "minecraft:awkward", "trials:infested");
|
||||
event.addPotionBrewing("minecraft:cobweb", "minecraft:awkward", "trials:weave");
|
||||
event.addPotionBrewing("minecraft:slime_block", "minecraft:awkward", "trials:ooze");
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user