-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformatted all kube files
- Loading branch information
Showing
70 changed files
with
3,366 additions
and
3,171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
global.debug = {} | ||
const before = "===KUBEJS CUSTOM DEBUG===" | ||
const after = "========================" | ||
const after = "========================" | ||
ClientEvents.leftDebugInfo(event => { | ||
if (global.debug == undefined) return | ||
event.lines.add(before) | ||
for (let key in global.debug) { | ||
event.lines.add(key + ": " + global.debug[key]) | ||
} | ||
event.lines.add(after) | ||
}) | ||
if (global.debug == undefined) return | ||
event.lines.add(before) | ||
for (let key in global.debug) { | ||
event.lines.add(key + ": " + global.debug[key]) | ||
} | ||
event.lines.add(after) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,50 @@ | ||
JEIEvents.hideItems(event => { | ||
//Create | ||
|
||
event.hide(/create:(.*)_sheet/) | ||
event.hide(/create:crushed_raw_(.*)/) | ||
//Create | ||
event.hide(/create:(.*)_sheet/) | ||
event.hide(/create:crushed_raw_(.*)/) | ||
|
||
//Wands | ||
event.hide('constructionwand:core_angel') | ||
event.hide('constructionwand:core_destruction') | ||
//Wands | ||
event.hide("constructionwand:core_angel") | ||
event.hide("constructionwand:core_destruction") | ||
|
||
//TomSimpleStorage | ||
const storage = ['toms_storage:ts.inventory_proxy','toms_storage:ts.open_crate', 'toms_storage:ts.inventory_hopper_basic', 'toms_storage:ts.level_emitter', 'toms_storage:ts.painted_trim', 'toms_storage:ts.storage_terminal', 'toms_storage:ts.adv_wireless_terminal'] | ||
storage.forEach((element) => event.hide(element)); | ||
//TomSimpleStorage | ||
const storage = [ | ||
"toms_storage:ts.inventory_proxy", | ||
"toms_storage:ts.open_crate", | ||
"toms_storage:ts.inventory_hopper_basic", | ||
"toms_storage:ts.level_emitter", | ||
"toms_storage:ts.painted_trim", | ||
"toms_storage:ts.storage_terminal", | ||
"toms_storage:ts.adv_wireless_terminal", | ||
] | ||
storage.forEach(element => event.hide(element)) | ||
|
||
//SophisticatedBackpacks | ||
const backpack = ['sophisticatedbackpacks:inception_upgrade','sophisticatedbackpacks:pump_upgrade', 'sophisticatedbackpacks:stack_upgrade_tier_3', 'sophisticatedbackpacks:stack_upgrade_tier_1', 'sophisticatedbackpacks:stack_upgrade_tier_4', 'sophisticatedbackpacks:stack_upgrade_tier_2','sophisticatedbackpacks:everlasting_upgrade', 'sophisticatedbackpacks:auto_blasting_upgrade', 'sophisticatedbackpacks:auto_smoking_upgrade', 'sophisticatedbackpacks:auto_smelting_upgrade', 'sophisticatedbackpacks:crafting_upgrade', 'sophisticatedbackpacks:smoking_upgrade', 'sophisticatedbackpacks:stonecutter_upgrade', 'sophisticatedbackpacks:tank_upgrade', 'sophisticatedbackpacks:battery_upgrade', 'sophisticatedbackpacks:advanced_pump_upgrade', 'sophisticatedbackpacks:xp_pump_upgrade', 'sophisticatedbackpacks:smelting_upgrade', 'sophisticatedbackpacks:blasting_upgrade'] | ||
backpack.forEach((element) => event.hide(element)); | ||
//SophisticatedBackpacks | ||
const backpack = [ | ||
"sophisticatedbackpacks:inception_upgrade", | ||
"sophisticatedbackpacks:pump_upgrade", | ||
"sophisticatedbackpacks:stack_upgrade_tier_3", | ||
"sophisticatedbackpacks:stack_upgrade_tier_1", | ||
"sophisticatedbackpacks:stack_upgrade_tier_4", | ||
"sophisticatedbackpacks:stack_upgrade_tier_2", | ||
"sophisticatedbackpacks:everlasting_upgrade", | ||
"sophisticatedbackpacks:auto_blasting_upgrade", | ||
"sophisticatedbackpacks:auto_smoking_upgrade", | ||
"sophisticatedbackpacks:auto_smelting_upgrade", | ||
"sophisticatedbackpacks:crafting_upgrade", | ||
"sophisticatedbackpacks:smoking_upgrade", | ||
"sophisticatedbackpacks:stonecutter_upgrade", | ||
"sophisticatedbackpacks:tank_upgrade", | ||
"sophisticatedbackpacks:battery_upgrade", | ||
"sophisticatedbackpacks:advanced_pump_upgrade", | ||
"sophisticatedbackpacks:xp_pump_upgrade", | ||
"sophisticatedbackpacks:smelting_upgrade", | ||
"sophisticatedbackpacks:blasting_upgrade", | ||
] | ||
backpack.forEach(element => event.hide(element)) | ||
|
||
// Ad Astra | ||
event.hide(/ad_astra:(.*)_plate/) | ||
event.hide('ad_astra:steel_ingot') | ||
event.hide('ad_astra:steel_block') | ||
}) | ||
// Ad Astra | ||
event.hide(/ad_astra:(.*)_plate/) | ||
event.hide("ad_astra:steel_ingot") | ||
event.hide("ad_astra:steel_block") | ||
}) |
22 changes: 11 additions & 11 deletions
22
kubejs/data/productivebees/productivebees/gtceu/chromium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"primaryColor": "#d1d1d3", | ||
"particleColor": "#e9e9e9", | ||
"beeTexture": "productivebees:textures/entity/bee/chromium/bee", | ||
"flowerItem": "chemlib:chromium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#d1d1d3", | ||
"particleColor": "#e9e9e9", | ||
"beeTexture": "productivebees:textures/entity/bee/chromium/bee", | ||
"flowerItem": "chemlib:chromium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
24 changes: 12 additions & 12 deletions
24
kubejs/data/productivebees/productivebees/gtceu/europium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"primaryColor": "#6067d3", | ||
"particleColor": "#e2d91e", | ||
"size:": 0.8, | ||
"beeTexture": "productivebees:textures/entity/bee/europium/bee", | ||
"flowerItem": "chemlib:europium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#6067d3", | ||
"particleColor": "#e2d91e", | ||
"size:": 0.8, | ||
"beeTexture": "productivebees:textures/entity/bee/europium/bee", | ||
"flowerItem": "chemlib:europium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
24 changes: 12 additions & 12 deletions
24
kubejs/data/productivebees/productivebees/gtceu/neodymium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"primaryColor": "#998784", | ||
"particleColor": "#ab9d9a", | ||
"beeTexture": "productivebees:textures/entity/bee/neodymium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:neodymium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#998784", | ||
"particleColor": "#ab9d9a", | ||
"beeTexture": "productivebees:textures/entity/bee/neodymium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:neodymium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
22 changes: 11 additions & 11 deletions
22
kubejs/data/productivebees/productivebees/gtceu/niobium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"primaryColor": "#bfb1e6", | ||
"particleColor": "#c3beea", | ||
"beeTexture": "productivebees:textures/entity/bee/niobium/bee", | ||
"flowerItem": "chemlib:niobium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#bfb1e6", | ||
"particleColor": "#c3beea", | ||
"beeTexture": "productivebees:textures/entity/bee/niobium/bee", | ||
"flowerItem": "chemlib:niobium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
22 changes: 11 additions & 11 deletions
22
kubejs/data/productivebees/productivebees/gtceu/palladium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"primaryColor": "#b78187", | ||
"particleColor": "#c3989a", | ||
"beeTexture": "productivebees:textures/entity/bee/palladium/bee", | ||
"flowerItem": "chemlib:palladium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#b78187", | ||
"particleColor": "#c3989a", | ||
"beeTexture": "productivebees:textures/entity/bee/palladium/bee", | ||
"flowerItem": "chemlib:palladium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
24 changes: 12 additions & 12 deletions
24
kubejs/data/productivebees/productivebees/gtceu/rhodium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"primaryColor": "#cccac9", | ||
"particleColor": "#cccac1", | ||
"beeTexture": "productivebees:textures/entity/bee/rhodium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:rhodium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#cccac9", | ||
"particleColor": "#cccac1", | ||
"beeTexture": "productivebees:textures/entity/bee/rhodium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:rhodium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
24 changes: 12 additions & 12 deletions
24
kubejs/data/productivebees/productivebees/gtceu/ruthenium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"primaryColor": "#a68994", | ||
"particleColor": "#ba9ca6", | ||
"beeTexture": "productivebees:textures/entity/bee/ruthenium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:ruthenium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#a68994", | ||
"particleColor": "#ba9ca6", | ||
"beeTexture": "productivebees:textures/entity/bee/ruthenium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:ruthenium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
24 changes: 12 additions & 12 deletions
24
kubejs/data/productivebees/productivebees/gtceu/samarium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"primaryColor": "#d5db8c", | ||
"particleColor": "#e3f696", | ||
"beeTexture": "productivebees:textures/entity/bee/samarium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:samarium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#d5db8c", | ||
"particleColor": "#e3f696", | ||
"beeTexture": "productivebees:textures/entity/bee/samarium/bee", | ||
"description": "productivebees.ingredient.description.only_spawnegg", | ||
"flowerItem": "chemlib:samarium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
22 changes: 11 additions & 11 deletions
22
kubejs/data/productivebees/productivebees/gtceu/vanadium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"primaryColor": "#9da1d6", | ||
"particleColor": "#adafd5", | ||
"beeTexture": "productivebees:textures/entity/bee/vanadium/bee", | ||
"flowerItem": "chemlib:vanadium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#9da1d6", | ||
"particleColor": "#adafd5", | ||
"beeTexture": "productivebees:textures/entity/bee/vanadium/bee", | ||
"flowerItem": "chemlib:vanadium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
22 changes: 11 additions & 11 deletions
22
kubejs/data/productivebees/productivebees/gtceu/yttrium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"primaryColor": "#dbe2b1", | ||
"particleColor": "#d0e6b6", | ||
"beeTexture": "productivebees:textures/entity/bee/yttrium/bee", | ||
"flowerItem": "gtceu:yttrium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} | ||
"primaryColor": "#dbe2b1", | ||
"particleColor": "#d0e6b6", | ||
"beeTexture": "productivebees:textures/entity/bee/yttrium/bee", | ||
"flowerItem": "gtceu:yttrium", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
36 changes: 17 additions & 19 deletions
36
kubejs/data/productivebees/productivebees/neutronium.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
{ | ||
"primaryColor": "#fafafa", | ||
"secondaryColor": "#c9c9c9", | ||
"tertiaryColor": "#919191", | ||
"renderer": "default_shell", | ||
"size": 4.20, | ||
"selfbreed": false, | ||
"selfheal": true, | ||
"fireproof": true, | ||
"flowerItem": "gtceu:uv_fusion_reactor", | ||
"name": "Not a Neutronium", | ||
"invulnerability": [ | ||
"mekanism.radiation" | ||
], | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
"primaryColor": "#fafafa", | ||
"secondaryColor": "#c9c9c9", | ||
"tertiaryColor": "#919191", | ||
"renderer": "default_shell", | ||
"size": 4.2, | ||
"selfbreed": false, | ||
"selfheal": true, | ||
"fireproof": true, | ||
"flowerItem": "gtceu:uv_fusion_reactor", | ||
"name": "Not a Neutronium", | ||
"invulnerability": ["mekanism.radiation"], | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "gtceu" | ||
} | ||
] | ||
} |
Oops, something went wrong.