kubejs: reimport, update quests
This commit is contained in:
config/ftbquests/quests/chapters
defaultconfigs
ftbchunks
ftblibrary
ftbquests
kubejs
client_scripts
config
jsconfig.jsonserver_scripts
mods
ae2.jsarsnoveau.jsbakery.jsbotanypots.jsbountiful.jsbuildinggadgets2.jscaupona.jscookingforblockheads.jscroptopia.jsdarkutils.jsdoggytalents.jsdotcoinmod.jseasy_villagers.jselevatorid.jsexperienceobelisk.jsfarmersdelight.jsherbalbrews.jshostilenetworks.jsimmersive_aircraft.jsindustrial_foregoing.jsironfurnaces.jslaserio.jsmodularitems.jsmodularrouters.jspowah.jspowder_power.jsprettypipes.jsrefinedstorage.jssophisticated.jssummoningrituals.jstempad.jsthermal.jsvinery.jswaystones.js
startup_scripts
mods
pack.toml
50
kubejs/server_scripts/mods/hostilenetworks.js
Executable file
50
kubejs/server_scripts/mods/hostilenetworks.js
Executable file
@ -0,0 +1,50 @@
|
||||
ServerEvents.recipes(event => {
|
||||
// Gate HNN behind third tier of farming grist and first tier of energetic
|
||||
//event.remove({output: 'hostilenetworks:blank_data_model'})
|
||||
|
||||
//event.shaped
|
||||
|
||||
// Gate most of HNN behind first tier energetic grist
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:redstone',
|
||||
'#kubejs:grist/energetic/basic'
|
||||
)
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:iron_ingot',
|
||||
'#kubejs:grist/energetic/basic'
|
||||
)
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:gold_ingot',
|
||||
'#kubejs:grist/energetic/basic'
|
||||
)
|
||||
|
||||
// The loot fabricator needs more energy, and gate it behind mid-game farming
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:comparator',
|
||||
'#kubejs:grist/energetic/improved'
|
||||
)
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:obsidian',
|
||||
'#kubejs:grist/agricultural/improved'
|
||||
)
|
||||
|
||||
// This replaces the smooth stone for a data model with a tier gate
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:smooth_stone',
|
||||
'#kubejs:grist/agricultural/radiant'
|
||||
)
|
||||
|
||||
// Finally, target HNN matrixes with basic farming grist
|
||||
event.replaceInput(
|
||||
{mod: 'hostilenetworks'},
|
||||
'minecraft:clay_ball',
|
||||
'#kubejs:grist/agricultural/basic'
|
||||
)
|
||||
|
||||
});
|
Reference in New Issue
Block a user