Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Productivebees #49

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/emi.css
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
* Whether development functions should be enabled. Not recommended for general
* play.
*/
dev-mode: true;
dev-mode: false;

/**
* Whether editing the index is enabled
Expand Down
5 changes: 5 additions & 0 deletions defaultconfigs/bucketlib-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

["Balance Options"]
#Whether or not Infinity enchantment for modded buckets filled with fluids of the tag "bucketlib:infinity_enchantable" should be enabled.
infinityEnchantmentEnabled = false

13 changes: 13 additions & 0 deletions defaultconfigs/ceramicbucket-server.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

["Balance Options"]
#Minimum temperature of fluid at which the Ceramic Bucket breaks when emptied. (-1 means that bucket never breaks caused by high fluid temperature)
#Range: -1 ~ 10000
ceramicBucketBreakTemperature = 1000
#Whether or not obtaining fish with a Ceramic Bucket should be enabled.
fishObtainingEnabled = true
#Whether or not milking entities with a Ceramic Bucket should be enabled.
milkingEnabled = true
#Defines the maximum durability of a Ceramic Bucket. (0 deactivates the durability)
#Range: 0 ~ 10000
durability = 0

8 changes: 8 additions & 0 deletions index.toml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,10 @@ metafile = true
file = "mods/kubejs-create.pw.toml"
metafile = true

[[files]]
file = "mods/kubejs-enderio.pw.toml"
metafile = true

[[files]]
file = "mods/kubejs.pw.toml"
metafile = true
Expand Down Expand Up @@ -356,6 +360,10 @@ metafile = true
file = "mods/visual-workbench.pw.toml"
metafile = true

[[files]]
file = "mods/xtones-reworked.pw.toml"
metafile = true

[[files]]
file = "mods/yeetusexperimentus.pw.toml"
metafile = true
15 changes: 14 additions & 1 deletion kubejs/assets/gtceu/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
{
"block.gtceu.ore_proc": "Ore Processing"
"block.gtceu.ore_proc": "Ore Processing",



"entity.productivebees.aluminium_bee": "Aluminium Bee",
"entity.productivebees.stainless_steel_bee": "Stainless Steel Bee",
"entity.productivebees.tungsten_steel_bee": "Tungsten Steel Bee",
"entity.productivebees.naquadah_bee": "Naquadah Bee",
"entity.productivebees.naquadah_alloy_bee": "Naquadah Alloy Bee"





}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,15 @@ JEIEvents.hideItems(event => {
event.hide(/ad_astra:(.*)_plate/)
event.hide('ad_astra:steel_ingot')
event.hide('ad_astra:steel_block')


//EnderIO
const enderioMachines= ['enderio:fluid_tank', 'enderio:pressurized_fluid_tank', 'enderio:enchanter', 'enderio:primitive_alloy_smelter', 'enderio:alloy_smelter', 'enderio:painting_machine', 'enderio:creative_power', 'enderio:stirling_generator', 'enderio:sag_mill', 'enderio:impulse_hopper', 'enderio:energetic_photovoltaic_module', 'enderio:pulsating_photovoltaic_module', 'enderio:vibrant_photovoltaic_module', 'enderio:basic_capacitor_bank', 'enderio:advanced_capacitor_bank', 'enderio:vibrant_capacitor_bank', 'enderio:soul_engine', 'enderio:drain', 'enderio:creative_power']

enderioMachines.forEach(item => { event.hide(item)})





})
2 changes: 2 additions & 0 deletions kubejs/config/probejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"allowRegistryLiteralDumps": true,
"requireSingleAndPerm": true,
"enabled": true,
"modChanged": false,
"disableRecipeJsonDump": false,
"dumpJSONIntermediates": false,
"pullSchema": false,
"version": 1
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/EV/neodymium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#70656C",
"particleColor": "#73686F",
"flowerItem": "gtceu:neodymium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#E8E8F8",
"particleColor": "#C8C8EE",
"size": 1.0,
"flowerItem": "gtceu:stainless_steel_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/IV/niobium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#7C8986",
"particleColor": "#ACB4B2",
"flowerItem": "gtceu:niobium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/IV/samarium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#830E83",
"particleColor": "#981098",
"flowerItem": "gtceu:samarium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#384761",
"particleColor": "#4C6285",
"size": 1.0,
"flowerItem": "gtceu:tungsten_steel_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/LUV/palladium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#D5D5D5",
"particleColor": "#BABABA",
"flowerItem": "gtceu:palladium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/LUV/rhodium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#BC3B79",
"particleColor": "#E7B1CB",
"flowerItem": "gtceu:rhodium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#8F8F8F",
"particleColor": "#c9c7c2",
"size": 1.0,
"flowerItem": "gtceu:rhodium_plated_palladium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/LUV/ruthenium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#E2E6EE",
"particleColor": "#C2CADB",
"flowerItem": "gtceu:ruthenium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.
13 changes: 13 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/MV/aluminium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#98C0D5",
"particleColor": "#5195B8",
"size": 1.0,
"flowerItem": "gtceu:aluminium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"primaryColor": "#d1d1d3",
"primaryColor": "#E8CADA",
"particleColor": "#e9e9e9",
"beeTexture": "productivebees:textures/entity/bee/chromium/bee",
"flowerItem": "chemlib:chromium",
"flowerItem": "gtceu:chromium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
Expand Down
13 changes: 13 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/UHV/europium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#676531",
"particleColor": "#9F9C4C",
"size:": 0.9,
"flowerItem": "gtceu:europium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,12 @@
"secondaryColor": "#c9c9c9",
"tertiaryColor": "#919191",
"renderer": "default_shell",
"size": 4.20,
"size": 1,
"selfbreed": false,
"selfheal": true,
"fireproof": true,
"flowerItem": "gtceu:uv_fusion_reactor",
"name": "Not a Neutronium",
"invulnerability": [
"mekanism.radiation"
],
"conditions": [
{
"type": "forge:mod_loaded",
Expand Down
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/UV/yttrium.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#858570",
"particleColor": "#C2C2B7",
"flowerItem": "gtceu:yttrium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
12 changes: 12 additions & 0 deletions kubejs/data/productivebees/productivebees/gtceu/ZMP/naquadah.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"primaryColor": "#5b5757",
"particleColor": "#e9e9e9",
"flowerItem": "gtceu:naquadah_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"primaryColor": "#412541",
"particleColor": "#683B68",
"size": 1.0,
"flowerItem": "gtceu:naquadah_alloy_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "gtceu"
}
]
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"primaryColor": "#9da1d6",
"primaryColor": "#E65100",
"particleColor": "#adafd5",
"beeTexture": "productivebees:textures/entity/bee/vanadium/bee",
"flowerItem": "chemlib:vanadium",
"flowerItem": "gtceu:vanadium_block",
"selfbreed": false,
"conditions": [
{
"type": "forge:mod_loaded",
Expand Down
13 changes: 0 additions & 13 deletions kubejs/data/productivebees/productivebees/gtceu/europium.json

This file was deleted.

13 changes: 0 additions & 13 deletions kubejs/data/productivebees/productivebees/gtceu/neodymium.json

This file was deleted.

12 changes: 0 additions & 12 deletions kubejs/data/productivebees/productivebees/gtceu/niobium.json

This file was deleted.

Loading