Version 1.0.21b

This commit is contained in:
2023-06-22 00:44:38 +00:00
parent b37aa5cd58
commit 2cce1cc03e
169 changed files with 7289 additions and 3706 deletions

View 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}`)
)
})

View File

@@ -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')
})

View File

@@ -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 => {