Merge branch 'dev' of https://github.com/TerraFirmaGreg-Team/Modpack-Modern into dev
This commit is contained in:
commit
c04b3eacb0
43 changed files with 114 additions and 87 deletions
|
|
@ -29,7 +29,7 @@
|
||||||
"type": "patchouli:text",
|
"type": "patchouli:text",
|
||||||
"title": "Drums",
|
"title": "Drums",
|
||||||
"anchor": "drums",
|
"anchor": "drums",
|
||||||
"text": "For storing fluids, GregTech has $(item)Drums$(). These can hold a large amount of a single fluid type, and different tiers hold more, just like with crates.$(br2)Unlike crates, drums will retain their fluid when broken, making them ideal for moving fluids around.$(br2)Drums can automatically push their fluid out of their bottom face by right-clicking them with a $(thing)Soft Mallet$()."
|
"text": "For storing fluids, GregTech has $(item)Drums$(). These can hold a large amount of a single fluid type, and different tiers hold more, just like with crates.$(br2)Unlike crates, drums will retain their fluid when broken, making them ideal for moving fluids around.$(br2)Drums can automatically push their fluid out of their bottom face by right-clicking them with a $(thing)Soft Mallet$() or $(thing)Screwdriver$()."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "patchouli:crafting",
|
"type": "patchouli:crafting",
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
"type": "patchouli:text",
|
"type": "patchouli:text",
|
||||||
"title": "桶",
|
"title": "桶",
|
||||||
"anchor": "drums",
|
"anchor": "drums",
|
||||||
"text": "在流体存储方面,格雷科技提供了$(item)桶$()。与板条箱类似,不同等级的桶可容纳单一流体的容量逐级提升。$(br2)与板条箱不同的是,桶被破坏时将保留内部流体,非常适合转移流体物资。$(br2)使用$(thing)软木槌$()右键点击桶可使其自动从底部面输出流体。"
|
"text": "在流体存储方面,格雷科技提供了$(item)桶$()。与板条箱类似,不同等级的桶可容纳单一流体的容量逐级提升。$(br2)与板条箱不同的是,桶被破坏时将保留内部流体,非常适合转移流体物资。$(br2)使用$(thing)软木槌$()或$(thing)螺丝刀$()右键点击桶可使其自动从底部面输出流体。"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "patchouli:crafting",
|
"type": "patchouli:crafting",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.AD_ASTRA_DISABLED_ITEMS =
|
global.AD_ASTRA_DISABLED_ITEMS =
|
||||||
|
|
@ -110,7 +110,37 @@ global.BREATHABLE_COMPRESSED_AIRS =
|
||||||
];
|
];
|
||||||
|
|
||||||
global.AD_ASTRA_WOOD = [
|
global.AD_ASTRA_WOOD = [
|
||||||
{name: 'aeronos', logs: '#ad_astra:aeronos_caps', log: 'ad_astra:aeronos_stem', stripped_log: null, lumber: 'tfg:wood/lumber/aeronos', plank: 'ad_astra:aeronos_planks', stair: 'ad_astra:aeronos_stairs', slab: 'ad_astra:aeronos_slab', fence: 'ad_astra:aeronos_fence', fence_gate: 'ad_astra:aeronos_fence_gate', door: 'ad_astra:aeronos_door', trapdoor: 'ad_astra:aeronos_trapdoor', button: null, pressure_plate: null, support: 'tfg:aeronos_support', isHardwood: false},
|
{
|
||||||
{name: 'strophar', logs: '#ad_astra:strophar_caps', log: 'ad_astra:strophar_stem', stripped_log: null, lumber: 'tfg:wood/lumber/strophar', plank: 'ad_astra:strophar_planks', stair: 'ad_astra:strophar_stairs', slab: 'ad_astra:strophar_slab', fence:'ad_astra:strophar_fence', fence_gate: 'ad_astra:strophar_fence_gate', door:'ad_astra:strophar_door', trapdoor: 'ad_astra:strophar_trapdoor', button: null, pressure_plate: null, support: 'tfg:strophar_support', isHardwood: false},
|
name: 'aeronos',
|
||||||
{name: 'glacian', logs: '#ad_astra:glacian_logs', log: 'ad_astra:glacian_log', stripped_log: 'ad_astra:stripped_glacian_log', lumber: 'tfg:wood/lumber/glacian', plank: 'ad_astra:glacian_planks', stair: 'ad_astra:glacian_stairs', slab: 'ad_astra:glacian_slab', fence: 'ad_astra:glacian_fence', fence_gate: 'ad_astra:glacian_fence_gate', door: 'ad_astra:glacian_door', trapdoor: 'ad_astra:glacian_trapdoor', button: 'ad_astra:glacian_button', pressure_plate: 'ad_astra:glacian_pressure_plate', support: 'tfg:glacian_support', isHardwood: true},
|
logs: '#ad_astra:aeronos_caps', log: 'ad_astra:aeronos_stem', stripped_log: null,
|
||||||
|
lumber: 'tfg:wood/lumber/aeronos', plank: 'ad_astra:aeronos_planks',
|
||||||
|
stair: 'ad_astra:aeronos_stairs', slab: 'ad_astra:aeronos_slab',
|
||||||
|
fence: 'ad_astra:aeronos_fence', fence_gate: 'ad_astra:aeronos_fence_gate',
|
||||||
|
door: 'ad_astra:aeronos_door', trapdoor: 'ad_astra:aeronos_trapdoor',
|
||||||
|
button: null, pressure_plate: null,
|
||||||
|
support: 'tfg:aeronos_support',
|
||||||
|
isHardwood: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'strophar',
|
||||||
|
logs: '#ad_astra:strophar_caps', log: 'ad_astra:strophar_stem', stripped_log: null,
|
||||||
|
lumber: 'tfg:wood/lumber/strophar', plank: 'ad_astra:strophar_planks',
|
||||||
|
stair: 'ad_astra:strophar_stairs', slab: 'ad_astra:strophar_slab',
|
||||||
|
fence:'ad_astra:strophar_fence', fence_gate: 'ad_astra:strophar_fence_gate',
|
||||||
|
door:'ad_astra:strophar_door', trapdoor: 'ad_astra:strophar_trapdoor',
|
||||||
|
button: null, pressure_plate: null,
|
||||||
|
support: 'tfg:strophar_support',
|
||||||
|
isHardwood: false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'glacian',
|
||||||
|
logs: '#ad_astra:glacian_logs', log: 'ad_astra:glacian_log', stripped_log: 'ad_astra:stripped_glacian_log',
|
||||||
|
lumber: 'tfg:wood/lumber/glacian', plank: 'ad_astra:glacian_planks',
|
||||||
|
stair: 'ad_astra:glacian_stairs', slab: 'ad_astra:glacian_slab',
|
||||||
|
fence: 'ad_astra:glacian_fence', fence_gate: 'ad_astra:glacian_fence_gate',
|
||||||
|
door: 'ad_astra:glacian_door', trapdoor: 'ad_astra:glacian_trapdoor',
|
||||||
|
button: 'ad_astra:glacian_button', pressure_plate: 'ad_astra:glacian_pressure_plate',
|
||||||
|
support: 'tfg:glacian_support',
|
||||||
|
isHardwood: true
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.ADVANCED_PERIPHERALS_DISABLED_ITEMS = [
|
global.ADVANCED_PERIPHERALS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.AE2_DISABLED_ITEMS = [
|
global.AE2_DISABLED_ITEMS = [
|
||||||
|
|
@ -62,7 +62,7 @@ global.AE2_GLASS_CABLES = [
|
||||||
'ae2:brown_glass_cable',
|
'ae2:brown_glass_cable',
|
||||||
'ae2:green_glass_cable',
|
'ae2:green_glass_cable',
|
||||||
'ae2:red_glass_cable',
|
'ae2:red_glass_cable',
|
||||||
'ae2:black_glass_cable',
|
'ae2:black_glass_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Covered Cable
|
// Covered Cable
|
||||||
|
|
@ -82,7 +82,7 @@ global.AE2_COVERED_CABLES = [
|
||||||
'ae2:brown_covered_cable',
|
'ae2:brown_covered_cable',
|
||||||
'ae2:green_covered_cable',
|
'ae2:green_covered_cable',
|
||||||
'ae2:red_covered_cable',
|
'ae2:red_covered_cable',
|
||||||
'ae2:black_covered_cable',
|
'ae2:black_covered_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Dense Covered Cable
|
// Dense Covered Cable
|
||||||
|
|
@ -102,7 +102,7 @@ global.AE2_COVERED_DENSE_CABLES = [
|
||||||
'ae2:brown_covered_dense_cable',
|
'ae2:brown_covered_dense_cable',
|
||||||
'ae2:green_covered_dense_cable',
|
'ae2:green_covered_dense_cable',
|
||||||
'ae2:red_covered_dense_cable',
|
'ae2:red_covered_dense_cable',
|
||||||
'ae2:black_covered_dense_cable',
|
'ae2:black_covered_dense_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Smart Cable
|
// Smart Cable
|
||||||
|
|
@ -122,7 +122,7 @@ global.AE2_SMART_CABLES = [
|
||||||
'ae2:brown_smart_cable',
|
'ae2:brown_smart_cable',
|
||||||
'ae2:green_smart_cable',
|
'ae2:green_smart_cable',
|
||||||
'ae2:red_smart_cable',
|
'ae2:red_smart_cable',
|
||||||
'ae2:black_smart_cable',
|
'ae2:black_smart_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Dense Smart Cable
|
// Dense Smart Cable
|
||||||
|
|
@ -142,7 +142,7 @@ global.AE2_SMART_DENSE_CABLES = [
|
||||||
'ae2:brown_smart_dense_cable',
|
'ae2:brown_smart_dense_cable',
|
||||||
'ae2:green_smart_dense_cable',
|
'ae2:green_smart_dense_cable',
|
||||||
'ae2:red_smart_dense_cable',
|
'ae2:red_smart_dense_cable',
|
||||||
'ae2:black_smart_dense_cable',
|
'ae2:black_smart_dense_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Smart Cable
|
// Smart Cable
|
||||||
|
|
@ -162,7 +162,7 @@ global.AE2_SMART_CABLES = [
|
||||||
'ae2:brown_smart_cable',
|
'ae2:brown_smart_cable',
|
||||||
'ae2:green_smart_cable',
|
'ae2:green_smart_cable',
|
||||||
'ae2:red_smart_cable',
|
'ae2:red_smart_cable',
|
||||||
'ae2:black_smart_cable',
|
'ae2:black_smart_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Dense Smart Cable
|
// Dense Smart Cable
|
||||||
|
|
@ -182,7 +182,7 @@ global.AE2_SMART_DENSE_CABLES = [
|
||||||
'ae2:brown_smart_dense_cable',
|
'ae2:brown_smart_dense_cable',
|
||||||
'ae2:green_smart_dense_cable',
|
'ae2:green_smart_dense_cable',
|
||||||
'ae2:red_smart_dense_cable',
|
'ae2:red_smart_dense_cable',
|
||||||
'ae2:black_smart_dense_cable',
|
'ae2:black_smart_dense_cable'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -203,7 +203,7 @@ global.AE2_PAINTBALLS = [
|
||||||
'ae2:brown_paint_ball',
|
'ae2:brown_paint_ball',
|
||||||
'ae2:green_paint_ball',
|
'ae2:green_paint_ball',
|
||||||
'ae2:red_paint_ball',
|
'ae2:red_paint_ball',
|
||||||
'ae2:black_paint_ball',
|
'ae2:black_paint_ball'
|
||||||
]
|
]
|
||||||
// Lumen paint ball
|
// Lumen paint ball
|
||||||
global.AE2_LUMEN_PAINTBALLS = [
|
global.AE2_LUMEN_PAINTBALLS = [
|
||||||
|
|
@ -222,6 +222,6 @@ global.AE2_LUMEN_PAINTBALLS = [
|
||||||
'ae2:brown_lumen_paint_ball',
|
'ae2:brown_lumen_paint_ball',
|
||||||
'ae2:green_lumen_paint_ball',
|
'ae2:green_lumen_paint_ball',
|
||||||
'ae2:red_lumen_paint_ball',
|
'ae2:red_lumen_paint_ball',
|
||||||
'ae2:black_lumen_paint_ball',
|
'ae2:black_lumen_paint_ball'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.AFC_DISABLED_ITEMS = [
|
global.AFC_DISABLED_ITEMS = [
|
||||||
|
|
@ -107,7 +108,7 @@ global.AFC_SOFTWOOD_TYPES =
|
||||||
[
|
[
|
||||||
'tualang',
|
'tualang',
|
||||||
'cypress',
|
'cypress',
|
||||||
'fig',
|
'fig'
|
||||||
]
|
]
|
||||||
|
|
||||||
global.AFC_HARDWOOD_TYPES =
|
global.AFC_HARDWOOD_TYPES =
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.ALEKIROOFS_DISABLED_ITEMS = [
|
global.ALEKIROOFS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.ALEKISHIPS_DISABLED_ITEMS = [
|
global.ALEKISHIPS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.ASTICOR_CARTS_DISABLED_ITEMS = [
|
global.ASTICOR_CARTS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.BENEATH_DISABLED_ITEMS = [
|
global.BENEATH_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.COMPUTER_CRAFT_DISCS = [
|
global.COMPUTER_CRAFT_DISCS = [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
// priority: 0
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
global.TAB_IDS = Object.freeze({
|
|
||||||
CREATE_BASE: 'create:base'
|
|
||||||
})
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// priority: 0
|
// priority: 0
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function modifyCreateCreativeTab(event) {
|
StartupEvents.modifyCreativeTab('create:base', event => {
|
||||||
event.add('create:shadow_steel_casing')
|
event.add('create:shadow_steel_casing')
|
||||||
event.add('create:refined_radiance_casing')
|
event.add('create:refined_radiance_casing')
|
||||||
}
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.CREATE_ADDITIONS_DISABLED_ITEMS = [
|
global.CREATE_ADDITIONS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.CREATE_CONNECTED_DISABLED_ITEMS = [
|
global.CREATE_CONNECTED_DISABLED_ITEMS = [
|
||||||
|
|
@ -19,5 +19,5 @@ global.CREATE_CONNECTED_DISABLED_ITEMS = [
|
||||||
'create_connected:brass_encased_cross_connector',
|
'create_connected:brass_encased_cross_connector',
|
||||||
'create_connected:kinetic_bridge',
|
'create_connected:kinetic_bridge',
|
||||||
'create_connected:kinetic_battery',
|
'create_connected:kinetic_battery',
|
||||||
'create_connected:charged_kinetic_battery',
|
'create_connected:charged_kinetic_battery'
|
||||||
]
|
]
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/** @global */
|
/** @global */
|
||||||
|
|
@ -9,7 +9,7 @@ global.CREATEDECO_DISABLED_ITEMS = /** @type {const} */ ([
|
||||||
"createdeco:industrial_iron_sheet",
|
"createdeco:industrial_iron_sheet",
|
||||||
"createdeco:netherite_nugget",
|
"createdeco:netherite_nugget",
|
||||||
"createdeco:industrial_iron_nugget",
|
"createdeco:industrial_iron_nugget",
|
||||||
"createdeco:industrial_iron_ingot",
|
"createdeco:industrial_iron_ingot"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/** @global */
|
/** @global */
|
||||||
|
|
@ -21,7 +21,7 @@ global.CREATE_DECO_BRICK_TYPES = /** @type {const} */ ([
|
||||||
"blue",
|
"blue",
|
||||||
"pearl",
|
"pearl",
|
||||||
"dean",
|
"dean",
|
||||||
"red",
|
"red"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([
|
global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([
|
||||||
|
|
@ -30,7 +30,7 @@ global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([
|
||||||
"createdeco:iron_window_pane",
|
"createdeco:iron_window_pane",
|
||||||
"createdeco:industrial_iron_window_pane",
|
"createdeco:industrial_iron_window_pane",
|
||||||
"createdeco:brass_window_pane",
|
"createdeco:brass_window_pane",
|
||||||
"createdeco:zinc_window_pane",
|
"createdeco:zinc_window_pane"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([
|
global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([
|
||||||
|
|
@ -39,5 +39,5 @@ global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([
|
||||||
"iron",
|
"iron",
|
||||||
"copper",
|
"copper",
|
||||||
"industrial_iron",
|
"industrial_iron",
|
||||||
"zinc",
|
"zinc"
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.DOMUM_ORNAMENTUM_DISABLED_ITEMS = /** @type {const} */ ([
|
global.DOMUM_ORNAMENTUM_DISABLED_ITEMS = /** @type {const} */ ([
|
||||||
"domum_ornamentum:blockbarreldeco_standing",
|
"domum_ornamentum:blockbarreldeco_standing",
|
||||||
"domum_ornamentum:blockbarreldeco_onside",
|
"domum_ornamentum:blockbarreldeco_onside"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.DOMUM_ORNAMENTUM_FLOATING_CARPETS = /** @type {const} */ ([
|
global.DOMUM_ORNAMENTUM_FLOATING_CARPETS = /** @type {const} */ ([
|
||||||
|
|
@ -22,5 +22,5 @@ global.DOMUM_ORNAMENTUM_FLOATING_CARPETS = /** @type {const} */ ([
|
||||||
"domum_ornamentum:brown_floating_carpet",
|
"domum_ornamentum:brown_floating_carpet",
|
||||||
"domum_ornamentum:green_floating_carpet",
|
"domum_ornamentum:green_floating_carpet",
|
||||||
"domum_ornamentum:red_floating_carpet",
|
"domum_ornamentum:red_floating_carpet",
|
||||||
"domum_ornamentum:black_floating_carpet",
|
"domum_ornamentum:black_floating_carpet"
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.EXTENDED_AE2_DISABLED_ITEMS = [
|
global.EXTENDED_AE2_DISABLED_ITEMS = [
|
||||||
|
|
@ -15,7 +16,7 @@ global.EXTENDED_AE2_DISABLED_ITEMS = [
|
||||||
'expatternprovider:ex_charger',
|
'expatternprovider:ex_charger',
|
||||||
'expatternprovider:caner',
|
'expatternprovider:caner',
|
||||||
'expatternprovider:circuit_cutter',
|
'expatternprovider:circuit_cutter',
|
||||||
'expatternprovider:silicon_block',
|
'expatternprovider:silicon_block'
|
||||||
|
|
||||||
|
|
||||||
//в будущем будет крафт
|
//в будущем будет крафт
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -102,12 +102,12 @@ global.FIRMALIFE_JAMS = [
|
||||||
|
|
||||||
global.FIRMALIFE_GREENHOUSE_FRUIT_RECIPE_COMPONENTS = [
|
global.FIRMALIFE_GREENHOUSE_FRUIT_RECIPE_COMPONENTS = [
|
||||||
{ input: 'firmalife:plant/cocoa_sapling', fluid_amount: 8000, output: '3x firmalife:food/cocoa_beans', name: 'cocoa_beans' },
|
{ input: 'firmalife:plant/cocoa_sapling', fluid_amount: 8000, output: '3x firmalife:food/cocoa_beans', name: 'cocoa_beans' },
|
||||||
{ input: 'firmalife:plant/fig_sapling', fluid_amount: 8000, output: '3x firmalife:food/fig', name: 'fig' },
|
{ input: 'firmalife:plant/fig_sapling', fluid_amount: 8000, output: '3x firmalife:food/fig', name: 'fig' }
|
||||||
];
|
];
|
||||||
|
|
||||||
global.FIRMALIFE_GREENHOUSE_BERRY_RECIPE_COMPONENTS = [
|
global.FIRMALIFE_GREENHOUSE_BERRY_RECIPE_COMPONENTS = [
|
||||||
{ input: 'firmalife:plant/pineapple_bush', fluid_amount: 6000, output: '3x firmalife:food/pineapple', name: 'pineapple' },
|
{ input: 'firmalife:plant/pineapple_bush', fluid_amount: 6000, output: '3x firmalife:food/pineapple', name: 'pineapple' },
|
||||||
{ input: 'firmalife:plant/nightshade_bush', fluid_amount: 6000, output: '3x firmalife:food/nightshade_berry', name: 'nightshade' },
|
{ input: 'firmalife:plant/nightshade_bush', fluid_amount: 6000, output: '3x firmalife:food/nightshade_berry', name: 'nightshade' }
|
||||||
];
|
];
|
||||||
|
|
||||||
global.FIRMALIFE_COOKING_RECIPE_COMPONENTS = [
|
global.FIRMALIFE_COOKING_RECIPE_COMPONENTS = [
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.FRAMEDBLOCKS_DISABLED_ITEMS = [
|
global.FRAMEDBLOCKS_DISABLED_ITEMS = [
|
||||||
"framedblocks:framed_soul_torch",
|
"framedblocks:framed_soul_torch",
|
||||||
"framedblocks:framed_torch",
|
"framedblocks:framed_torch",
|
||||||
"framedblocks:framed_obsidian_pressure_plate",
|
"framedblocks:framed_obsidian_pressure_plate"
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @satisfies {Special.Item[]} */
|
/** @satisfies {Special.Item[]} */
|
||||||
|
|
@ -44,7 +44,7 @@ global.FRAMED_HALF_BLOCKS = /** @type {const} */ ([
|
||||||
"framedblocks:framed_centered_slab",
|
"framedblocks:framed_centered_slab",
|
||||||
"framedblocks:framed_centered_panel",
|
"framedblocks:framed_centered_panel",
|
||||||
"framedblocks:framed_checkered_slab",
|
"framedblocks:framed_checkered_slab",
|
||||||
"framedblocks:framed_checkered_panel",
|
"framedblocks:framed_checkered_panel"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
/** @satisfies {Special.Item[]} */
|
/** @satisfies {Special.Item[]} */
|
||||||
|
|
@ -68,5 +68,5 @@ global.FRAMED_TINY_BLOCKS = /** @type {const} */ ([
|
||||||
"framedblocks:framed_small_corner_slope_panel",
|
"framedblocks:framed_small_corner_slope_panel",
|
||||||
"framedblocks:framed_small_inner_corner_slope_panel",
|
"framedblocks:framed_small_inner_corner_slope_panel",
|
||||||
"framedblocks:framed_small_double_corner_slope_panel",
|
"framedblocks:framed_small_double_corner_slope_panel",
|
||||||
"framedblocks:framed_mini_cube",
|
"framedblocks:framed_mini_cube"
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.GRAPPLEMOD_DISABLED_ITEMS = [
|
global.GRAPPLEMOD_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([
|
global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([
|
||||||
|
|
@ -145,14 +145,14 @@ global.GREATE_DISABLED_ITEMS = /** @type {const} */ ([
|
||||||
"gtceu:shadow_steel_rod",
|
"gtceu:shadow_steel_rod",
|
||||||
"gtceu:shadow_steel_screw",
|
"gtceu:shadow_steel_screw",
|
||||||
"gtceu:long_shadow_steel_rod",
|
"gtceu:long_shadow_steel_rod",
|
||||||
"gtceu:shadow_steel_block",
|
"gtceu:shadow_steel_block"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_DISABLED_FLUIDS = /** @type {const} */ ([
|
global.GREATE_DISABLED_FLUIDS = /** @type {const} */ ([
|
||||||
"gtceu:andesite_alloy",
|
"gtceu:andesite_alloy",
|
||||||
"gtceu:refined_radiance",
|
"gtceu:refined_radiance",
|
||||||
"gtceu:chromatic_compound",
|
"gtceu:chromatic_compound",
|
||||||
"gtceu:shadow_steel",
|
"gtceu:shadow_steel"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_DISABLED_TAGS = /** @type {const} */ ([
|
global.GREATE_DISABLED_TAGS = /** @type {const} */ ([
|
||||||
|
|
@ -167,7 +167,7 @@ global.GREATE_DISABLED_TAGS = /** @type {const} */ ([
|
||||||
"#forge:alloys/rhodium_plated_palladium",
|
"#forge:alloys/rhodium_plated_palladium",
|
||||||
"#forge:alloys/naquadah_alloy",
|
"#forge:alloys/naquadah_alloy",
|
||||||
"#forge:alloys/darmstadtium",
|
"#forge:alloys/darmstadtium",
|
||||||
"#forge:alloys/neutronium",
|
"#forge:alloys/neutronium"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_BELTS = /** @type {const} */ ([
|
global.GREATE_BELTS = /** @type {const} */ ([
|
||||||
|
|
@ -175,7 +175,7 @@ global.GREATE_BELTS = /** @type {const} */ ([
|
||||||
"greate:polybenzimidazole_belt_connector",
|
"greate:polybenzimidazole_belt_connector",
|
||||||
"greate:polyethylene_belt_connector",
|
"greate:polyethylene_belt_connector",
|
||||||
"greate:polytetrafluoroethylene_belt_connector",
|
"greate:polytetrafluoroethylene_belt_connector",
|
||||||
"greate:rubber_belt_connector",
|
"greate:rubber_belt_connector"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_CRUSHING_WHEELS = /** @type {const} */ ([
|
global.GREATE_CRUSHING_WHEELS = /** @type {const} */ ([
|
||||||
|
|
@ -188,7 +188,7 @@ global.GREATE_CRUSHING_WHEELS = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_crushing_wheel",
|
"greate:rhodium_plated_palladium_crushing_wheel",
|
||||||
"greate:naquadah_alloy_crushing_wheel",
|
"greate:naquadah_alloy_crushing_wheel",
|
||||||
"greate:darmstadtium_crushing_wheel",
|
"greate:darmstadtium_crushing_wheel",
|
||||||
"greate:neutronium_crushing_wheel",
|
"greate:neutronium_crushing_wheel"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_ENCASED_FANS = /** @type {const} */ ([
|
global.GREATE_ENCASED_FANS = /** @type {const} */ ([
|
||||||
|
|
@ -201,7 +201,7 @@ global.GREATE_ENCASED_FANS = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_encased_fan",
|
"greate:rhodium_plated_palladium_encased_fan",
|
||||||
"greate:naquadah_alloy_encased_fan",
|
"greate:naquadah_alloy_encased_fan",
|
||||||
"greate:darmstadtium_encased_fan",
|
"greate:darmstadtium_encased_fan",
|
||||||
"greate:neutronium_encased_fan",
|
"greate:neutronium_encased_fan"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_MECHANICAL_MIXERS = /** @type {const} */ ([
|
global.GREATE_MECHANICAL_MIXERS = /** @type {const} */ ([
|
||||||
|
|
@ -214,7 +214,7 @@ global.GREATE_MECHANICAL_MIXERS = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_mechanical_mixer",
|
"greate:rhodium_plated_palladium_mechanical_mixer",
|
||||||
"greate:naquadah_alloy_mechanical_mixer",
|
"greate:naquadah_alloy_mechanical_mixer",
|
||||||
"greate:darmstadtium_mechanical_mixer",
|
"greate:darmstadtium_mechanical_mixer",
|
||||||
"greate:neutronium_mechanical_mixer",
|
"greate:neutronium_mechanical_mixer"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_MECHANICAL_PRESSES = /** @type {const} */ ([
|
global.GREATE_MECHANICAL_PRESSES = /** @type {const} */ ([
|
||||||
|
|
@ -227,7 +227,7 @@ global.GREATE_MECHANICAL_PRESSES = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_mechanical_press",
|
"greate:rhodium_plated_palladium_mechanical_press",
|
||||||
"greate:naquadah_alloy_mechanical_press",
|
"greate:naquadah_alloy_mechanical_press",
|
||||||
"greate:darmstadtium_mechanical_press",
|
"greate:darmstadtium_mechanical_press",
|
||||||
"greate:neutronium_mechanical_press",
|
"greate:neutronium_mechanical_press"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_MECHANICAL_PUMPS = /** @type {const} */ ([
|
global.GREATE_MECHANICAL_PUMPS = /** @type {const} */ ([
|
||||||
|
|
@ -240,7 +240,7 @@ global.GREATE_MECHANICAL_PUMPS = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_mechanical_pump",
|
"greate:rhodium_plated_palladium_mechanical_pump",
|
||||||
"greate:naquadah_alloy_mechanical_pump",
|
"greate:naquadah_alloy_mechanical_pump",
|
||||||
"greate:darmstadtium_mechanical_pump",
|
"greate:darmstadtium_mechanical_pump",
|
||||||
"greate:neutronium_mechanical_pump",
|
"greate:neutronium_mechanical_pump"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_MECHANICAL_SAWS = /** @type {const} */ ([
|
global.GREATE_MECHANICAL_SAWS = /** @type {const} */ ([
|
||||||
|
|
@ -253,7 +253,7 @@ global.GREATE_MECHANICAL_SAWS = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_mechanical_saw",
|
"greate:rhodium_plated_palladium_mechanical_saw",
|
||||||
"greate:naquadah_alloy_mechanical_saw",
|
"greate:naquadah_alloy_mechanical_saw",
|
||||||
"greate:darmstadtium_mechanical_saw",
|
"greate:darmstadtium_mechanical_saw",
|
||||||
"greate:neutronium_mechanical_saw",
|
"greate:neutronium_mechanical_saw"
|
||||||
]);
|
]);
|
||||||
|
|
||||||
global.GREATE_MILLSTONES = /** @type {const} */ ([
|
global.GREATE_MILLSTONES = /** @type {const} */ ([
|
||||||
|
|
@ -266,5 +266,5 @@ global.GREATE_MILLSTONES = /** @type {const} */ ([
|
||||||
"greate:rhodium_plated_palladium_millstone",
|
"greate:rhodium_plated_palladium_millstone",
|
||||||
"greate:naquadah_alloy_millstone",
|
"greate:naquadah_alloy_millstone",
|
||||||
"greate:darmstadtium_millstone",
|
"greate:darmstadtium_millstone",
|
||||||
"greate:neutronium_millstone",
|
"greate:neutronium_millstone"
|
||||||
]);
|
]);
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
//#region Disabled Items
|
//#region Disabled Items
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.HOT_OR_NOT_DISABLED_ITEMS = [
|
global.HOT_OR_NOT_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: 100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
StartupEvents.registry('item', event => {
|
StartupEvents.registry('item', event => {
|
||||||
|
|
@ -70,10 +70,6 @@ GTCEuStartupEvents.craftingComponents(event => {
|
||||||
registerTFGCraftingComponents(event)
|
registerTFGCraftingComponents(event)
|
||||||
})
|
})
|
||||||
|
|
||||||
StartupEvents.modifyCreativeTab(global.TAB_IDS.CREATE_BASE, event => {
|
|
||||||
modifyCreateCreativeTab(event)
|
|
||||||
})
|
|
||||||
|
|
||||||
Platform.mods.primitive_creatures.name = "Primitive Creatures";
|
Platform.mods.primitive_creatures.name = "Primitive Creatures";
|
||||||
Platform.mods.tfg.name = "TerraFirmaGreg";
|
Platform.mods.tfg.name = "TerraFirmaGreg";
|
||||||
Platform.mods.kubejs.name = "TerraFirmaGreg";
|
Platform.mods.kubejs.name = "TerraFirmaGreg";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.MEGA_CELLS_DISABLED_ITEMS = [
|
global.MEGA_CELLS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.MODERN_MARKINGS_DISABLED_ITEMS = [
|
global.MODERN_MARKINGS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.MORE_RED_DISABLED_ITEMS = [
|
global.MORE_RED_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.RAIL_WAYS_DISABLED_ITEMS = [
|
global.RAIL_WAYS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.RNR_DISABLED_ITEMS = [
|
global.RNR_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.SOPHISTICATED_BACKPACKS_DISABLED_ITEMS = [
|
global.SOPHISTICATED_BACKPACKS_DISABLED_ITEMS = [
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
// priority: -100
|
||||||
|
"use strict";
|
||||||
|
|
||||||
global.SOULBINDABLE_ITEMS = [
|
global.SOULBINDABLE_ITEMS = [
|
||||||
{ equipment: 'ad_astra:space_helmet', item: 'endermanoverhaul:soul_pearl' },
|
{ equipment: 'ad_astra:space_helmet', item: 'endermanoverhaul:soul_pearl' },
|
||||||
{ equipment: 'ad_astra:space_suit', item: 'endermanoverhaul:soul_pearl' },
|
{ equipment: 'ad_astra:space_suit', item: 'endermanoverhaul:soul_pearl' },
|
||||||
|
|
@ -7,5 +10,5 @@ global.SOULBINDABLE_ITEMS = [
|
||||||
{ equipment: 'ad_astra:netherite_space_helmet', item: 'sandworm_mod:sandworm_tooth' },
|
{ equipment: 'ad_astra:netherite_space_helmet', item: 'sandworm_mod:sandworm_tooth' },
|
||||||
{ equipment: 'ad_astra:netherite_space_suit', item: 'sandworm_mod:sandworm_tooth' },
|
{ equipment: 'ad_astra:netherite_space_suit', item: 'sandworm_mod:sandworm_tooth' },
|
||||||
{ equipment: 'ad_astra:netherite_space_pants', item: 'sandworm_mod:sandworm_tooth' },
|
{ equipment: 'ad_astra:netherite_space_pants', item: 'sandworm_mod:sandworm_tooth' },
|
||||||
{ equipment: 'ad_astra:netherite_space_boots', item: 'sandworm_mod:sandworm_tooth' },
|
{ equipment: 'ad_astra:netherite_space_boots', item: 'sandworm_mod:sandworm_tooth' }
|
||||||
]
|
]
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.SPECIES_DISABLED_BLOCKS = [
|
global.SPECIES_DISABLED_BLOCKS = [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
|
||||||
global.TACZ_GUNS_INDEX = [
|
global.TACZ_GUNS_INDEX = [
|
||||||
//TACZ
|
//TACZ
|
||||||
//Pistol
|
//Pistol
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER = 4;
|
global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER = 4;
|
||||||
|
|
@ -92,7 +92,7 @@ global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [
|
||||||
|
|
||||||
global.VINTAGE_IMPROVEMENTS_DISABLED_BLOCKS = [
|
global.VINTAGE_IMPROVEMENTS_DISABLED_BLOCKS = [
|
||||||
|
|
||||||
'vintageimprovements:sulfur_block',
|
'vintageimprovements:sulfur_block'
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
// priority: 0
|
// priority: -100
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
global.WAB_DISABLED_BLOCKS =[
|
global.WAB_DISABLED_BLOCKS =[
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue