mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
v0.10-1.16.5-36.0.22
This commit is contained in:
@ -36,13 +36,6 @@ var refined = [
|
||||
`crafting_monitor`
|
||||
];
|
||||
|
||||
onEvent(`jei.information`, e => {
|
||||
e.add(`allthemodium:molten_bluelava_bucket`, [`Soul Lava appears occasionally in the nether.`, `(Small source blocks only - no pools.)`]);
|
||||
e.add(`allthemodium:allthemodium_ore`, [`Check all the oceans for Allthemodium.`, `(Y 5-45)`]);
|
||||
e.add(`allthemodium:vibranium_ore`, [`Vibranium can be found in warped forests in the Nether.`, `(Y 80-127)`]);
|
||||
e.add(`allthemodium:unobtainium_ore`, [`Unobtainium can be obtained from the Highland biomes in the End.`]);
|
||||
});
|
||||
|
||||
onEvent(`jei.add.items`, e => {
|
||||
e.add([
|
||||
`minecraft:dragon_egg`
|
||||
@ -189,6 +182,7 @@ onEvent(`jei.hide.items`, e => {
|
||||
hideStuff(`solarflux`, `sp`, [6, 7, 8]);
|
||||
hideStuff(`quark`, `crate`, [`apple`, `carrot`, `beetroot`, `potato`]);
|
||||
hideStuff(`quark`, `block`, [`bamboo`, `charcoal`, `sugar_cane`]);
|
||||
hideStuff(`eidolon`, `ore`, [`lead`]);
|
||||
});
|
||||
|
||||
onEvent(`item.tooltip`, e => {
|
||||
|
1098
kubejs[atm]/server_scripts/envirotech.js
Normal file
1098
kubejs[atm]/server_scripts/envirotech.js
Normal file
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,7 @@ events.listen('recipes', function(e) {
|
||||
var mekEnrich = e.recipes.mekanism.enriching
|
||||
var pedCrush = e.recipes.pedestals.pedestal_crushing
|
||||
var pedSaw = e.recipes.pedestals.pedestal_sawing
|
||||
var mekSaw = e.recipes.mekanism.sawing
|
||||
|
||||
function energize(ingredient, result, rCount, power) {
|
||||
e.recipes.powah.energizing({
|
||||
@ -119,6 +120,7 @@ events.listen('recipes', function(e) {
|
||||
P: '#minecraft:planks'
|
||||
})
|
||||
e.smelting(item.of('appliedenergistics2:certus_quartz_crystal'), '#forge:ores/certus_quartz').xp(1)
|
||||
e.smelting(item.of('alltheores:platinum_ingot'), 'create:crushed_platinum_ore').xp(1)
|
||||
e.smelting(item.of('minecraft:glass'), '#forge:sand').xp(.1)
|
||||
e.shapeless(item.of('minecraft:clay_ball', 4), 'minecraft:clay')
|
||||
e.shapeless(item.of('minecraft:quartz', 4), 'minecraft:quartz_block')
|
||||
@ -221,6 +223,61 @@ events.listen('recipes', function(e) {
|
||||
mekEnrich(item.of('powah:uraninite', 4), 'powah:uraninite_ore')
|
||||
mekEnrich(item.of('powah:uraninite', 8), 'powah:uraninite_ore_dense')
|
||||
|
||||
mekSaw(item.of('byg:aspen_planks', 6), 'byg:aspen_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:aspen_planks', 6), 'byg:stripped_aspen_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:baobab_planks', 6), 'byg:baobab_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:baobab_planks', 6), 'byg:stripped_baobab_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:blue_enchanted_planks', 6), 'byg:blue_enchanted_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:blue_enchanted_planks', 6), 'byg:stripped_blue_enchanted_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cherry_planks', 6), 'byg:cherry_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cherry_planks', 6), 'byg:stripped_cherry_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cika_planks', 6), 'byg:cika_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cika_planks', 6), 'byg:stripped_cika_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cypress_planks', 6), 'byg:cypress_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:cypress_planks', 6), 'byg:stripped_cypress_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:ebony_planks', 6), 'byg:ebony_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:ebony_planks', 6), 'byg:stripped_ebony_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:ether_planks', 6), 'byg:ether_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:ether_planks', 6), 'byg:stripped_ether_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:fir_planks', 6), 'byg:fir_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:fir_planks', 6), 'byg:stripped_fir_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:green_enchanted_planks', 6), 'byg:green_enchanted_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:green_enchanted_planks', 6), 'byg:stripped_green_enchanted_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:holly_planks', 6), 'byg:holly_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:holly_planks', 6), 'byg:stripped_holly_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:jacaranda_planks', 6), 'byg:jacaranda_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:jacaranda_planks', 6), 'byg:stripped_jacaranda_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:lament_planks', 6), 'byg:lament_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:lament_planks', 6), 'byg:stripped_lament_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:mahogany_planks', 6), 'byg:mahogany_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:mahogany_planks', 6), 'byg:stripped_mahogany_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:mangrove_planks', 6), 'byg:mangrove_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:mangrove_planks', 6), 'byg:stripped_mangrove_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:maple_planks', 6), 'byg:maple_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:maple_planks', 6), 'byg:stripped_maple_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:nightshade_planks', 6), 'byg:nightshade_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:nightshade_planks', 6), 'byg:stripped_nightshade_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:palm_planks', 6), 'byg:palm_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:palm_planks', 6), 'byg:stripped_palm_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('minecraft:birch_planks', 6), 'byg:palo_verde_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('minecraft:birch_planks', 6), 'byg:stripped_palo_verde_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:pine_planks', 6), 'byg:pine_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:pine_planks', 6), 'byg:stripped_pine_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:rainbow_eucalyptus_planks', 6), 'byg:rainbow_eucalyptus_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:rainbow_eucalyptus_planks', 6), 'byg:stripped_rainbow_eucalyptus_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:redwood_planks', 6), 'byg:redwood_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:redwood_planks', 6), 'byg:stripped_redwood_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:skyris_planks', 6), 'byg:skyris_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:skyris_planks', 6), 'byg:stripped_skyris_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:willow_planks', 6), 'byg:willow_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:willow_planks', 6), 'byg:stripped_willow_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:witch_hazel_planks', 6), 'byg:witch_hazel_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:witch_hazel_planks', 6), 'byg:stripped_witch_hazel_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:zelkova_planks', 6), 'byg:zelkova_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('byg:zelkova_planks', 6), 'byg:stripped_zelkova_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('minecraft:oak_planks', 6), 'byg:withering_oak_log', Item.of('mekanism:sawdust').withChance(0.25))
|
||||
mekSaw(item.of('mekanism:sawdust', 8), 'byg:imbued_nightshade_log')
|
||||
|
||||
//Creative recipes
|
||||
energize([{
|
||||
item: 'appliedenergistics2:dense_energy_cell'
|
||||
|
@ -218,7 +218,7 @@ onEvent('block.tags', e => {
|
||||
e.add('resourcefulbees:valid_apiary', ['quark:lit_lamp', 'quark:paper_wall', 'quark:paper_wall_big', 'quark:paper_wall_sakura']);
|
||||
e.add('mcwwindows:window', '/mcwwindows:.+_win/');
|
||||
e.add('misctags:concrete', '/minecraft:.+_concrete/');
|
||||
e.add('misctags:no_moving', ['/refinedstorage:.+/', '/extrastorage:.+/', '/waystones:.+/', '/appliedenergistics2:.+/']);//Regex to add a tag preventing moving by bag of yurting
|
||||
e.add('misctags:no_moving', ['/refinedstorage:.+/', '/extrastorage:.+/', '/waystones:.+/', '/appliedenergistics2:.+/']); //Regex to add a tag preventing moving by bag of yurting
|
||||
e.add('resourcefulbees:valid_apiary', ['/darkutils:filter_.+/']); //, '/rftoolsbuilder:.+/', '^\\w+_glass$'
|
||||
|
||||
//Astral Sorcery
|
||||
@ -238,7 +238,8 @@ onEvent('block.tags', e => {
|
||||
/^create:[\w]*gabbro/,
|
||||
/^create:[\w]*scoria/,
|
||||
]);
|
||||
|
||||
//AE2
|
||||
e.add('resourcefulbees:valid_apiary', ['appliedenergistics2:quartz_block']);
|
||||
|
||||
//Removal
|
||||
e.removeAll('minecraft:enderman_holdable');
|
||||
|
@ -54,6 +54,12 @@ onEvent('recipes', e => {
|
||||
output: `mekanism:shard_${name}`,
|
||||
type: 'mekanism:injecting'
|
||||
});
|
||||
//console.log("Removing injecting recipes for mekanism:crystals_" + name + " to mekanism:shard_" + name);
|
||||
e.remove({
|
||||
input: `#mekanism:crystals/${name}`,
|
||||
output: `mekanism:shard_${name}`,
|
||||
type: 'mekanism:injecting'
|
||||
});
|
||||
/* Not working prior to KubeJS kubejs-1604.3.4.137-forge.jar, unnecessary currently.
|
||||
console.log(`Removing injecting recipes for mekanism:crystals/${name} to mekanism:shard_${name}`);
|
||||
e.remove({
|
||||
|
Reference in New Issue
Block a user