Version 1.0.21b
This commit is contained in:
40
minecraft/kubejs/server_scripts/modpack/atm_molten_fluids.js
Normal file
40
minecraft/kubejs/server_scripts/modpack/atm_molten_fluids.js
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
Authored by Mitchell52
|
||||
for AllTheMods 8
|
||||
*/
|
||||
|
||||
ServerEvents.recipes(e=>{
|
||||
let ATM_metal = ['allthemodium','unobtainium','vibranium',]
|
||||
ATM_metal.forEach(ATM_metal =>
|
||||
e.custom({
|
||||
"type": "thermal:crucible",
|
||||
"ingredient": {
|
||||
"item": `allthemodium:${ATM_metal}_block`
|
||||
},
|
||||
"result": [
|
||||
{
|
||||
"fluid": `allthemodium:molten_${ATM_metal}`,
|
||||
"amount": 1000
|
||||
}
|
||||
],
|
||||
"energy": 232000
|
||||
}).id(`kubejs:molten_${ATM_metal}`)
|
||||
)
|
||||
ATM_metal.forEach(ATM_metal =>
|
||||
e.custom({
|
||||
"type": "thermal:chiller",
|
||||
"ingredients": [
|
||||
{
|
||||
"fluid": `allthemodium:molten_${ATM_metal}`,
|
||||
"amount": 1000
|
||||
}
|
||||
],
|
||||
"result": [
|
||||
{
|
||||
"item": `allthemodium:${ATM_metal}_block`
|
||||
}
|
||||
],
|
||||
"energy": 232000
|
||||
}).id(`kubejs:chilling_${ATM_metal}`)
|
||||
)
|
||||
})
|
||||
@@ -1,12 +1,12 @@
|
||||
//missing crushed platinum handling
|
||||
ServerEvents.recipes(event => {
|
||||
event.smelting('alltheores:platinum_ingot', 'create:crushed_platinum_ore').xp(0.1).id('kubejs:create/smelting/platinum_ingot_from_crushed')
|
||||
event.blasting('alltheores:platinum_ingot', 'create:crushed_platinum_ore').xp(0.1).id('kubejs:create/blasting/platinum_ingot_from_crushed')
|
||||
event.smelting('alltheores:platinum_ingot', 'create:crushed_raw_platinum').xp(0.1).id('kubejs:create/smelting/platinum_ingot_from_crushed')
|
||||
event.blasting('alltheores:platinum_ingot', 'create:crushed_raw_platinum').xp(0.1).id('kubejs:create/blasting/platinum_ingot_from_crushed')
|
||||
event.custom({
|
||||
type: 'create:splashing',
|
||||
ingredients: [
|
||||
{
|
||||
'item': 'create:crushed_platinum_ore'
|
||||
'item': 'create:crushed_raw_platinum'
|
||||
}
|
||||
],
|
||||
results: [
|
||||
@@ -15,5 +15,5 @@ ServerEvents.recipes(event => {
|
||||
'item': 'alltheores:platinum_nugget'
|
||||
}
|
||||
]
|
||||
}).id('kubejs:create/splashing/crushed_platinum_ore')
|
||||
}).id('kubejs:create/splashing/crushed_raw_platinum')
|
||||
})
|
||||
|
||||
@@ -6,6 +6,7 @@ ServerEvents.tags('item', event => {
|
||||
event.add('forge:dusts/ender', 'ae2:ender_dust')
|
||||
event.add('ars_nouveau:golem/shard', ['minecraft:amethyst_shard', 'ae2:certus_quartz_crystal'])
|
||||
event.add('forge:raw_materials', ['silentgear:raw_azure_silver', 'silentgear:raw_crimson_iron'])
|
||||
event.add('forge:rubber', ['ftbic:rubber','industrialforegoing:dryrubber','thermal:cured_rubber'])
|
||||
event.add('mysticalagriculture:essences', [
|
||||
'mysticalagriculture:allthemodium_essence',
|
||||
'mysticalagriculture:azure_silver_essence',
|
||||
@@ -57,7 +58,13 @@ ServerEvents.tags('block', event => {
|
||||
})
|
||||
|
||||
ServerEvents.tags('fluid', event => {
|
||||
event.remove('minecraft:water', 'ad_astra:oil')
|
||||
event.remove('minecraft:water',[
|
||||
'ad_astra:oil','ad_astra:flowing_oil',
|
||||
'ad_astra:cryo_fuel','ad_astra:flowing_cryo_fuel',
|
||||
'ad_astra:fuel','ad_astra:flowing_fuel',
|
||||
'hexerei:blood_flowing','hexerei:blood_fluid',
|
||||
'hexerei:tallow_flowing','hexerei:tallow_fluid',
|
||||
'createaddition:flowing_seed_oil','createaddition:seed_oil'])
|
||||
})
|
||||
|
||||
ServerEvents.tags('entity_type', event => {
|
||||
|
||||
Reference in New Issue
Block a user