Merge pull request #1386 from TerraFirmaGreg-Team/dev
Alpha release: 0.10.1
61
.github/workflows/build.yml
vendored
|
|
@ -11,8 +11,6 @@ concurrency:
|
|||
cancel-in-progress: true
|
||||
|
||||
env:
|
||||
RELEASE_TYPE: "alpha"
|
||||
MINECRAFT_VERSION: "1.20.1"
|
||||
DEV_ENVIRONMENT: ${{ github.ref_name != 'main' }}
|
||||
|
||||
jobs:
|
||||
|
|
@ -24,6 +22,8 @@ jobs:
|
|||
project_name: ${{ steps.check.outputs.project_name }}
|
||||
project_full_name: ${{ steps.check.outputs.project_name }}-${{ steps.check.outputs.project_version }}
|
||||
changelog: ${{ steps.changelog.outputs.description }}
|
||||
mc_version: ${{ steps.check.outputs.minecraft_version }}
|
||||
release_type: ${{ steps.check.outputs.release_type }}
|
||||
diff: ${{ steps.read_diff.outputs.diff }}
|
||||
exists: ${{ steps.check.outputs.exists }}
|
||||
make_release: ${{ steps.check.outputs.make_release }}
|
||||
|
|
@ -141,40 +141,39 @@ jobs:
|
|||
with:
|
||||
tag: ${{ steps.pakku_info.outputs.version }}
|
||||
|
||||
- name: 📝 Determine Version
|
||||
id: determine_version
|
||||
shell: bash
|
||||
run: |
|
||||
if ${{ env.DEV_ENVIRONMENT == 'true' }}; then
|
||||
echo "version=unreleased" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
- name: 📄 Changelog Dev Parser
|
||||
id: changelog_dev
|
||||
if: ${{ env.DEV_ENVIRONMENT == 'true' }}
|
||||
uses: coditory/changelog-parser@v1.0.2
|
||||
with:
|
||||
path: CHANGELOG.md
|
||||
version: "unreleased"
|
||||
continue-on-error: true
|
||||
|
||||
- name: 📄 Changelog Parser
|
||||
id: changelog
|
||||
uses: coditory/changelog-parser@v1.0.2
|
||||
with:
|
||||
path: CHANGELOG.md
|
||||
version: ${{ steps.determine_version.outputs.version }}
|
||||
continue-on-error: true
|
||||
|
||||
- name: 🔍 Check
|
||||
id: check
|
||||
shell: bash
|
||||
run: |
|
||||
echo "make_release=${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}" >> $GITHUB_OUTPUT
|
||||
echo "make_release=${{ steps.check_tag.outputs.exists == false && env.DEV_ENVIRONMENT == false }}" >> $GITHUB_OUTPUT
|
||||
echo "exists=${{ steps.check_tag.outputs.exists }}" >> $GITHUB_OUTPUT
|
||||
|
||||
echo "project_name=${{ steps.pakku_info.outputs.name }}" >> $GITHUB_OUTPUT
|
||||
echo "project_version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=${{ env.RELEASE_TYPE }}" >> $GITHUB_OUTPUT
|
||||
MC_VERSIONS_JSON='${{ steps.pakku_lock_info.outputs.mc_versions }}'
|
||||
MINECRAFT_VERSION=$(echo "$MC_VERSIONS_JSON" | jq -r '.[0]' | tr -d '[]"')
|
||||
echo "minecraft_version=$MINECRAFT_VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
echo "minecraft_version=${{ steps.pakku_lock_info.outputs.mc_versions }}" >> $GITHUB_OUTPUT
|
||||
|
||||
if ${{ env.DEV_ENVIRONMENT == 'true' && steps.changelog.outcome == 'failure' }}; then
|
||||
echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=Unreleased" >> $GITHUB_OUTPUT
|
||||
if ${{ env.DEV_ENVIRONMENT == 'true' }}; then
|
||||
echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=Unreleased" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "project_version=${{ steps.changelog.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=${{ steps.pakku_info.outputs.release_type }}" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: 📄 Format diff
|
||||
|
|
@ -201,7 +200,7 @@ jobs:
|
|||
📃 **Make Release**: `${{ steps.check.outputs.make_release }}`
|
||||
|
||||
|
||||
${{ steps.changelog.outputs.description }}
|
||||
${{ steps.changelog_dev.outputs.description }}
|
||||
${{ steps.format_diff.outputs.text }}
|
||||
|
||||
|
||||
|
|
@ -219,7 +218,7 @@ jobs:
|
|||
set +e
|
||||
|
||||
VERSION=${{ needs.info.outputs.project_version }}
|
||||
sed -i -e "s/\"version\": \"[0-9.]*\"/\"version\": \"${VERSION}\"/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
- name: 📝 Cache pakku
|
||||
|
|
@ -273,7 +272,7 @@ jobs:
|
|||
set +e
|
||||
|
||||
VERSION=${{ needs.info.outputs.project_version }}
|
||||
sed -i -e "s/\"version\": \"[0-9.]*\"/\"version\": \"${VERSION}\"/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" pakku.json
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
- name: 📝 Cache pakku
|
||||
|
|
@ -419,7 +418,7 @@ jobs:
|
|||
${{ needs.info.outputs.project_full_name }}-curseforge.zip
|
||||
${{ needs.info.outputs.project_full_name }}-serverpack.zip
|
||||
${{ needs.info.outputs.project_full_name }}-multimc.zip
|
||||
prerelease: ${{ env.RELEASE_TYPE != 'release' }}
|
||||
prerelease: ${{ needs.info.outputs.release_type != 'release' }}
|
||||
generate_release_notes: true
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
|
|
@ -470,8 +469,8 @@ jobs:
|
|||
${{ needs.info.outputs.changelog }}
|
||||
${{ needs.info.outputs.diff }}
|
||||
changelog-format: markdown
|
||||
game-version: ${{ env.MINECRAFT_VERSION }}
|
||||
release-type: ${{ env.RELEASE_TYPE }}
|
||||
game-version: ${{ needs.info.outputs.mc_version }}
|
||||
release-type: ${{ needs.info.outputs.release_type }}
|
||||
|
||||
release-modrinth:
|
||||
name: 🚀 Release to Modrinth
|
||||
|
|
@ -516,10 +515,10 @@ jobs:
|
|||
modpack-server-path: ${{ needs.info.outputs.project_full_name }}-serverpack.zip
|
||||
changelog: ${{ needs.info.outputs.changelog }}
|
||||
changelog-format: markdown
|
||||
game-version: ${{ env.MINECRAFT_VERSION }}
|
||||
game-version: ${{ needs.info.outputs.mc_version }}
|
||||
display-name: ${{ needs.info.outputs.project_full_name }}
|
||||
server-display-name: ${{ needs.info.outputs.project_full_name }}-serverpack
|
||||
release-type: ${{ env.RELEASE_TYPE }}
|
||||
release-type: ${{ needs.info.outputs.release_type }}
|
||||
|
||||
discord-message:
|
||||
name: 📱 Discord Message
|
||||
|
|
@ -542,8 +541,8 @@ jobs:
|
|||
content_links_no_embed: .+
|
||||
content: |
|
||||
**Release**: `${{ needs.info.outputs.project_version }}`
|
||||
**Release Type**: `${{ env.RELEASE_TYPE }}`
|
||||
**Game Version**: `${{ env.MINECRAFT_VERSION }}`
|
||||
**Release Type**: `${{ needs.info.outputs.release_type }}`
|
||||
**Game Version**: `${{ needs.info.outputs.mc_version }}`
|
||||
|
||||
[CurseForge](https://www.curseforge.com/minecraft/modpacks/terrafirmagreg-modern/files/${{ needs.release-curseforge.outputs.id }}) • [GitHub](${{ needs.release-github.outputs.url }}) • [Issues](https://github.com/${{ github.repository }}/issues)
|
||||
```markdown
|
||||
|
|
|
|||
5
.gitignore
vendored
|
|
@ -15,6 +15,7 @@
|
|||
# Pakku
|
||||
build/
|
||||
!.pakku/**/*
|
||||
!pakku.jar
|
||||
|
||||
# Configs
|
||||
config/jei/world/
|
||||
|
|
@ -47,6 +48,8 @@ config/voicechat/username-cache.json
|
|||
config/stellarcore_stitcher_cache_jei.dat
|
||||
config/stellarcore_stitcher_cache_vanilla.dat
|
||||
|
||||
!config/defaultoptions/options.txt
|
||||
|
||||
# .minecraft
|
||||
!bansoukou/**.zip
|
||||
|
||||
|
|
@ -114,4 +117,4 @@ icon.png
|
|||
.pakku/server-overrides/mods
|
||||
.pakku/server-overrides/user_jvm_args.txt
|
||||
|
||||
/tacz/tacz_default_gun
|
||||
/tacz/tacz_default_gun
|
||||
|
|
|
|||
57
CHANGELOG.md
|
|
@ -1,6 +1,53 @@
|
|||
# Changelog
|
||||
|
||||
## [Unreleased]
|
||||
### Changes
|
||||
|
||||
## [0.10.1] - 19-07-2025
|
||||
### Changes
|
||||
- Added harvest baskets to pick fruit from fruit trees and berry bushes (#1338) @Redeix
|
||||
- Added ice soup @Pyritie
|
||||
- Gave plants tag to bushes so they can be used for other things (#1338) @Redeix
|
||||
- Allowed elytra's to be repaired regardless of damage (#1338) @Redeix
|
||||
- Increased maximum range of rope/elevator pulleys to 400 blocks (#1347) @Pyritie
|
||||
- Added Tier 2 Insulation: Alkaline Earth Silicate @BlueBoat29
|
||||
- Added tfc data to tacz guns and attachments (#1353) @Redeix
|
||||
- Allowed "window" blocks and panes to be broken and picked up @BlueBoat29
|
||||
- Updated title and loading screens to be more memory efficient and hopefully look better on other resolutions. (#1381) @Redeix
|
||||
- Changed Firmalife greenhouses to no longer allow any doors/trapdoors/pipes (#1363) @BlueBoat29
|
||||
- Thorium is now Pink (#1378) @Nebby1999
|
||||
### Bug fixes
|
||||
- Fixed yeast food processor conflict (#1310) @Redeix
|
||||
- Fixed seed oil voiding in barrels (#1310) @Redeix
|
||||
- Fixed inconsistent item sizes for sunflower_product and rapeseed_product (#1310) @Redeix
|
||||
- Fixed Radiator Fan uncraftable recipe (#1302) @TomPlop
|
||||
- Fixed Fluid Solidifier Recipe Conflict for Snow (#1295) @TomPlop
|
||||
- Fixed Steel engine crafting by using the GT Rotor (#1290) @TomPlop
|
||||
- Change Electrical Greenhouse to not consome the input but lower the seed output @TomPlop
|
||||
- Fixed the Autoclave recipe to make Rose Quartz at MV @TomPlop
|
||||
- Fixed bug with Extruder Mold crafting (#1298) @BlueBoat29
|
||||
- Fixed texture issues found on some of the Extruder Mold textures @BlueBoat29
|
||||
- Added default GUI Scale (#1313) @Redeix
|
||||
- Added Kelp and Seaweed drying to electric oven (#1315) @BlueBoat29
|
||||
- Added Nugget anvil recipe and 45-70 bullet assembler recipe @BlueBoat29 @Pyritie
|
||||
- Fixed AFC wood stomping barrel recipes @BlueBoat29
|
||||
- Fixed rotten cheese in moon quest reward @Pyritie
|
||||
- Fixed create + greate configs (#1300) @HiddenOwlllll1 @Pyritie
|
||||
- Fixed blue steel diving suit looking like netherite (#1293) @Pyritie
|
||||
- Fixed anthracite not working with blaze burners @Pyritie
|
||||
- Fixed baked potato recipe missing from oven (#1338) @Redeix
|
||||
- Fixed sea water barrel recipes (#1338) @Redeix
|
||||
- Fixed Quests #1318 #1291 and finish other quests related stuffs @TomPlop
|
||||
- Integrated Ad Astra wood types with tfc (#1346) @Redeix
|
||||
- Fixed duplicate pizza dough recipe @Pyritie
|
||||
- Unified Pressure Plate Recipes among mods @BlueBoat29
|
||||
- Fixed treated composite barrel recipe lang (#1353) @Redeix
|
||||
- Fixed food processor jam recipe duping jars (#1353) @Redeix
|
||||
- Fixed Ad Astra space suit quest mentioning oxygen instead of breathable gas (#1353) @Redeix
|
||||
- Fixed flintlock not being craftable before LV (#1353) @Redeix
|
||||
- Fixed the field guide not working for chinese players (#1356) @Pyritie
|
||||
- Fixed glass blocks dropping with gem saw (#1367) @BlueBoat29
|
||||
- Fixed Hv Quest TNT #1373 @TomPlop
|
||||
- Fixed Smooth Stone #1380 @TomPlop
|
||||
|
||||
## [0.10.0] - 13.07.2025
|
||||
- [!WARNING] If you're upgrading your world from 0.9 to 0.10, please read the upgrade guide [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/wiki/%5BEN%5D-Upgrading-from-0.9-to-0.10). We do not recommend using Alpha versions for progression, but if you do, please make frequent backups!
|
||||
|
|
@ -8,9 +55,9 @@
|
|||
- Build a rocket and blast off to the moon, a new dimension! You can get started in mid-HV.
|
||||
- AE2 inscriber presses are now found on the moon instead of being craftable, and making various AE2 components is also significantly cheaper there. @TomPlop & @Pyritie
|
||||
- Significant ore changes: certus quartz, raw aluminium, ilmenite, and some other mid-lategame materials have been moved from the overworld to the moon. Check your field guide for more information. @TomPlop
|
||||
- A new system for interstellar item transport, made just for TerraFirmaGreg - new logistical problems to solve and automate. (Coming soon) @ofoxsmith
|
||||
- New machines to properly automate food, along with proper compatibility between machines and TFC's food system, so you can't turn rotten grains into fresh bread any more. The electric greenhouse now also always outputs fresh food. @ofoxsmith & @Redeix
|
||||
- New electric refrigerator with different tiers. You can craft the old one into this new one, but please take your food out of it before upgrading otherwise it will be lost! @ofoxsmith
|
||||
- A new system for interstellar item transport, made just for TerraFirmaGreg - new logistical problems to solve and automate. (Coming soon) @gustovafing
|
||||
- New machines to properly automate food, along with proper compatibility between machines and TFC's food system, so you can't turn rotten grains into fresh bread any more. The electric greenhouse now also always outputs fresh food. @gustovafing & @Redeix
|
||||
- New electric refrigerator with different tiers. You can craft the old one into this new one, but please take your food out of it before upgrading otherwise it will be lost! @gustovafing
|
||||
- Added many new advanced food items including freeze-dried fruit, calorie paste, and meal bags. @Redeix
|
||||
- Quest updates for all of the above @TomPlop @Redeix @Pyritie
|
||||
- Main UI overhaul and curseforge branding updated @Redeix
|
||||
|
|
@ -104,7 +151,7 @@
|
|||
- Added wine-related recipes to GregTech machines (#1111) @JeanRdS
|
||||
- Added optional quest for bacon because its JEI recipe isn't clear (#1122) @SpicyNoodle5
|
||||
- Anthracite now also superheats blaze burners @Pyritie
|
||||
- Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @ofoxsmith
|
||||
- Changed LV chem reactor quest to work with any container of rubber instead of just a rubber bucket (#1116) @gustovafing
|
||||
- Added perfect overclock to the electric greenhouse so it scales better with the pyro oven @Pyritie
|
||||
- Electric greenhouse now accepts logs and leaf blocks inside it, so you can build a little tree if you want @Pyritie
|
||||
- Increased durability of the blue steel diving suit to match blue steel armor @Pyritie
|
||||
|
|
|
|||
123
config/adaptive_performance_tweaks/client_side_mods.list
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
## Client Side Mods - Version: 1.0.3
|
||||
## Disable existing entries by comment out like # client-side-mod-1.20.1.jar
|
||||
|
||||
3dskinlayers-forge-1.4.3-mc1.20.1.2.jar
|
||||
AmbientSounds_FORGE_v5.0.16_mc1.20.1.jar
|
||||
BetterAdvancements-1.20.1-0.1.2.122.jar
|
||||
BetterF3-1.3.2-Forge-1.20.1.jar
|
||||
BetterModsButton-v3.2.1-1.20.1-Forge.jar
|
||||
BetterThirdPerson-Forge-1.20.1.6.0.jar
|
||||
BetterTitleScreen-1.20.12.0.jar
|
||||
Blur-1.1.0-1.jar
|
||||
ChunkAnimator-1.20.1.3.3.jar
|
||||
Controlling-forge-1.20.1-9.0+15.jar
|
||||
CraftPresence-1.20.1-Release-1.8.11-universal.jar
|
||||
CustomSkinLoader_ForgeActive-14.15-SNAPSHOT-348.jar
|
||||
CustomSkinLoader_ForgeActive-14.17.jar
|
||||
CustomSkinLoader_ForgeLegacy-14.15-SNAPSHOT-348.jar
|
||||
DailyDad-forge-1.20.1-1.3.2.jar
|
||||
Ding-1.20.1.3.0.jar
|
||||
EnchantmentDescriptions-Forge-1.20.1-10.0.2.jar
|
||||
EquipmentCompare-1.20.1-1.2.12.jar
|
||||
FPS-Monitor-1.20.1-1.2.1.jar
|
||||
Fallingleaves-1.20.1-1.3.1.jar
|
||||
FpsReducer2-forge-1.20.1-2.0.jar
|
||||
GameMenuModOption-1.20.1-Forge-1.14.jar
|
||||
GameMenuRemoveGFARB-1.20.1-Forge-1.4.jar
|
||||
Highlighter-1.20.1-1.1.2.jar
|
||||
IKnowWhatImDoing-5.0.0-forge.jar
|
||||
ImprovedMountHUD-v3.1.0-1.20.1-Forge.jar
|
||||
InvMove-1.20.1-0.7.0-Forge.jar
|
||||
InvMoveCompats-1.20.1-0.1.0-Forge.jar
|
||||
InventoryHud_[1.20.1].forge-3.4.4.jar
|
||||
InventoryProfilesNext-forge-1.20.1-1.3.5.jar
|
||||
ItemBorders-1.20.1-forge-1.2.0.jar
|
||||
ItemPhysicLite_v1.4.8_mc1.20.1.jar
|
||||
ItemsDontBreak-1.20.1-0.5.0.jar
|
||||
LegendaryTooltips-1.20.1-1.2.4.jar
|
||||
LetSleepingDogsLie-1.20.1-1.1.1.jar
|
||||
MouseTweaks-forge-mc1.20.1-2.21.jar
|
||||
MyServerIsCompatible-1.20.1.0.jar
|
||||
Neat 1.8-30.jar
|
||||
Neat-1.20-35-FORGE.jar
|
||||
NekosEnchantedBooks-1.20.1-1.7.0.jar
|
||||
NoFog-1.3.1_1.20.1-forge.jar
|
||||
Notes-1.20.1-1.2.4.jar
|
||||
ReAuth-1.20.1-Forge-4.0.0.jar
|
||||
StylishEffects-v3.1.0-1.20.1-Forge.jar
|
||||
Textbook-Forge-2.2.1+1.20.1.jar
|
||||
TextruesRubidiumOptions-1.0.4-mc1.20.1.jar
|
||||
TipTheScales-forge-1.20.1-5.0.5.jar
|
||||
ToastControl-1.20.1-6.0.2.jar
|
||||
TravelersTitles-1.20.1-Forge-2.1.1.jar
|
||||
WaveyCapes-forge-1.2.0-mc1.20.1.jar
|
||||
advancements_tracker_1.20.1-1.2.0.jar
|
||||
advancementscreenshot_1.20.1-3.2.jar
|
||||
auudio_forge_1.0.3_MC_1.20.1.jar
|
||||
beautifiedchatclient_1.20.1-1.1.jar
|
||||
better-loading-screen-1.4.0.jar
|
||||
betteranimalmodels-1.20.1-5.6.0-forge.jar
|
||||
betterbiomeblend-1.20.1-1.3.2-forge.jar
|
||||
betterfpsdist-1.20.1-1.4.jar
|
||||
bettersigns-1.0.jar
|
||||
betterstats-2.2+1.20.1.jar
|
||||
bettertaskbar-forge-mc1.20.1-mc1.20.1.2-1.5.jar
|
||||
brb-1.20.1-forge-1.5.6.jar
|
||||
catalogue-1.6.0-1.20.1.jar
|
||||
chat_heads-0.6.0-forge-1.20.1.jar
|
||||
clear-skies-forge-mc119-2.0.94.jar
|
||||
clearwater-1.20.1-1.8.jar
|
||||
clienttweaks-forge-1.20.1-7.1.0.jar
|
||||
cullleaves-2.3.2.jar
|
||||
drawerfps-1.20.1-2.3.jar
|
||||
drippyloadingscreen_forge_1.5.1_MC_1.18-1.20.1.jar
|
||||
ears-forge-1.20.1-1.4.5.jar
|
||||
eatinganimation-1.20.1-2.0.1.jar
|
||||
elytra-flight-hud-1.1.3.jar
|
||||
entity_texture_features_forge_1.20.1-4.2.0.jar
|
||||
entityculling-forge-mc1.20.1-1.5.0.jar
|
||||
extendedclouds-1.1.1-forge.jar
|
||||
extremeSoundMuffler-3.24_Forge-1.20.1.jar
|
||||
fancymenu_forge_2.6.4_MC_1.20.1.jar
|
||||
farsight-1.20.1.6.jar
|
||||
firstperson-forge-2.1.2-mc1.20.1.jar
|
||||
flickerfix-2.0.0.jar
|
||||
fm_audio_extension_forge_1.1.0_MC_1.20.1.jar
|
||||
guiclock_1.20.1-3.1.jar
|
||||
guicompass_1.20.1-2.2.jar
|
||||
guifollowers_1.20.1-1.9.jar
|
||||
hiddenrecipebook_1.20.1-2.4.jar
|
||||
itemzoom-1.20.1-2.5.0.jar
|
||||
justzoom_forge_1.0.1_MC_1.18-1.20.1.jar
|
||||
light-overlay-6.0.5-forge.jar
|
||||
loadmyresources_1.0.1_MC_1.20.1.jar
|
||||
mcwifipnp-1.5.9-1.20.1-forge.jar
|
||||
midnightlib-forge-1.4.1.jar
|
||||
modernworldcreation_forge_1.0.0_MC_1.20.1.jar
|
||||
modnametooltip-1.20.1-1.20.1.0.jar
|
||||
moreoverlays-1.20.1.9-mc1.20.1.jar
|
||||
namepain-1.4.1 forge-1.19.jar
|
||||
no-telemetry-1.4.0.jar
|
||||
notenoughanimations-forge-1.5.0-mc1.20.1.2.jar
|
||||
oculus-1.4.3.jar
|
||||
oculus-mc1.20-1.6.4.jar
|
||||
oculus-mc1.20.1.2-1.2.4.jar
|
||||
paperdoll-forge-1.1.0-mc1.20.1.jar
|
||||
raised-forge-1.20.1-1.1.4.jar
|
||||
replanter-forge-1.3.jar
|
||||
rubidium-0.5.2a.jar
|
||||
rubidium-0.5.3a.jar
|
||||
rubidium-0.6.5.jar
|
||||
rubidium-extra-0.4.16+mc1.20.1-build.57.jar
|
||||
screenscale-1.20.1-2.0.jar
|
||||
shutupexperimentalsettings-1.0.5.jar
|
||||
smoothboot-mc1.20.1-1.0.1.jar
|
||||
spyglass_improvements-1.2+mc1.20.1.x+forge.jar
|
||||
tooltipscroller-1.20.1-1.0.0.jar
|
||||
torohealth-1.18-forge-2.jar
|
||||
transparent-4.1.0+1.20.1-forge.jar
|
||||
uiinputundo-1.2.jar
|
||||
waveycapes-forge-1.2.0-mc1.20.1.jar
|
||||
whats-that-slot-forge-1.2.3+1.20.1.jar
|
||||
worldtime-1.20.1-forge39.0.9-1.3.1.jar
|
||||
zmedievalmusic-1.20.1-1.5.jar
|
||||
21
config/adaptive_performance_tweaks/core.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Core
|
||||
[General]
|
||||
#The time after a high to low load change is considered as valid. High loads are always considered immediately.
|
||||
#Range: 1 ~ 90
|
||||
timeBetweenUpdates = 10
|
||||
#Enable/Disable logging of the overall server load.
|
||||
logServerLoad = true
|
||||
#Enable/Disable logging of the individual level load.
|
||||
logServerLevelLoad = true
|
||||
|
||||
["Game Difficulty Factors"]
|
||||
#Range: 0.1 ~ 10.0
|
||||
gameDifficultyFactorEasy = 0.9
|
||||
#Range: 0.1 ~ 10.0
|
||||
gameDifficultyFactorNormal = 1.0
|
||||
#Range: 0.1 ~ 10.0
|
||||
gameDifficultyFactorPeaceful = 1.0
|
||||
#Range: 0.1 ~ 10.0
|
||||
gameDifficultyFactorHard = 2.0
|
||||
|
||||
67
config/adaptive_performance_tweaks/gamerules.toml
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Gamerules
|
||||
[General]
|
||||
#The time after a high to low load change is considered as valid. High loads are always considered immediately.
|
||||
#Range: 1 ~ 90
|
||||
timeBetweenUpdates = 30
|
||||
|
||||
["Entity Cramming"]
|
||||
#Enable/Disable dynamic entity cramming adjustments.
|
||||
entityCrammingEnabled = false
|
||||
#Defines the min. numbers of mob singularity on a single block.
|
||||
#Range: 0 ~ 64
|
||||
minEntityCramming = 5
|
||||
#Defines the max. numbers of mob singularity on a single block.
|
||||
#Range: 1 ~ 64
|
||||
maxEntityCramming = 24
|
||||
#Defines the min. numbers of mob singularity on a single block, in the case MineColonies is installed.
|
||||
#Range: 16 ~ 64
|
||||
minEntityCrammingMineColonies = 16
|
||||
|
||||
["Random Tick Speed"]
|
||||
#Enable/Disable dynamic random tick speed adjustments.
|
||||
randomTickSpeedEnabled = true
|
||||
#Defines the max. speed of crops grow, leaf decay, redstone, ... per chunk
|
||||
#Range: 1 ~ 256
|
||||
randomTickSpeed = 3
|
||||
|
||||
["Block Explodes"]
|
||||
#Enable/Disable block explodes adjustments.
|
||||
blockExplodesEnabled = true
|
||||
|
||||
["Elytra Movement Check"]
|
||||
#Enable/Disable dynamic elytra movement check adjustments.
|
||||
elytraMovementCheckEnabled = true
|
||||
|
||||
[Raids]
|
||||
#Enable/Disable dynamic raids adjustments.
|
||||
raidsEnabled = false
|
||||
|
||||
[Insomnia]
|
||||
#Enable/Disable insomnia (phantoms) adjustments.
|
||||
insomniaEnabled = false
|
||||
|
||||
["Mob Explodes"]
|
||||
#Enable/Disable mob explodes adjustments.
|
||||
mobExplodesEnabled = true
|
||||
|
||||
["Patrol Spawning"]
|
||||
#Enable/Disable patrol spawning adjustments.
|
||||
patrolSpawningEnabled = false
|
||||
|
||||
["Trader Spawning"]
|
||||
#Enable/Disable trader spawning adjustments.
|
||||
traderSpawningEnabled = false
|
||||
|
||||
["TNT Explodes"]
|
||||
#Enable/Disable tnt explodes adjustments.
|
||||
tntExplodesEnabled = true
|
||||
|
||||
["Vines Spread"]
|
||||
#Enable/Disable vines spread adjustments.
|
||||
vinesSpreadEnabled = true
|
||||
|
||||
["Warden Spawning"]
|
||||
#Enable/Disable warden spawning adjustments.
|
||||
wardenSpawningEnabled = false
|
||||
|
||||
26
config/adaptive_performance_tweaks/items.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Items
|
||||
[Items]
|
||||
#Enable/Disable items optimization.
|
||||
optimizeItems = true
|
||||
#Defines the max. number of items / item stacks per type which are allowed to lay around in the world.
|
||||
#Range: 16 ~ 128
|
||||
maxNumberOfItemsPerType = 64
|
||||
#Defines the max. number of items / item stacks which are allowed to lay around in a single world.
|
||||
#Range: 16 ~ 1000
|
||||
maxNumberOfItems = 128
|
||||
#Defines the radius in blocks which items / item stacks will be clustered together.
|
||||
#Range: 1 ~ 16
|
||||
itemsClusterRange = 4
|
||||
#Defines a list of items which will be optimized and all other items will be ignored by the optimization.
|
||||
itemsAllowList = []
|
||||
#Defines a list of items which will be ignored by the optimization and all other relevant items will be optimized.
|
||||
itemsDenyList = ["item.minecraft.diamond", "item.minecraft.diamond_block"]
|
||||
|
||||
["Experience Orbs"]
|
||||
#Enable/Disable experience orbs optimization.
|
||||
optimizeExperienceOrbs = true
|
||||
#Defines the radius in which experience orbs will be clustered together.
|
||||
#Range: 1 ~ 16
|
||||
experienceOrbsClusterRange = 4
|
||||
|
||||
31
config/adaptive_performance_tweaks/player.toml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Player
|
||||
["Player Login"]
|
||||
#Enable/Disable optimization which are happening during player login.
|
||||
optimizePlayerLogin = true
|
||||
#Timeout in seconds for the player validation.
|
||||
#Range: 16 ~ 300
|
||||
playerLoginValidationTimeout = 90
|
||||
|
||||
["Player Protection"]
|
||||
#Protect player during login within the validation timeout.
|
||||
protectPlayerDuringLogin = true
|
||||
#Enable/Disable player protection logging with login time.
|
||||
protectPlayerDuringLoginLogging = true
|
||||
|
||||
["Child Player Protection"]
|
||||
#Protect child player and give them a more enjoyable play experience.
|
||||
enableChildPlayerProtection = true
|
||||
#List of child player username for the child player protection.
|
||||
childPlayerProtectionList = [""]
|
||||
#Sets the child player to invisible.
|
||||
childPlayerInvisible = true
|
||||
#Sets the child player to invulnerable.
|
||||
childPlayerInvulnerable = false
|
||||
#Reduces the hurt damage to a child player by the amount of % (0 = disabled).
|
||||
#Range: 0 ~ 100
|
||||
childPlayerHurtDamageReduction = 50
|
||||
#Increase the attack damage of a child player by the amount of % (0 = disabled).
|
||||
#Range: 0 ~ 1000
|
||||
childPlayerAttackDamageIncrease = 50
|
||||
|
||||
37
config/adaptive_performance_tweaks/spawn.toml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
[General]
|
||||
#General allow list for spawn entities (e.g. minecraft:squid) which should be ignored for optimization.
|
||||
allowList = [""]
|
||||
#General deny list for spawn entities (e.g. minecraft:bat) to no longer spawn in all worlds.
|
||||
denyList = [""]
|
||||
#General list of ignored dimensions.
|
||||
spawnIgnoreDimensionList = ["minecraft:the_end"]
|
||||
#Enable/Disable more aggressive and strict spawn limitations.
|
||||
spawnAggressiveMode = false
|
||||
|
||||
["Chunk Optimization"]
|
||||
#Allows to spawn at least one mob (regardless of the type) per selected chunk to avoid side effects.A value of 9 means every 9 chunk request will be allowed. Use 0 to disable this optimization.
|
||||
#Range: 0 ~ 256
|
||||
friendlyChunkSpawnRate = 9
|
||||
|
||||
["View Area"]
|
||||
#Enable/Disable player based view area optimization.
|
||||
viewAreaEnabled = true
|
||||
|
||||
["Global Spawn Limitations"]
|
||||
#Enable/Disable general spawn limitations.
|
||||
spawnLimitationEnabled = true
|
||||
#Blocks every x spawn to avoid an over population with the limited spawn area. Use 0 to disable this optimization.
|
||||
#Range: 0 ~ 100
|
||||
spawnLimitationLimiter = 16
|
||||
#Defines the max. number of entities of a specific type, which could spawn within the player view area. Use 0 to disable this optimization.
|
||||
#Range: 0 ~ 256
|
||||
spawnLimitationMaxMobsPerPlayer = 32
|
||||
#Defines the max. number of entities of a specific type, which could spawn within a single world. Use 0 to disable this optimization.
|
||||
#Range: 0 ~ 1024
|
||||
spawnLimitationMaxMobsPerWorld = 128
|
||||
#Defines the max. number of entities of a specific type, which could spawn within the server. Use 0 to disable this optimization.
|
||||
#Range: 0 ~ 1024
|
||||
spawnLimitationMaxMobsPerServer = 512
|
||||
|
||||
30
config/adaptive_performance_tweaks/spawn/AlexsMobsSpawn.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Alexs Mobs Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "alexsmobs"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["alexsmobs:blobfish", "alexsmobs:endergrade", "alexsmobs:fly", "alexsmobs:gazelle", "alexsmobs:hummingbird", "alexsmobs:mungus", "alexsmobs:seal", "alexsmobs:spectre", "alexsmobs:stradpole", "alexsmobs:sunbird"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["alexsmobs:cachalot_whale", "alexsmobs:capuchin_monkey", "alexsmobs:cockroach", "alexsmobs:crow", "alexsmobs:elephant", "alexsmobs:emu", "alexsmobs:gorilla", "alexsmobs:kangaroo", "alexsmobs:lobster", "alexsmobs:mantis_shrimp", "alexsmobs:moose", "alexsmobs:orca", "alexsmobs:platypus", "alexsmobs:raccoon", "alexsmobs:roadrunner", "alexsmobs:shoebill", "alexsmobs:snow_leopard", "alexsmobs:tasmanian_devil", "alexsmobs:warped_toad"]
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["alexsmobs:alligator_snapping_turtle", "alexsmobs:bone_serpent", "alexsmobs:centipede_head", "alexsmobs:crimson_mosquito", "alexsmobs:crocodile", "alexsmobs:dropbear", "alexsmobs:enderiophage", "alexsmobs:grizzly_bear", "alexsmobs:guster", "alexsmobs:hammerhead_shark", "alexsmobs:komodo_dragon", "alexsmobs:leafcutter_ant", "alexsmobs:mimicube", "alexsmobs:rattlesnake", "alexsmobs:soul_vulture", "alexsmobs:straddler", "alexsmobs:warped_mosco"]
|
||||
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Aquaculture 2 Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "aquaculture"
|
||||
#Range: 1 ~ 64
|
||||
MaxFishPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxFishPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxFishPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
FishList = ["aquaculture:acacia_fish_mount", "aquaculture:arapaima", "aquaculture:arrau_turtle", "aquaculture:atlantic_cod", "aquaculture:atlantic_halibut", "aquaculture:atlantic_herring", "aquaculture:bayad", "aquaculture:birch_fish_mount", "aquaculture:blackfish", "aquaculture:bluegill", "aquaculture:bobber", "aquaculture:boulti", "aquaculture:box_turtle", "aquaculture:brown_shrooma", "aquaculture:brown_trout", "aquaculture:capitaine", "aquaculture:carp", "aquaculture:catfish", "aquaculture:dark_oak_fish_mount", "aquaculture:gar", "aquaculture:jellyfish", "aquaculture:jungle_fish_mount", "aquaculture:minnow", "aquaculture:muskellunge", "aquaculture:oak_fish_mount", "aquaculture:pacific_halibut", "aquaculture:perch", "aquaculture:pink_salmon", "aquaculture:piranha", "aquaculture:pollock", "aquaculture:rainbow_trout", "aquaculture:red_grouper", "aquaculture:red_shrooma", "aquaculture:smallmouth_bass", "aquaculture:spruce_fish_mount", "aquaculture:starshell_turtle", "aquaculture:synodontis", "aquaculture:tambaqui", "aquaculture:tuna", "aquaculture:water_arrow"]
|
||||
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Born in Chaos Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "born_in_chaos_v1"
|
||||
#e.g. mobs which will always attack yon ...
|
||||
#Range: 1 ~ 64
|
||||
HostileMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
HostileMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
HostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["born_in_chaos_v1:baby_s_2", "born_in_chaos_v1:baby_skeleton", "born_in_chaos_v1:bone_imp", "born_in_chaos_v1:bone_imp_2", "born_in_chaos_v1:bonescaller", "born_in_chaos_v1:dark_vortex", "born_in_chaos_v1:decaying_zombie", "born_in_chaos_v1:decrepit_skeleton", "born_in_chaos_v1:diamond_thermite", "born_in_chaos_v1:dread_hound", "born_in_chaos_v1:fallen_chaos_knight", "born_in_chaos_v1:firelight", "born_in_chaos_v1:mr_pumpkin", "born_in_chaos_v1:nightmare_stalker", "born_in_chaos_v1:phantom_creeper", "born_in_chaos_v1:pumpkin_spirit", "born_in_chaos_v1:restless_spirit", "born_in_chaos_v1:scarletpersecutor", "born_in_chaos_v1:seared_spirit", "born_in_chaos_v1:shy_spirit", "born_in_chaos_v1:skeleton_bomb", "born_in_chaos_v1:skeleton_thrasher", "born_in_chaos_v1:spirit_guide_assistant", "born_in_chaos_v1:spiritual_guide", "born_in_chaos_v1:supreme_bonecaller", "born_in_chaos_v1:wither_strider", "born_in_chaos_v1:zombie_clown", "born_in_chaos_v1:zombiesina_barrel", "born_in_chaos_v1:zombieswith_door"]
|
||||
|
||||
30
config/adaptive_performance_tweaks/spawn/CustomSpawn.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Custom Spawn Config"]
|
||||
Enabled = false
|
||||
Id = "_config"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = []
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = []
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = []
|
||||
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Fish of Thieves Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "fishofthieves"
|
||||
#Range: 1 ~ 64
|
||||
MaxFishPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxFishPerWorld = 64
|
||||
#Range: 1 ~ 1024
|
||||
MaxFishPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
FishList = ["fishofthieves:ancientscales", "fishofthieves:battlegills", "fishofthieves:devilfish", "fishofthieves:islehoppers", "fishofthieves:plentifins", "fishofthieves:pondies", "fishofthieves:splashtail", "fishofthieves:stormfish", "fishofthieves:wildsplash", "fishofthieves:wreckers"]
|
||||
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Friends and Foes Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "friendsandfoes"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 64
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["friendsandfoes:glare"]
|
||||
|
||||
30
config/adaptive_performance_tweaks/spawn/GothicSpawn.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Gothic Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "gothic"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["gothic:meatbug", "gothic:meatbug_tamed"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["gothic:npc_farmer", "gothic:npc_oldcamp_hunter"]
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["gothic:bloodfly", "gothic:bloodfly_hornet", "gothic:dragon_snapper", "gothic:gothic_wolf", "gothic:ice_wolf", "gothic:lurker", "gothic:molerat", "gothic:razor", "gothic:scavenger", "gothic:shadowbeast", "gothic:snapper", "gothic:stone_guardian", "gothic:warg"]
|
||||
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Infernal Expansion Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "infernalexp"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["infernalexp:basalt", "infernalexp:blackstone_dwarf", "infernalexp:glowsilk_moth", "infernalexp:shroomloin", "infernalexp:warpbeetle"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = []
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["infernalexp:blindsight", "infernalexp:embody", "infernalexp:embody", "infernalexp:glowsquito", "infernalexp:voline"]
|
||||
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Mekanism Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "mekanismadditions"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 12
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = []
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = []
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["mekanismadditions:baby_creeper", "mekanismadditions:baby_enderman", "mekanismadditions:baby_skeleton", "mekanismadditions:baby_stray", "mekanismadditions:baby_wither_skeleton"]
|
||||
|
||||
60
config/adaptive_performance_tweaks/spawn/MinecraftSpawn.toml
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Minecraft Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "minecraft"
|
||||
#e.g. mobs which will not attack you
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["minecraft:allay", "minecraft:axolotl", "minecraft:bat", "minecraft:cat", "minecraft:chicken", "minecraft:cow", "minecraft:donkey", "minecraft:fox", "minecraft:frog", "minecraft:horse", "minecraft:mooshroom", "minecraft:mule", "minecraft:ocelot", "minecraft:parrot", "minecraft:pig", "minecraft:rabbit", "minecraft:sheep", "minecraft:skeleton_horse", "minecraft:snow_golem", "minecraft:turtle"]
|
||||
#e.g. mobs which will attack under certain conditions ...
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["minecraft:bee", "minecraft:cave_spider", "minecraft:enderman", "minecraft:goat", "minecraft:iron_golem", "minecraft:llama", "minecraft:panda", "minecraft:polar_bear", "minecraft:spider", "minecraft:trader_llama", "minecraft:wandering_trader", "minecraft:wolf", "minecraft:zombie_horse"]
|
||||
#e.g. mobs which will always attack yon ...
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["minecraft:chicken_jockey", "minecraft:creeper", "minecraft:ender_dragon", "minecraft:endermite", "minecraft:evoker", "minecraft:giant", "minecraft:husk", "minecraft:illusioner", "minecraft:pillager", "minecraft:ravager", "minecraft:ravager_jockey", "minecraft:shulker", "minecraft:silverfish", "minecraft:skeleton", "minecraft:skeleton_horseman", "minecraft:slime", "minecraft:stray", "minecraft:vex", "minecraft:vindicator", "minecraft:warden", "minecraft:witch", "minecraft:wither", "minecraft:zoglin", "minecraft:zombie", "minecraft:zombie_villager"]
|
||||
#e.g. mostly fish
|
||||
#Range: 1 ~ 64
|
||||
MaxWaterPassiveMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxWaterPassiveMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxWaterPassiveMobsPerServer = 320
|
||||
#List of passive water Mobs to optimize
|
||||
WaterPassiveMobsList = ["minecraft:axolotl", "minecraft:cod", "minecraft:pufferfish", "minecraft:salmon", "minecraft:tropical_fish"]
|
||||
#e.g. squid, dolphin, ...
|
||||
#Range: 1 ~ 64
|
||||
MaxWaterNeutralMobsPerPlayer = 6
|
||||
#Range: 1 ~ 512
|
||||
MaxWaterNeutralMobsPerWorld = 24
|
||||
#Range: 1 ~ 1024
|
||||
MaxWaterNeutralMobsPerServer = 320
|
||||
#List of neutral water Mobs to optimize
|
||||
WaterNeutralMobsList = ["minecraft:dolphin", "minecraft:squid"]
|
||||
#e.g. drowned, guardian...
|
||||
#Range: 1 ~ 64
|
||||
MaxWaterHostileMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxWaterHostileMobsPerWorld = 64
|
||||
#Range: 1 ~ 1024
|
||||
MaxWaterHostileMobsPerServer = 320
|
||||
#List of hostile water Mobs to optimize
|
||||
WaterHostileMobsList = ["minecraft:drowned", "minecraft:elder_guardian", "minecraft:guardian"]
|
||||
|
||||
33
config/adaptive_performance_tweaks/spawn/NetherSpawn.toml
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Nether Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "minecraft"
|
||||
#e.g. mobs which will not attack you
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["minecraft:strider"]
|
||||
#e.g. mobs which will attack under certain conditions ...
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["minecraft:zombified_piglin"]
|
||||
#e.g. mobs which will always attack yon ...
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["minecraft:blaze", "minecraft:ghast", "minecraft:hoglin", "minecraft:magma_cube", "minecraft:piglin", "minecraft:piglin_brute", "minecraft:wither_skeleton"]
|
||||
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Panthalassa Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "panthalassa"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["panthalassa:acrolepis", "panthalassa:anomalocaris", "panthalassa:ceratodus", "panthalassa:coelacanth"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["panthalassa:archelon", "panthalassa:basilosaurus", "panthalassa:leedsichthys"]
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["panthalassa:anglerfish", "panthalassa:dunkleosteus", "panthalassa:giant_orthocone", "panthalassa:helicoprion", "panthalassa:kronosaurus", "panthalassa:megalodon", "panthalassa:mosasaurus", "panthalassa:thalassomedon"]
|
||||
|
||||
30
config/adaptive_performance_tweaks/spawn/QuarkSpawn.toml
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Quark Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "quark"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1204
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["quark:crab", "quark:frog", "quark:stoneling"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1204
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["quark:toretoise"]
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 32
|
||||
#Range: 1 ~ 1204
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["quark:forgotten", "quark:foxhound", "quark:wraith"]
|
||||
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Tinkers Construct Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "tconstruct"
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 6
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 24
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["tconstruct:earth_slime", "tconstruct:sky_slime", "tconstruct:ender_slime"]
|
||||
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Untamed Wilds Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "untamedwilds"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["untamedwilds:arowana", "untamedwilds:giant_clam", "untamedwilds:giant_salamander", "untamedwilds:rhino", "untamedwilds:sunfish", "untamedwilds:trevally"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["untamedwilds:aardvark", "untamedwilds:softshell_turtle", "untamedwilds:tortoise"]
|
||||
#Range: 1 ~ 64
|
||||
MaxHostileMobsPerPlayer = 4
|
||||
#Range: 1 ~ 512
|
||||
MaxHostileMobsPerWorld = 16
|
||||
#Range: 1 ~ 1024
|
||||
MaxHostileMobsPerServer = 320
|
||||
#List of hostile Mobs to optimize in the format ["minecraft:blaze", "minecraft:cave_spider", ..]
|
||||
HostileMobsList = ["untamedwilds:bear_black", "untamedwilds:bear_blind", "untamedwilds:bear_brown", "untamedwilds:bear_cave", "untamedwilds:bear_panda", "untamedwilds:bear_polar", "untamedwilds:bear_spectacled", "untamedwilds:bear_sun", "untamedwilds:bigcat_jaguar", "untamedwilds:bigcat_leopard", "untamedwilds:bigcat_lion", "untamedwilds:bigcat_puma", "untamedwilds:bigcat_snow_leopard", "untamedwilds:bigcat_tiger", "untamedwilds:football_fish", "untamedwilds:hippo", "untamedwilds:shark", "untamedwilds:snake", "untamedwilds:tarantula"]
|
||||
|
||||
22
config/adaptive_performance_tweaks/spawn/UntitledDuck.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
#Adaptive Performance Tweaks: Spawn
|
||||
["Untitled Duck Spawn Config"]
|
||||
Enabled = true
|
||||
Id = "untitledduckmod"
|
||||
#Range: 1 ~ 64
|
||||
MaxPassiveMobsPerPlayer = 16
|
||||
#Range: 1 ~ 512
|
||||
MaxPassiveMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxPassiveMobsPerServer = 320
|
||||
#List of passive Mobs to optimize in the format ["minecraft:bat", "minecraft:cat", ..]
|
||||
PassiveMobsList = ["untitledduckmod:duck"]
|
||||
#Range: 1 ~ 64
|
||||
MaxNeutralMobsPerPlayer = 8
|
||||
#Range: 1 ~ 512
|
||||
MaxNeutralMobsPerWorld = 32
|
||||
#Range: 1 ~ 1024
|
||||
MaxNeutralMobsPerServer = 320
|
||||
#List of neutral Mobs to optimize in the format ["minecraft:bee", "minecraft:wolf", ..]
|
||||
NeutralMobsList = ["untitledduckmod:goose"]
|
||||
|
||||
|
|
@ -1,5 +1,16 @@
|
|||
{
|
||||
"attributes": {
|
||||
"tacz:tacz.bullet_resistance": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
"default": 0,
|
||||
"value": 0
|
||||
},
|
||||
"max": {
|
||||
"default": 1,
|
||||
"value": 1
|
||||
}
|
||||
},
|
||||
"forge:step_height_addition": {
|
||||
"enabled": false,
|
||||
"min": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
[screens]
|
||||
blurExclusions = ["net.minecraft.client.gui.screens.ChatScreen", "com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen", "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "baritone.", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", "net.coderbot.iris.gui.screen.ShaderPackScreen", "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay"]
|
||||
blurExclusions = ["net.minecraft.client.gui.screens.ChatScreen", "com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiOverlay$UserInputGuiScreen", "ai.arcblroth.projectInception.client.InceptionInterfaceScreen", "net.optifine.gui.GuiChatOF", "baritone.", "io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen", "net.coderbot.iris.gui.screen.ShaderPackScreen", "eu.midnightdust.midnightcontrols.client.gui.TouchscreenOverlay", "com.tacz.guns.client.gui.GunRefitScreen"]
|
||||
showScreenTitle = false
|
||||
strangeEffect = false
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
"ai.arcblroth.projectInception.client.InceptionInterfaceScreen",
|
||||
"net.optifine.gui.GuiChatOF",
|
||||
"io.github.darkkronicle.advancedchatcore.chat.AdvancedChatScreen",
|
||||
"net.coderbot.iris.gui.screen.ShaderPackScreen"
|
||||
"net.coderbot.iris.gui.screen.ShaderPackScreen",
|
||||
"com.tacz.guns.client.gui.GunRefitScreen"
|
||||
],
|
||||
"fadeTimeMillis": 200,
|
||||
"ease": true,
|
||||
|
|
|
|||
5
config/caveman.toml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
["cave man"]
|
||||
#man_
|
||||
cave = "man"
|
||||
|
||||
|
|
@ -16,11 +16,11 @@
|
|||
noOffhandTorchWithBlock = true
|
||||
#This prevents torches from being placed from your offhand if you have food in your main hand.
|
||||
noOffhandTorchWithFood = true
|
||||
#This prevents torches from being placed from your off hand if you have an empty main hand.
|
||||
#This prevents torches from being placed from your offhand if you have an empty main hand.
|
||||
noOffhandTorchWithEmptyHand = false
|
||||
#This restricts torches to be placed from the offhand only when you're holding a tool in your main hand.
|
||||
offhandTorchWithToolOnly = false
|
||||
#This prevents fireworks from being launched from your off hand if you are wearing an Elytra, unless you're flying.
|
||||
#This prevents fireworks from being launched from your offhand if you are wearing an Elytra, unless you're flying.
|
||||
noOffhandFireworksWithElytra = true
|
||||
#This option will disable step assist added by other mods.
|
||||
disableStepAssist = false
|
||||
|
|
@ -36,6 +36,12 @@
|
|||
noRecipeBookShifting = false
|
||||
#This option will disable paving when holding a block in your offhand.
|
||||
disablePavingWithBlockInOffhand = true
|
||||
#This prevents the last durability from being used up.
|
||||
doNotUseLastMending = false
|
||||
#This prevents items from being used from your offhand if you have food in your main hand.
|
||||
noOffhandUseWithFood = false
|
||||
#Prevents accidental mining of certain fragile blocks like budding amethysts.
|
||||
preventAccidentalMining = false
|
||||
|
||||
[customization]
|
||||
#Items that count as torches for the offhand-torch tweak options.
|
||||
|
|
@ -48,4 +54,6 @@
|
|||
shieldItems = ["basicshields:wooden_shield", "basicshields:golden_shield", "basicshields:diamond_shield", "basicshields:netherite_shield"]
|
||||
#Items that count as fireworks for the offhand-firework tweak options.
|
||||
fireworkItems = ["minecraft:firework_rocket"]
|
||||
#Blocks that should be protected in the prevent accidental mining tweak.
|
||||
fragileBlocks = ["minecraft:large_amethyst_bud", "minecraft:medium_amethyst_bud", "minecraft:small_amethyst_bud", "minecraft:budding_amethyst"]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,4 +15,6 @@
|
|||
mode = "DEFAULT"
|
||||
#Add mod ids here of mods that you wish to disable Crafting Tweaks support for.
|
||||
disabledAddons = []
|
||||
#Use an alternative client-side balancing algorithm. It might be faster, or it might be slower, depending on the input. Try it if regular client-side balancing is causing lagspikes.
|
||||
hyperOptimizedClientsideBalancing = false
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
resourcePacks:["vanilla","mod_resources","gtceu:dynamic_assets","Moonlight Mods Dynamic Assets","afc_compat_assets","afc_data","fabric","firmalife_compat_assets","firmalife_data","tfc_tumbleweed","tfcimprovedbadlands","file/TerraFirmaCraft_New_Animals.zip","file/Perfected Anvil Helper.zip","file/ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip", "file/Old Copper Stuffs v1.8.zip"]
|
||||
guiScale:3
|
||||
resourcePacks:["vanilla","mod_resources","gtceu:dynamic_assets","Moonlight Mods Dynamic Assets","afc_compat_assets","afc_data","fabric","firmalife_compat_assets","firmalife_data","tfc_tumbleweed","tfcimprovedbadlands","file/TerraFirmaCraft_New_Animals.zip","file/Perfected Anvil Helper.zip","file/ComputerCraft Greg Refreshed 1.1 - 1.20.1.zip"]
|
||||
incompatibleResourcePacks:["firmalife_data","file/Perfected Anvil Helper.zip"]
|
||||
narrator:0
|
||||
soundCategory_master:1.0
|
||||
|
|
|
|||
|
|
@ -3,17 +3,29 @@ type = fancymenu_layout
|
|||
layout-meta {
|
||||
identifier = drippy_loading_overlay
|
||||
render_custom_elements_behind_vanilla = false
|
||||
last_edited_time = 1751008612590
|
||||
last_edited_time = 1752899622608
|
||||
is_enabled = true
|
||||
randommode = false
|
||||
randomgroup = 1
|
||||
randomonlyfirsttime = false
|
||||
layout_index = 0
|
||||
[loading_requirement_container_meta:a24414bf-23f9-4fae-b752-4e91fecee9d2-1751008530130] = [groups:][instances:]
|
||||
[loading_requirement_container_meta:5a04ea61-16dc-4ce3-b5f1-db096b50a05a-1752899545176] = [groups:][instances:]
|
||||
}
|
||||
|
||||
customization {
|
||||
action = setscale
|
||||
scale = 3.0
|
||||
}
|
||||
|
||||
customization {
|
||||
action = autoscale
|
||||
basewidth = 1920
|
||||
baseheight = 1080
|
||||
}
|
||||
|
||||
menu_background {
|
||||
slideshow_name = new_loading_screen
|
||||
instance_identifier = ef8f993d-cca3-458f-a9da-cba9aec00c61-1752819691150
|
||||
background_type = slideshow
|
||||
}
|
||||
|
||||
|
|
@ -37,7 +49,7 @@ layout_action_executable_blocks {
|
|||
}
|
||||
|
||||
element {
|
||||
source = [source:location]tfg:textures/gui/tfg_logo_icon_outline_white_sr_964x_1024p.gif
|
||||
source = [source:location]tfg:textures/gui/tfg_logo_title_4181x688_with_shadow.png
|
||||
repeat_texture = false
|
||||
nine_slice_texture = false
|
||||
nine_slice_texture_border_x = 5
|
||||
|
|
@ -57,17 +69,17 @@ element {
|
|||
auto_sizing_base_screen_height = 1419
|
||||
sticky_anchor = false
|
||||
anchor_point = mid-centered
|
||||
x = -70
|
||||
y = -67
|
||||
width = 136
|
||||
height = 136
|
||||
x = -147
|
||||
y = -33
|
||||
width = 294
|
||||
height = 48
|
||||
stretch_x = false
|
||||
stretch_y = false
|
||||
stay_on_screen = false
|
||||
element_loading_requirement_container_identifier = 3a10ee73-edca-4147-869e-7902775a5a14-1710837053343
|
||||
[loading_requirement_container_meta:3a10ee73-edca-4147-869e-7902775a5a14-1710837053343] = [groups:][instances:]
|
||||
enable_parallax = false
|
||||
parallax_intensity = 0.5
|
||||
parallax_intensity_v2 = 0.5
|
||||
invert_parallax = false
|
||||
animated_offset_x = 0
|
||||
animated_offset_y = 0
|
||||
|
|
@ -100,6 +112,15 @@ element {
|
|||
bullet_list_indent = 8.0
|
||||
bullet_list_spacing = 3.0
|
||||
parse_markdown = true
|
||||
table_show_header = true
|
||||
table_alternate_row_colors = true
|
||||
table_line_color = #787878FF
|
||||
table_header_background_color = #323232FF
|
||||
table_row_background_color = #282828FF
|
||||
table_alternate_row_color = #3C3C3CFF
|
||||
table_line_thickness = 1.0
|
||||
table_cell_padding = 8.0
|
||||
table_margin = 4.0
|
||||
element_type = text_v2
|
||||
instance_identifier = 485ef9c0-94a8-4450-94a3-8022e2831591-1751008054758
|
||||
appearance_delay = no_delay
|
||||
|
|
@ -125,7 +146,7 @@ element {
|
|||
element_loading_requirement_container_identifier = 613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758
|
||||
[loading_requirement_container_meta:613c98a6-70ec-4662-9333-43a7f0ab1e14-1751008054758] = [groups:][instances:]
|
||||
enable_parallax = false
|
||||
parallax_intensity = 0.5
|
||||
parallax_intensity_v2 = 0.5
|
||||
invert_parallax = false
|
||||
animated_offset_x = 0
|
||||
animated_offset_y = 0
|
||||
|
|
@ -134,63 +155,6 @@ element {
|
|||
layer_hidden_in_editor = false
|
||||
}
|
||||
|
||||
vanilla_button {
|
||||
button_element_executable_block_identifier = 97c197fd-2437-4d73-8648-da77552b154b-1710837053334
|
||||
[executable_block:97c197fd-2437-4d73-8648-da77552b154b-1710837053334][type:generic] = [executables:]
|
||||
restartbackgroundanimations = true
|
||||
nine_slice_custom_background = false
|
||||
nine_slice_border_x = 5
|
||||
nine_slice_border_y = 5
|
||||
navigatable = true
|
||||
widget_active_state_requirement_container_identifier = 119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458
|
||||
[loading_requirement_container_meta:119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458] = [groups:][instances:]
|
||||
is_template = false
|
||||
template_apply_width = false
|
||||
template_apply_height = false
|
||||
template_apply_posx = false
|
||||
template_apply_posy = false
|
||||
template_apply_opacity = false
|
||||
template_apply_visibility = false
|
||||
template_apply_label = false
|
||||
template_share_with = buttons
|
||||
nine_slice_slider_handle = false
|
||||
nine_slice_slider_handle_border_x = 5
|
||||
nine_slice_slider_handle_border_y = 5
|
||||
element_type = vanilla_button
|
||||
instance_identifier = mojang_logo
|
||||
appearance_delay = no_delay
|
||||
appearance_delay_seconds = 1.0
|
||||
fade_in_v2 = no_fading
|
||||
fade_in_speed = 1.0
|
||||
fade_out = no_fading
|
||||
fade_out_speed = 1.0
|
||||
base_opacity = 1.0
|
||||
auto_sizing = false
|
||||
auto_sizing_base_screen_width = 0
|
||||
auto_sizing_base_screen_height = 0
|
||||
sticky_anchor = false
|
||||
anchor_point = vanilla
|
||||
x = 180
|
||||
y = 177
|
||||
width = 472
|
||||
height = 118
|
||||
stretch_x = false
|
||||
stretch_y = false
|
||||
stay_on_screen = true
|
||||
element_loading_requirement_container_identifier = dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334
|
||||
[loading_requirement_container_meta:dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334] = [groups:][instances:]
|
||||
enable_parallax = false
|
||||
parallax_intensity = 0.5
|
||||
invert_parallax = false
|
||||
animated_offset_x = 0
|
||||
animated_offset_y = 0
|
||||
load_once_per_session = false
|
||||
in_editor_color = #FFC800FF
|
||||
layer_hidden_in_editor = false
|
||||
is_hidden = true
|
||||
automated_button_clicks = 0
|
||||
}
|
||||
|
||||
vanilla_button {
|
||||
button_element_executable_block_identifier = f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334
|
||||
[executable_block:f3a70cd2-ecfc-4b6b-91cf-b88673431f32-1710837053334][type:generic] = [executables:]
|
||||
|
|
@ -227,9 +191,9 @@ vanilla_button {
|
|||
auto_sizing_base_screen_height = 1419
|
||||
sticky_anchor = false
|
||||
anchor_point = vanilla
|
||||
x = 180
|
||||
y = 388
|
||||
width = 472
|
||||
x = 138
|
||||
y = 298
|
||||
width = 364
|
||||
height = 10
|
||||
stretch_x = false
|
||||
stretch_y = false
|
||||
|
|
@ -237,7 +201,7 @@ vanilla_button {
|
|||
element_loading_requirement_container_identifier = fa6c81c1-332c-4f8c-b85a-2de260b1542c-1710837053334
|
||||
[loading_requirement_container_meta:fa6c81c1-332c-4f8c-b85a-2de260b1542c-1710837053334] = [groups:][instances:]
|
||||
enable_parallax = false
|
||||
parallax_intensity = 0.5
|
||||
parallax_intensity_v2 = 0.5
|
||||
invert_parallax = false
|
||||
animated_offset_x = 0
|
||||
animated_offset_y = 0
|
||||
|
|
@ -248,3 +212,60 @@ vanilla_button {
|
|||
automated_button_clicks = 0
|
||||
}
|
||||
|
||||
vanilla_button {
|
||||
button_element_executable_block_identifier = 97c197fd-2437-4d73-8648-da77552b154b-1710837053334
|
||||
[executable_block:97c197fd-2437-4d73-8648-da77552b154b-1710837053334][type:generic] = [executables:]
|
||||
restartbackgroundanimations = true
|
||||
nine_slice_custom_background = false
|
||||
nine_slice_border_x = 5
|
||||
nine_slice_border_y = 5
|
||||
navigatable = true
|
||||
widget_active_state_requirement_container_identifier = 119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458
|
||||
[loading_requirement_container_meta:119a0280-2bdb-4c04-9e07-6de16b3d8938-1751005155458] = [groups:][instances:]
|
||||
is_template = false
|
||||
template_apply_width = false
|
||||
template_apply_height = false
|
||||
template_apply_posx = false
|
||||
template_apply_posy = false
|
||||
template_apply_opacity = false
|
||||
template_apply_visibility = false
|
||||
template_apply_label = false
|
||||
template_share_with = buttons
|
||||
nine_slice_slider_handle = false
|
||||
nine_slice_slider_handle_border_x = 5
|
||||
nine_slice_slider_handle_border_y = 5
|
||||
element_type = vanilla_button
|
||||
instance_identifier = mojang_logo
|
||||
appearance_delay = no_delay
|
||||
appearance_delay_seconds = 1.0
|
||||
fade_in_v2 = no_fading
|
||||
fade_in_speed = 1.0
|
||||
fade_out = no_fading
|
||||
fade_out_speed = 1.0
|
||||
base_opacity = 1.0
|
||||
auto_sizing = false
|
||||
auto_sizing_base_screen_width = 0
|
||||
auto_sizing_base_screen_height = 0
|
||||
sticky_anchor = false
|
||||
anchor_point = vanilla
|
||||
x = 138
|
||||
y = 137
|
||||
width = 364
|
||||
height = 90
|
||||
stretch_x = false
|
||||
stretch_y = false
|
||||
stay_on_screen = true
|
||||
element_loading_requirement_container_identifier = dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334
|
||||
[loading_requirement_container_meta:dc9be166-cadf-440c-98bc-47ac378980ba-1710837053334] = [groups:][instances:]
|
||||
enable_parallax = false
|
||||
parallax_intensity_v2 = 0.5
|
||||
invert_parallax = false
|
||||
animated_offset_x = 0
|
||||
animated_offset_y = 0
|
||||
load_once_per_session = false
|
||||
in_editor_color = #FFC800FF
|
||||
layer_hidden_in_editor = false
|
||||
is_hidden = true
|
||||
automated_button_clicks = 0
|
||||
}
|
||||
|
||||
|
|
|
|||
|
After Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 170 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 808 KiB |
|
After Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 148 KiB |
|
Before Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 174 KiB |
|
Before Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 167 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 169 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
After Width: | Height: | Size: 101 KiB |
|
Before Width: | Height: | Size: 1 MiB |
|
|
@ -73,11 +73,11 @@
|
|||
quests: [
|
||||
{
|
||||
dependencies: ["00A2566109144D7F"]
|
||||
description: ["With your first step on the Moon comes access to your first &bCertus Quartz&r vein.\\nDon't worry they're quite common and should be easy to locate, though having a decent &9Ore Scanner&r wouldn't hurt.\\n\\nWhether you decide to set up a miner or manually dig out a full vein, make sure to gather a &dhefty amount&r you'll need it to progress through &bAE2&r."]
|
||||
description: ["{quests.ae2.certus_quartz.desc}"]
|
||||
id: "396E85A39FF414CF"
|
||||
shape: "gear"
|
||||
size: 2.0d
|
||||
subtitle: "A first step for you, a big leap for AE2"
|
||||
subtitle: "{quests.ae2.certus_quartz.subtitle}"
|
||||
tasks: [{
|
||||
id: "2BD92F72533B9DA8"
|
||||
item: {
|
||||
|
|
@ -87,17 +87,19 @@
|
|||
"ftbfiltersystem:filter": "or(item(gtceu:poor_raw_certus_quartz)item(gtceu:raw_certus_quartz)item(gtceu:rich_raw_certus_quartz))"
|
||||
}
|
||||
}
|
||||
title: "{quests.ae2.certus_quartz.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "Certus Quartz"
|
||||
title: "{quests.ae2.certus_quartz.title}"
|
||||
x: -9.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["396E85A39FF414CF"]
|
||||
description: ["One of your main resources for &dApplied Energistics 2&r will be &bCharged Certus Quartz&r.\\n\\nTo obtain it, there’s really only one method: crafting a &6HV&r Polarizer and feeding it power to polarize standard Certus Quartz Crystals.\\n\\nYou’ll quickly notice how long this recipe takes, so it’s strongly recommended to dedicate a Polarizer exclusively to this task.\\n\\nIt may seem expensive or daunting at first, but don't worry—it’s absolutely worth it.\\n\\nAlso, remember not to charge all your Certus Quartz!\\nYou’ll need some uncharged ones for items like the &aAnnihilation Core&r, so always keep a small reserve on hand."]
|
||||
description: ["{quests.ae2.polarizer.desc}"]
|
||||
icon: "gtceu:hv_polarizer"
|
||||
id: "016D8D348A03C684"
|
||||
subtitle: "{quests.ae2.polarizer.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "01CB170E98F09DCB"
|
||||
|
|
@ -110,14 +112,16 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.ae2.polarizer.title}"
|
||||
x: -8.0d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["396E85A39FF414CF"]
|
||||
description: ["These two machines are mandatory to progress in &dApplied Energistics 2&r.\\n\\nThe &eSifter&r is used for ore processing to increase your yield of &bCertus Quartz&r, &7Quartzite&r, &fNether Quartz&r, &cRuby&r, and &dArmalcolite&r—all of which are essential for AE2. Alternatively, you can smelt the ores directly in a Furnace if you prefer mining more over processing.\\n\\nThe second machine, the &eMixer&r, is your only method to create &dFluix Crystals&r (more about that in the next quest). Don’t forget that you can also use the &6Greate Mixer&r as a &6HS&r-tier machine.\\n\\nLastly, keep in mind that an &aAutoclave&r can help you generate even more gems from dusts. Once you have the resources, crafting one will make your life significantly easier."]
|
||||
description: ["{quests.ae2.hv_machines.desc}"]
|
||||
icon: "gtceu:hv_mixer"
|
||||
id: "050ECFC3BAF00D4B"
|
||||
subtitle: "{quests.ae2.hv_machines.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "1CAC123EC6257297"
|
||||
|
|
@ -128,6 +132,7 @@
|
|||
"ftbfiltersystem:filter": "or(item(gtceu:hv_mixer)item(greate:stainless_steel_mechanical_mixer))"
|
||||
}
|
||||
}
|
||||
title: "{quests.ae2.hv_machines.task}"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
|
|
@ -143,6 +148,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.ae2.hv_machines.title}"
|
||||
x: -8.0d
|
||||
y: 0.5d
|
||||
}
|
||||
|
|
@ -151,8 +157,9 @@
|
|||
"016D8D348A03C684"
|
||||
"050ECFC3BAF00D4B"
|
||||
]
|
||||
description: ["As you can see, there are multiple ways to create &dFluix Crystals&r using a &eMixer&r.\\n\\nThe higher the purity of your input gems, the better the yield—that’s exactly why we recommended crafting a &eSifter&r earlier.\\n\\nYou’ll need a massive amount of &dFluix Crystals&r, especially since the &5liquid version&r is used in most &dApplied Energistics 2&r recipes.\\n\\nSo prepare yourself—you’re going to need a lot!"]
|
||||
description: ["{quests.ae2.fluix_crystal.desc}"]
|
||||
id: "673433C6D5A451F8"
|
||||
subtitle: "{quests.ae2.fluix_crystal.subtitle}"
|
||||
tasks: [{
|
||||
id: "5C6F651131F36EC4"
|
||||
item: "ae2:fluix_crystal"
|
||||
|
|
@ -163,9 +170,10 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["673433C6D5A451F8"]
|
||||
description: ["Most of your &dFluix Crystals&r will be converted into &5Liquid Fluix&r.\\nHowever, make sure to keep a few in their crystal form for the occasional recipe that specifically requires it.\\n\\nAny &eExtractor&r will do the job here—no need for anything fancy."]
|
||||
description: ["{quests.ae2.extractor.desc}"]
|
||||
icon: "gtceu:hv_extractor"
|
||||
id: "0DE253C8F7F37FB6"
|
||||
subtitle: "{quests.ae2.extractor.subtitle}"
|
||||
tasks: [{
|
||||
id: "0AE307B47D2589BA"
|
||||
item: {
|
||||
|
|
@ -175,16 +183,19 @@
|
|||
"ftbfiltersystem:filter": "or(item(gtceu:lv_extractor)item(gtceu:mv_extractor)item(gtceu:hv_extractor)item(gtceu:ev_extractor))"
|
||||
}
|
||||
}
|
||||
title: "{quests.ae2.extractor.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.ae2.extractor.title}"
|
||||
x: -5.0d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0DE253C8F7F37FB6"]
|
||||
description: ["We told you you'd need a vast quantity of &dLiquid Fluix&r… but we didn’t mention there’s a way to drastically increase your yield per &dFluix Crystal&r.\\n\\nIntroducing: &bCryogenized Fluix&r, an ultra-cold fluid only craftable on the Moon using a &bVacuum Freezer&r. Simply combine &dLiquid Fluix&r with &bHelium-3&r.\\n\\nThis special fluid can be used as a substitute in nearly all recipes that require &dLiquid Fluix&r—but only when you're crafting on the Moon.\\n\\nMoon-based AE2 recipes come with huge benefits: reduced &6energy&r costs, less &ecomponents&r needed or sometimes both. Investing in a proper Moon base for AE2 production will pay off massively, especially in early game.\\n\\nIt’s not strictly mandatory—yet. But setting up a second base now will ease your future progression, as planet-based infrastructure becomes essential later on. So… why not get ahead of the curve?"]
|
||||
description: ["{quests.ae2.fluix_liquid.desc}"]
|
||||
icon: "tfg:fluix_bucket"
|
||||
id: "5C98FE05CAE3DFD8"
|
||||
subtitle: "{quests.ae2.fluix_liquid.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "7C0B612DC3D05042"
|
||||
|
|
@ -210,12 +221,13 @@
|
|||
type: "dimension"
|
||||
}
|
||||
]
|
||||
title: "{quests.ae2.fluix_liquid.title}"
|
||||
x: -3.5d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["0C0B09D66D0CFFBA"]
|
||||
description: ["Here you are, ready to begin your &bAE2&r infrastructure!\\n\\nThis chapter will mainly guide you through what you can and cannot craft yet.\\nWe’ll also highlight the most important items you should focus on.\\n\\nHowever, to fully understand &bApplied Energistics 2&r, we strongly recommend:\\n\\n&7- Use the &b\"G\"&r keybind or open the &bME Guide&r we provide as a reward from this quest. It’s the best in-game tutorial for &bAE2&r.\\n&7- Watch some online videos about &bAE2&r on &61.20.1&r for more detailed explanations.\\n\\n&dPro tip&r: Many &bAE2&r recipes have &6alternative Moon recipes&r that are much cheaper.\\nOnce again, investing in your &bMoon base&r will greatly reward you throughout the entire game."]
|
||||
description: ["{quests.ae2.ae_guide.desc}"]
|
||||
id: "6CF08AFB924905F0"
|
||||
rewards: [{
|
||||
id: "34825A998EA88DB4"
|
||||
|
|
@ -224,11 +236,13 @@
|
|||
}]
|
||||
shape: "none"
|
||||
size: 1.0d
|
||||
subtitle: "{quests.ae2.ae_guide.subtitle}"
|
||||
tasks: [{
|
||||
id: "427156A026BF966E"
|
||||
title: "Welcome to AE2"
|
||||
title: "{quests.ae2.ae_guide.title}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{quests.ae2.ae_guide.title}"
|
||||
x: 0.5d
|
||||
y: 0.0d
|
||||
}
|
||||
|
|
@ -254,20 +268,23 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["1DF9B1FB98CCD6EB"]
|
||||
description: ["To get the printed circuits, you'll need to craft the &6HV&r Forming Press.\\n\\nThe good news? It has multiple input slots, meaning you can insert all your circuit &ePresses&r at once. With that setup, a single &6HV&r Forming Press is enough to handle every printed circuit type."]
|
||||
description: ["{quests.ae2.forming_press.desc}"]
|
||||
id: "674ACE84D9EA6FB9"
|
||||
subtitle: "{quests.ae2.forming_press.subtitle}"
|
||||
tasks: [{
|
||||
id: "454FB38514F59E0E"
|
||||
item: "gtceu:hv_forming_press"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.ae2.forming_press.title}"
|
||||
x: -3.5d
|
||||
y: 0.5d
|
||||
}
|
||||
{
|
||||
description: ["One of the last things you’ll need before diving fully into &dApplied Energistics 2&r is collecting the 4 &ePresses&r.\\n\\nTo obtain them, you must locate an &eAE2 Meteorite&r on the &3Moon&r. Luckily, they aren't particularly rare, and a single meteorite should contain all four &ePresses&r.\\n\\n&cBe careful though&r — these meteorites are often guarded, and hostile entities may spawn nearby.\\n\\nGear up, bring a scanner if you have one, and happy hunting!"]
|
||||
description: ["{quests.ae2.ae_press.desc}"]
|
||||
id: "1DF9B1FB98CCD6EB"
|
||||
shape: "none"
|
||||
subtitle: "{quests.ae2.ae_press.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "20DB15A3C709E5AB"
|
||||
|
|
@ -290,7 +307,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "Inscriber Press"
|
||||
title: "{quests.ae2.ae_press.title}"
|
||||
x: -3.5d
|
||||
y: 2.0d
|
||||
}
|
||||
|
|
@ -447,8 +464,9 @@
|
|||
"5C98FE05CAE3DFD8"
|
||||
"674ACE84D9EA6FB9"
|
||||
]
|
||||
description: ["All three &eProcessors&r will be used extensively across &dApplied Energistics 2&r recipes.\\n\\nThis also gives you a great opportunity to see how effective the &3Moon&r recipes can be for crafting them.\\n\\n&6But in the end, the choice is yours&r — build your infrastructure where it suits you best."]
|
||||
description: ["{quests.ae2.ae_processor.desc}"]
|
||||
id: "0C0B09D66D0CFFBA"
|
||||
subtitle: "{quests.ae2.ae_processor.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "50014040C38749DF"
|
||||
|
|
@ -466,6 +484,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.ae2.ae_processor.title}"
|
||||
x: -2.0d
|
||||
y: 0.0d
|
||||
}
|
||||
|
|
@ -1224,5 +1243,6 @@
|
|||
y: -10.5d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.ae2.subtitle}"]
|
||||
title: "{quests.ae2}"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -847,7 +847,11 @@
|
|||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["109C57B63EE95E35"]
|
||||
dependencies: [
|
||||
"109C57B63EE95E35"
|
||||
"5826EC76931359B8"
|
||||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: [
|
||||
"{quests.gregtech_energy.large_solar.desc.1}"
|
||||
"{@pagebreak}"
|
||||
|
|
@ -856,12 +860,64 @@
|
|||
icon: "gtceu:large_solar_panel"
|
||||
id: "0585527D1854628B"
|
||||
subtitle: "{quests.gregtech_energy.large_solar.subtitle}"
|
||||
tasks: [{
|
||||
disable_toast: true
|
||||
id: "198E956830F835B2"
|
||||
item: "gtceu:large_solar_panel"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
disable_toast: true
|
||||
id: "198E956830F835B2"
|
||||
item: "gtceu:large_solar_panel"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "794BF3FC434ACB5B"
|
||||
item: "gtceu:lv_input_bus"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "43C2823947C4AE47"
|
||||
item: "gtceu:auto_maintenance_hatch"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "07B517D79E7CDAF0"
|
||||
item: "gtceu:ev_energy_input_hatch"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 54L
|
||||
id: "120C887A59B89D66"
|
||||
item: "tfg:casings/machine_casing_iron_desh"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 24L
|
||||
id: "166503BF54649F4A"
|
||||
item: "tfg:casings/machine_casing_red_solar_panel"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3E71E1F848336782"
|
||||
item: "ad_astra:iron_plating"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 16L
|
||||
id: "294567EB2BE47456"
|
||||
item: { Count: 16, id: "gtceu:cleanroom_glass" }
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 20L
|
||||
id: "516481695EBA7FCD"
|
||||
item: { Count: 20, id: "ad_astra:iron_plateblock" }
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 3L
|
||||
id: "1764824C0C01F914"
|
||||
item: { Count: 3, id: "ad_astra:glowing_iron_pillar" }
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.gregtech_energy.large_solar.title}"
|
||||
x: -8.5d
|
||||
y: 1.5d
|
||||
|
|
|
|||
|
|
@ -19,6 +19,20 @@
|
|||
x: -7.5d
|
||||
y: -6.5d
|
||||
}
|
||||
{
|
||||
id: "33D3C2A9337335D2"
|
||||
linked_quest: "493D733A5438DD7E"
|
||||
x: 10.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "2CDC2C148418F176"
|
||||
linked_quest: "396E85A39FF414CF"
|
||||
shape: "gear"
|
||||
size: 2.0d
|
||||
x: 13.0d
|
||||
y: -6.0d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
{
|
||||
|
|
@ -266,11 +280,7 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["197A13A0790F000B"]
|
||||
description: [
|
||||
"{quests.high_voltage.rutile_loop.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.rutile_loop.desc.2}"
|
||||
]
|
||||
description: ["{quests.high_voltage.rutile_loop.desc}"]
|
||||
icon: "gtceu:rutile_dust"
|
||||
id: "59DFC4DA7D29C315"
|
||||
shape: "square"
|
||||
|
|
@ -326,7 +336,7 @@
|
|||
{
|
||||
dependencies: ["7E755297E9685374"]
|
||||
description: [
|
||||
"{quests.high_voltage.nichrome_coils.desc.1"
|
||||
"{quests.high_voltage.nichrome_coils.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.nichrome_coils.desc.2}"
|
||||
]
|
||||
|
|
@ -408,7 +418,7 @@
|
|||
item: "gtceu:hv_circuit_assembler"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.circuit_assembler.title"
|
||||
title: "{quests.high_voltage.circuit_assembler.title}"
|
||||
x: 10.0d
|
||||
y: 2.0d
|
||||
}
|
||||
|
|
@ -452,7 +462,7 @@
|
|||
description: [
|
||||
"{quests.high_voltage.cleanroom.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.cleanroom.desc.2"
|
||||
"{quests.high_voltage.cleanroom.desc.2}"
|
||||
]
|
||||
icon: "gtceu:cleanroom"
|
||||
id: "3568BC9742092FC5"
|
||||
|
|
@ -610,24 +620,31 @@
|
|||
"{quests.high_voltage.tnt.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.tnt.desc.2}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.tnt.desc.3}"
|
||||
]
|
||||
icon: "minecraft:tnt"
|
||||
id: "2B7B214EDE0B45A2"
|
||||
size: 1.0d
|
||||
tasks: [
|
||||
{
|
||||
id: "1CB85F57BA45252D"
|
||||
item: "gtceu:gelled_toluene"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "04BF6A36E965C348"
|
||||
item: "minecraft:tnt"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6DC25EED8E91BEC2"
|
||||
item: "gtceu:toluene_bucket"
|
||||
id: "162CDC2567F6D6A8"
|
||||
item: "gtceu:industrial_tnt"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "4CFB597542DD0194"
|
||||
item: "gtceu:dynamite"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0BF4703D1DBAA5B7"
|
||||
item: "gtceu:powderbarrel"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
|
|
@ -954,9 +971,13 @@
|
|||
"05ABC370D7153350"
|
||||
"16B735F9C391D260"
|
||||
]
|
||||
description: ["To make the &6Rocket Alloy&r, you will need to put &7Aluminium&r, &7Stainless Steel&r and &cLiquid Red Steel&r into your new &6HV&r Mixer.\\n\\nThe recipe takes some time, so expect to have your mixer fully dedicated to this step.\\n\\nAfter that, your dust will need to be smelted in your EBF at &bMV&r. If you already have &6Nichrome Coils&r and your EBF is running at &6HV&r, you will be able to &aPerfect Overclock&r the recipe (&7check the Gregtech Energy chapter if you don't understand&r).\\n\\nYou can also cool the ingots down with a &9Chemical Bath&r or, if you already have one, a &9Vacuum Freezer&r for a shorter processing time.\\n\\n&7144mb equals 1 ingot&r, so make sure not to extract too much &cRed Steel&r.\\n\\nYou will need &685 Rocket Alloy&r ingots total, which means:\\n- &760 Aluminium&r\\n- &720 Stainless Steel&r\\n- &710 Red Steel&r\\n\\n&aNothing too bad!&r"]
|
||||
description: [
|
||||
"{quests.high_voltage.space_alloy.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.space_alloy.desc.2}"
|
||||
]
|
||||
id: "56D337E264A4154F"
|
||||
subtitle: "It's a new material"
|
||||
subtitle: "{quests.high_voltage.space_alloy.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "0FCF38A07889B205"
|
||||
|
|
@ -969,7 +990,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "Space Alloy"
|
||||
title: "{quests.high_voltage.space_alloy.title}"
|
||||
x: 5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
|
|
@ -978,9 +999,9 @@
|
|||
"56D337E264A4154F"
|
||||
"41D32C5178760F47"
|
||||
]
|
||||
description: ["The &6Rocket Nose Cone&r is the hardest part of your Rocket.\\nYou will need a hefty amount of &aPolyethylene&r — so we hope you already have it passively produced — and a &6HV&r Emitter.\\nYou should be able to get your hands on &dChromium&r by electrolyzing &cRuby Dust&r.\\n\\nThe &aVitrified Ender Pearl&r is trickier and requires you to follow the quest unlocked by the &6HV Chemical Reactor&r.\\nGet ready to make &cTNT&r, build an &5Implosion Compressor&r, and recreate the famous Enderman drop — since you won’t find Ender Pearls natively in &2TFG&r."]
|
||||
description: ["{quests.high_voltage.rocket_nose_cone.desc}"]
|
||||
id: "1E307CD76691C24F"
|
||||
subtitle: "The nose knows..."
|
||||
subtitle: "{quests.high_voltage.rocket_nose_cone.subtitle}"
|
||||
tasks: [{
|
||||
id: "05AEC4A2F295098C"
|
||||
item: "ad_astra:rocket_nose_cone"
|
||||
|
|
@ -991,24 +1012,25 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["7FA0ACB7F161F378"]
|
||||
description: ["Well, that was quite the experience! Between the &9Rutile Processing&r line, the &5Vacuum Chamber&r, and the &5Cleanroom&r, you’ve uncovered a lot of new mechanics. \\nThat’s great — because this is only the beginning.\\n\\nDid you walk on the &fMoon&r yet? If not, we strongly encourage you to go. You’ll encounter &dessential mechanics&r for later stages of the modpack and unlock &bAE2&r, all while gaining access to &aricher ore veins&r.\\n\\nIf you’ve already made your lunar journey, then we hope your infrastructure is solid — because it’s time to enter &5EV&r. This complex chapter will introduce &7even more advanced systems&r and take your factory to the next level."]
|
||||
description: ["{quests.high_voltage.ev_machine_hull.desc}"]
|
||||
id: "4214D5C501C35876"
|
||||
shape: "gear"
|
||||
size: 4.0d
|
||||
subtitle: "That's half of Gregtech tiers"
|
||||
subtitle: "{quests.high_voltage.ev_machine_hull.subtitle}"
|
||||
tasks: [{
|
||||
id: "766F3215D322BAAE"
|
||||
item: "gtceu:ev_machine_hull"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.ev_machine_hull.title}"
|
||||
x: -9.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["56D337E264A4154F"]
|
||||
description: ["We made the &6Rocket Fins&r use an &bAlloy Smelter&r simply to remind you that you now have access to the &bMulti-Smelter&r — a wonderful small EBF that can be used as a &eFurnace&r or an &bAlloy Smelter&r.\\n\\nThe quest to craft it is in the &bMV&r Chapter. We really advise you to think about it if you haven't yet."]
|
||||
description: ["{quests.high_voltage.rocket_fins.desc}"]
|
||||
id: "3E2F96A02FEF12AC"
|
||||
subtitle: "So you reach the right destination"
|
||||
subtitle: "{quests.high_voltage.rocket_fins.subtitle}"
|
||||
tasks: [{
|
||||
count: 4L
|
||||
id: "433BFEE192C565E8"
|
||||
|
|
@ -1021,9 +1043,9 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["56D337E264A4154F"]
|
||||
description: ["The &6Steel Engine&r is required so your rocket can &atravel to the Moon&r.\\n\\nThe recipe isn't too bad — we assume you're ready to tackle each part.\\n\\nTo get &91152mb of Liquid Blue Steel&r, you will need &78 ingots&r."]
|
||||
description: ["{quests.high_voltage.steel_engine.desc}"]
|
||||
id: "4AD686D18247315E"
|
||||
subtitle: "Blue Steel is back baby"
|
||||
subtitle: "{quests.high_voltage.steel_engine.subtitle}"
|
||||
tasks: [{
|
||||
id: "57D58E699F70DD55"
|
||||
item: "ad_astra:steel_engine"
|
||||
|
|
@ -1034,14 +1056,16 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["3FBDC8552F7D8008"]
|
||||
description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"]
|
||||
dependency_requirement: "one_completed"
|
||||
description: ["{quests.high_voltage.rocket_fuel.desc}"]
|
||||
id: "6EF2D4D1C1CC9D3E"
|
||||
subtitle: "Easier than you think"
|
||||
subtitle: "{quests.high_voltage.rocket_fuel.subtitle}"
|
||||
tasks: [{
|
||||
id: "0E3E97E93E9F3A3A"
|
||||
item: "gtceu:rocket_fuel_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.rocket_fuel.title}"
|
||||
x: 10.0d
|
||||
y: -2.0d
|
||||
}
|
||||
|
|
@ -1051,25 +1075,16 @@
|
|||
"6752CC523D38A214"
|
||||
"038B204DAC9C863D"
|
||||
]
|
||||
description: ["&2Congrats&r, you’ve successfully landed on the &7Moon&r!\\nHere, you’ll find &bCertus Quartz&r veins, allowing you to begin unlocking &dAE2&r.\\n\\nBut that’s not all—some veins here have much higher density than those on Earth.\\n\\nFor instance, you can easily find &6Ilmenite&r, &7Bauxite&r, &7Aluminium&r, and &5Chromite&r veins on the Moon.\\nEstablishing a small base here will be crucial to keep progressing.\\n\\nYour biggest challenge will be transporting resources, as there are no easy cross-dimensional tools like the &5Ender Chest&r or &dAE2 Quantum Link&r just yet."]
|
||||
description: ["{quests.high_voltage.welcome_moon.desc}"]
|
||||
id: "00A2566109144D7F"
|
||||
rewards: [{
|
||||
id: "13A577B2BB08460E"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:food": {
|
||||
creationDate: 2718000L
|
||||
traits: [ ]
|
||||
}
|
||||
}
|
||||
id: "ad_astra:cheese"
|
||||
}
|
||||
id: "4E4076733CA38807"
|
||||
item: "ad_astra:cheese_block"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "gear"
|
||||
size: 4.0d
|
||||
subtitle: "Hope you have everything to come back"
|
||||
subtitle: "{quests.high_voltage.welcome_moon.subtitle}"
|
||||
tasks: [{
|
||||
dimension: "ad_astra:moon"
|
||||
icon: "ad_astra:moon_globe"
|
||||
|
|
@ -1077,6 +1092,7 @@
|
|||
title: "I'm on the Moon"
|
||||
type: "dimension"
|
||||
}]
|
||||
title: "{quests.high_voltage.welcome_moon.title}"
|
||||
x: 13.0d
|
||||
y: -2.0d
|
||||
}
|
||||
|
|
@ -1085,9 +1101,13 @@
|
|||
"3FBDC8552F7D8008"
|
||||
"72BD27FEEB34C7B0"
|
||||
]
|
||||
description: ["&6Before crossing the last Earth boundary,&r you should be sure to not die when you arrive on the moon.\\n\\nTo do that, you're gonna need a &bfull set of Space Suit&r loaded with &bOxygen&r — and if you're careful, even a &ebackup can&r.\\n\\n&cThe hardest part&r will definitely be the &dPolycaprolactam Fabric&r.\\n\\nYou will need an &cEBF&r and a &6HV&r &eChemical Reactor&r.\\n\\nFrom there, you'll be able to craft it using &aBenzene&r, &bHydrogen&r, &9Chlorine&r, &bOxygen&r and &3Ammonia&r.\\n\\nWe won't tell you every step, but you should be able to figure it out yourself through &aEMI&r now that you're a fierce Gregtech player.\\n\\nOnce everything is ready, to fill your space suit and can, simply &eRight-Click&r a drum or tank filled with &bOxygen&r."]
|
||||
description: [
|
||||
"{quests.high_voltage.space_suit.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.space_suit.desc.2}"
|
||||
]
|
||||
id: "038B204DAC9C863D"
|
||||
subtitle: "Let's be honest, this may be the hardest"
|
||||
subtitle: "{quests.high_voltage.space_suit.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "2BB34BBE18F6816F"
|
||||
|
|
@ -1133,16 +1153,28 @@
|
|||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1E898EFDBF66CD54"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(ad_astra:gas_tank)item(ad_astra:large_gas_tank))"
|
||||
}
|
||||
}
|
||||
title: "{quests.high_voltage.space_suit.task}"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "Space Suit"
|
||||
title: "{quests.high_voltage.space_suit.title}"
|
||||
x: 10.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3FBDC8552F7D8008"]
|
||||
description: ["&6The Launch Pad is indispensable to launch your Rocket.&r That's the only block on which you will be able to put your Rocket.\\n\\n&cReally important&r but you will need &cTWO Launch Pads&r as it will stay on your launching site and you will need another one to travel back."]
|
||||
description: ["{quests.high_voltage.launch_pad.desc}"]
|
||||
id: "6752CC523D38A214"
|
||||
subtitle: "Without it impossible to launch"
|
||||
subtitle: "{quests.high_voltage.launch_pad.subtitle}"
|
||||
tasks: [{
|
||||
count: 2L
|
||||
id: "4451763FB0D75C2D"
|
||||
|
|
@ -1158,29 +1190,27 @@
|
|||
"04F6E968CEEC3D49"
|
||||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: [
|
||||
"You are beginning to refine your fuels much better, you should be sure you had a look at the Energy Chapter."
|
||||
""
|
||||
"{ \"text\": \"Click here\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"
|
||||
]
|
||||
description: ["{ \"text\": \"{quests.high_voltage.linked_quest_energy.desc}\", \"bold\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"]
|
||||
id: "595C5A01358B9550"
|
||||
subtitle: "{quests.high_voltage.linked_quest_energy.subtitle}"
|
||||
tasks: [{
|
||||
id: "4E59108C7FC5421C"
|
||||
title: "Have a look at the Energy Chapter"
|
||||
title: "{quests.high_voltage.linked_quest_energy.task}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{quests.high_voltage.linked_quest_energy.title}"
|
||||
x: 0.0d
|
||||
y: 11.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["14D277A164202FF8"]
|
||||
description: [
|
||||
"This may be the first time you encounter the &cBedrock Ore Miner&r, as it's rarely used in GregTech. \\nIt functions similarly to the &bFluid Drilling Rig&r, except the veins it targets will &nnever deplete&r.\\n\\nIt doesn't consume much energy — running fine at &bMV&r or &6HV&r — and requires &ano input materials&r.\\n\\nSo, what's the catch? \\nFinding the veins."
|
||||
"{quests.high_voltage.bedrock_miner.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"You’ll need a &6HV&r Ore Prospector set to &oBedrock Ore Mode&r (&7Shift + Right Click&r), and a fair bit of patience. Once you find your target, you’ll also have to figure out how to bring the resources back to your outpost.\\n\\nOn the &fMoon&r, you can find 5 unique bedrock ore veins:\\n\\n&7- Copper and Tin&r: Contains &6Chalcopyrite&r, &eZeolite&r, &fCassiterite&r, and &cRealgar (Arsenic)&r\\n&7- Tin Vein&r: Contains mainly &fCassiterite&r and &fTin&r\\n&7- Asbestos&r\\n&7- Magnetite (Iron) and Gold&r: Very rare — don't actively search for it\\n&7- A mysterious, &dextremely rare&r one... \\nIf you find it, you’ll be thrilled. If not, just live in peace. Don’t worry."
|
||||
"{quests.high_voltage.bedrock_miner.desc.2}"
|
||||
]
|
||||
id: "2878C147D273F774"
|
||||
subtitle: "Unlimited ores?"
|
||||
subtitle: "{quests.high_voltage.bedrock_miner.subtitle}"
|
||||
tasks: [{
|
||||
id: "55981710612D21D7"
|
||||
item: "gtceu:mv_bedrock_ore_miner"
|
||||
|
|
@ -1189,20 +1219,6 @@
|
|||
x: 2.5d
|
||||
y: -10.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["05ABC370D7153350"]
|
||||
description: ["Now that you unlocked the &6HV&r Mixer, it becomes possible to make &aCetane Boosted Diesel&r, granting a &e180%&r increase in potency.\\n\\nThe only tricky part is obtaining &bTetranitromethane&r. We recommend producing it by mixing &9Nitric Acid&r and &dEthenone&r. Ethenone itself isn’t hard to make if you combine &9Sulfuric Acid&r - which you should have plenty of by now - and &cAcetic Acid&r, easily produced from &3Oxygen&r and &5Ethylene&r.\\n\\n&cDon’t forget&r to set your machine on Circuit 2, or else you’ll end up producing &6Polyethylene&r instead!"]
|
||||
id: "7401B47E24593AB2"
|
||||
shape: "heart"
|
||||
subtitle: "Much more powerful than Bio Diesel"
|
||||
tasks: [{
|
||||
id: "54C63404B5CE7E5F"
|
||||
item: "gtceu:cetane_boosted_diesel_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
x: 3.5d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
description: ["{quests.high_voltage.kaolinite_powder.desc}"]
|
||||
disable_toast: true
|
||||
|
|
|
|||
|
|
@ -513,6 +513,11 @@
|
|||
"{quests.low_voltage.lv_ebf.desc.2}"
|
||||
]
|
||||
id: "1E9BE8D3F8A602DC"
|
||||
rewards: [{
|
||||
id: "5A3DDA916C125D0F"
|
||||
item: "gtceu:terminal"
|
||||
type: "item"
|
||||
}]
|
||||
shape: "octagon"
|
||||
size: 2.0d
|
||||
subtitle: "{quests.low_voltage.lv_ebf.subtitle}"
|
||||
|
|
@ -604,10 +609,7 @@
|
|||
y: 0.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"5B2696206205CB2E"
|
||||
"70432F650591353C"
|
||||
]
|
||||
dependencies: ["6042514C8FC54334"]
|
||||
description: ["{quests.low_voltage.cupronickel_coil.desc}"]
|
||||
icon: {
|
||||
Count: 1
|
||||
|
|
@ -626,7 +628,7 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.low_voltage.cupronickel_coil.title}"
|
||||
x: -7.5d
|
||||
x: -8.5d
|
||||
y: 6.5d
|
||||
}
|
||||
{
|
||||
|
|
@ -913,7 +915,10 @@
|
|||
y: 12.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["15928F50AE80A5CF"]
|
||||
dependencies: [
|
||||
"15928F50AE80A5CF"
|
||||
"5263F866638D875C"
|
||||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: [
|
||||
"{quests.low_voltage.lv_oxygen.desc.1}"
|
||||
|
|
@ -1538,6 +1543,21 @@
|
|||
x: 5.5d
|
||||
y: 9.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5B2696206205CB2E"]
|
||||
description: ["{quests.low_voltage.cupronickel_ingot.desc}"]
|
||||
id: "6042514C8FC54334"
|
||||
subtitle: "{quests.low_voltage.cupronickel_ingot.subtitle}"
|
||||
tasks: [{
|
||||
count: 128L
|
||||
id: "701DEB748320107C"
|
||||
item: "gtceu:cupronickel_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.low_voltage.cupronickel_ingot.title}"
|
||||
x: -7.5d
|
||||
y: 6.5d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.low_voltage.subtitle}"]
|
||||
title: "{quests.low_voltage}"
|
||||
|
|
|
|||
|
|
@ -352,6 +352,12 @@
|
|||
x: 13.5d
|
||||
y: -3.0d
|
||||
}
|
||||
{
|
||||
id: "5A5FBC9F634D16FA"
|
||||
linked_quest: "6042514C8FC54334"
|
||||
x: 11.0d
|
||||
y: -3.0d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
{
|
||||
|
|
@ -684,19 +690,6 @@
|
|||
x: -1.0d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5B2696206205CB2E"]
|
||||
id: "70432F650591353C"
|
||||
shape: "square"
|
||||
size: 1.0d
|
||||
tasks: [{
|
||||
id: "77875BBDC0A937A9"
|
||||
item: "gtceu:cupronickel_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 11.0d
|
||||
y: -3.0d
|
||||
}
|
||||
{
|
||||
description: [
|
||||
"{quests.development.explanation.desc.1}"
|
||||
|
|
|
|||
|
|
@ -448,8 +448,8 @@
|
|||
type: "dimension"
|
||||
}
|
||||
{
|
||||
entity: "kaolinclayze:tfc"
|
||||
icon: "kaolinclayze:tfc_spawn_egg"
|
||||
entity: "primitive_creatures:tfc"
|
||||
icon: "primitive_creatures:tfc_spawn_egg"
|
||||
id: "710B94F88C7078C9"
|
||||
optional_task: true
|
||||
type: "kill"
|
||||
|
|
@ -743,8 +743,8 @@
|
|||
type: "dimension"
|
||||
}
|
||||
{
|
||||
entity: "kaolinclayze:golem_2"
|
||||
icon: "kaolinclayze:golem_2_spawn_egg"
|
||||
entity: "primitive_creatures:golem_2"
|
||||
icon: "primitive_creatures:golem_2_spawn_egg"
|
||||
id: "0981F64F296CDDC5"
|
||||
optional_task: true
|
||||
type: "kill"
|
||||
|
|
|
|||
|
|
@ -34,6 +34,12 @@
|
|||
x: -29.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "7C03FE015586C652"
|
||||
linked_quest: "55213ACBF5F5D398"
|
||||
x: -14.5d
|
||||
y: 13.0d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -70,15 +70,7 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["173F6FA60A5B280B"]
|
||||
description: [
|
||||
"{quests.tfg_tips.beneath.desc}"
|
||||
"DELETE:"
|
||||
"# Beneath Must Haves"
|
||||
"* How to go there"
|
||||
"* Kaolin Claze"
|
||||
"* Creation of Hellforge"
|
||||
"* Juicer"
|
||||
]
|
||||
description: ["{quests.tfg_tips.beneath.desc}"]
|
||||
disable_toast: true
|
||||
icon: "minecraft:netherrack"
|
||||
id: "4AA0EBFBA5D8788C"
|
||||
|
|
|
|||
|
|
@ -145,6 +145,12 @@
|
|||
x: -5.5d
|
||||
y: -5.5d
|
||||
}
|
||||
{
|
||||
id: "52ABE7722ABB3281"
|
||||
linked_quest: "0585527D1854628B"
|
||||
x: -2.5d
|
||||
y: 1.0d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
{
|
||||
|
|
@ -276,23 +282,6 @@
|
|||
x: -7.0d
|
||||
y: -3.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"33374462FF07BC75"
|
||||
"3FBDC8552F7D8008"
|
||||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"]
|
||||
id: "60D903E9FA91DB42"
|
||||
subtitle: "Easier than you think"
|
||||
tasks: [{
|
||||
id: "6A00144D5C0E9FA8"
|
||||
item: "gtceu:rocket_fuel_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
x: -7.0d
|
||||
y: -5.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["00A2566109144D7F"]
|
||||
description: ["{quests.space_survival.solar_panels.desc}"]
|
||||
|
|
@ -517,64 +506,21 @@
|
|||
y: -6.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5826EC76931359B8"]
|
||||
description: [
|
||||
"{quests.gregtech_energy.large_solar.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.gregtech_energy.large_solar.desc.2}"
|
||||
dependencies: [
|
||||
"3FBDC8552F7D8008"
|
||||
"33374462FF07BC75"
|
||||
]
|
||||
icon: "gtceu:large_solar_panel"
|
||||
id: "0BBD6807505AA96E"
|
||||
subtitle: "{quests.gregtech_energy.large_solar.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "08F8A202DEFBD791"
|
||||
item: "gtceu:large_solar_panel"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "33009033269EAD48"
|
||||
item: "gtceu:lv_input_bus"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3F0202755438BE30"
|
||||
item: "gtceu:auto_maintenance_hatch"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "76E075BC64697885"
|
||||
item: "gtceu:ev_energy_output_hatch"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 54L
|
||||
id: "2D09546682F6DD20"
|
||||
item: { Count: 32, id: "tfg:casings/machine_casing_iron_desh" }
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 24L
|
||||
id: "7F1A78AB02673FC8"
|
||||
item: { Count: 24, id: "tfg:casings/machine_casing_red_solar_panel" }
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 20L
|
||||
id: "13DB8D7072DE7BEA"
|
||||
item: { Count: 20, id: "ad_astra:iron_plateblock" }
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
count: 16L
|
||||
id: "1D6554EA7A76178F"
|
||||
item: { Count: 16, id: "gtceu:cleanroom_glass" }
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.gregtech_energy.large_solar.title}"
|
||||
x: -2.5d
|
||||
y: 1.0d
|
||||
dependency_requirement: "one_completed"
|
||||
description: ["&6For each travel you will need Rocket Fuel&r, it seems complicated and it is quite a long process but you can make Rocket Fuel from &bChlorine&r, &bMethane&r, &bNitrogen&r, &bOxygen&r and &bWater&r. Nothing too bad, also if you already have your &5Large Chemical Reactor&r you could unlock some bypass.\\n\\n&7We advise you to use EMI Recipe Tree to have an easier time understanding each step. Simply click on the small icon with 4 squares on the right of the crafting recipe.&r"]
|
||||
id: "0B80972F50E08B8D"
|
||||
subtitle: "Easier than you think"
|
||||
tasks: [{
|
||||
id: "5FBF567FFC837BFA"
|
||||
item: "gtceu:rocket_fuel_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
x: -7.0d
|
||||
y: -5.5d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.space_survival.subtitle}"]
|
||||
|
|
|
|||
|
|
@ -568,26 +568,15 @@
|
|||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: [
|
||||
"This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape."
|
||||
""
|
||||
"The cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option."
|
||||
""
|
||||
"Install an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist \"&e&lhot_ingots&r\"."
|
||||
""
|
||||
"From here, you can route with &9any logistics system&r of your choice."
|
||||
"{quests.high_voltage.250_iq.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate)."
|
||||
"You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized."
|
||||
""
|
||||
"&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r."
|
||||
""
|
||||
"&9Other Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information."
|
||||
"{quests.high_voltage.250_iq.desc.2}"
|
||||
]
|
||||
icon: "gtceu:item_tag_filter"
|
||||
id: "7C1FD81C5DCFB74E"
|
||||
shape: "square"
|
||||
size: 1.0d
|
||||
subtitle: "Stop burning your darn hands!"
|
||||
subtitle: "{quests.high_voltage.250_iq.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "34DEDF3B7F0DB3BC"
|
||||
|
|
@ -600,7 +589,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "250IQ"
|
||||
title: "{quests.high_voltage.250_iq.title}"
|
||||
x: 10.0d
|
||||
y: 9.0d
|
||||
}
|
||||
|
|
@ -2493,6 +2482,27 @@
|
|||
x: 0.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["150B7C5CD152E1BA"]
|
||||
description: ["{quests.tfg_tips.tools_tips.harvest_basket.desc}"]
|
||||
id: "5B0A9757F1EF1B9E"
|
||||
subtitle: "{quests.tfg_tips.tools_tips.harvest_basket.subtitle}"
|
||||
tasks: [{
|
||||
id: "15C2F940F5A576D5"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "item_tag(tfg:harvester)"
|
||||
}
|
||||
}
|
||||
title: "{quests.tfg_tips.tools_tips.harvest_basket.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.tfg_tips.tools_tips.harvest_basket.title}"
|
||||
x: -6.0d
|
||||
y: 10.0d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.tfg_tips.tools_tips.subtitle}"]
|
||||
title: "Tips - Tools"
|
||||
|
|
|
|||
|
|
@ -131,6 +131,7 @@
|
|||
"cheese": true,
|
||||
"shelf": true,
|
||||
"oven_top": true,
|
||||
"pumping_station": true,
|
||||
"solar_drier": true,
|
||||
"oven_bottom": true,
|
||||
"fruit_tree_sapling": true,
|
||||
|
|
|
|||
|
|
@ -56,6 +56,7 @@
|
|||
"firmalife:jarbnet": null,
|
||||
"firmalife:oven_bottom": null,
|
||||
"firmalife:oven_top": null,
|
||||
"firmalife:pumping_station": null,
|
||||
"firmalife:shelf": null,
|
||||
"firmalife:solar_drier": null,
|
||||
"firmalife:string": null,
|
||||
|
|
|
|||
|
|
@ -96,7 +96,6 @@ create:packing
|
|||
create:pressing
|
||||
create:sandpaper_polishing
|
||||
create:sawing
|
||||
create:wood_cutting
|
||||
createaddition:charging
|
||||
createaddition:liquid_burning
|
||||
expatternprovider:circuit_cutter
|
||||
|
|
@ -108,7 +107,6 @@ greate:automatic_packing
|
|||
greate:automatic_shapeless
|
||||
greate:fan_haunting
|
||||
greate:pressing
|
||||
greate:wood_cutting
|
||||
jei:information
|
||||
jumbofurnace:jumbo_furnace_upgrade
|
||||
jumbofurnace:jumbo_smelting
|
||||
|
|
@ -120,3 +118,18 @@ vintageimprovements:grinder_sandpaper_polishing
|
|||
vintageimprovements:leaves_vibrating
|
||||
vintageimprovements:polishing
|
||||
vintageimprovements:unpacking
|
||||
ad_astra:alloying
|
||||
ad_astra:compressing
|
||||
ad_astra:cryo_freezing
|
||||
ad_astra:nasa_workbench
|
||||
ad_astra:oxygen_loading
|
||||
ad_astra:refining
|
||||
species:cruncher_pellet
|
||||
species:goober_goo
|
||||
tacz:attachment_query
|
||||
tacz:gun_smith_table/applied_armorer_worckbench_applied_armorer
|
||||
tacz:gun_smith_table/tacz_ammo_workbench
|
||||
tacz:gun_smith_table/tacz_attachment_workbench
|
||||
tacz:gun_smith_table/tacz_gun_smith_table
|
||||
taczammoquery:ammo_query
|
||||
tfclunchbox:fill_capsule
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
# mixin.perf.forge_cap_retrieval=true # (default)
|
||||
# mixin.perf.forge_registry_alloc=true # (default)
|
||||
# mixin.perf.forge_registry_lambda=true # (default)
|
||||
# mixin.perf.ingredient_item_deduplication=false # (default)
|
||||
# mixin.perf.kubejs=true # (default)
|
||||
# mixin.perf.lazy_search_tree_registry=true # (default)
|
||||
# mixin.perf.memoize_creative_tab_build=true # (default)
|
||||
|
|
|
|||
|
|
@ -10,4 +10,8 @@
|
|||
#Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one
|
||||
#Allowed Values: FALSE, NO_GUI, TRUE
|
||||
consistent_entity_renderer_shading = "NO_GUI"
|
||||
#ONLY for debugging purpose. blocktypes_debug.txt, the file can be found in ~/.minecraft/logs/...
|
||||
blocktypes_debug = false
|
||||
woodtypes_debug = false
|
||||
leavestypes_debug = false
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#Packet Fixer config file.
|
||||
#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3.
|
||||
#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize.
|
||||
#Sun Jun 29 07:00:58 YEKT 2025
|
||||
#Sat Jul 19 21:52:19 YEKT 2025
|
||||
utfSize=3276700
|
||||
allSizesUnlimited=true
|
||||
forceUnlimitedNbtEnabled=false
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
#Common Settings
|
||||
[common]
|
||||
#Disable / enable any items here (disables their recipes)
|
||||
enabledItems = ["sophisticatedbackpacks:compacting_upgrade|false", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|false", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|false", "sophisticatedbackpacks:feeding_upgrade|false", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|false", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|false", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|false", "sophisticatedbackpacks:stack_upgrade_tier_2|false", "sophisticatedbackpacks:stack_upgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:advanced_pump_upgrade|false", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:auto_blasting_upgrade|false", "sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|false", "sophisticatedbackpacks:battery_upgrade|false", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|false", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:stonecutter_upgrade|false", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:inception_upgrade|false", "sophisticatedbackpacks:anvil_upgrade|false", "sophisticatedbackpacks:xp_pump_upgrade|false", "sophisticatedbackpacks:auto_smelting_upgrade|false", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:pump_upgrade|false", "sophisticatedbackpacks:netherite_backpack|true", "sophisticatedbackpacks:copper_backpack|false", "sophisticatedbackpacks:stack_upgrade_starter_tier|true", "sophisticatedbackpacks:advanced_jukebox_upgrade|true", "sophisticatedbackpacks:smithing_upgrade|false", "sophisticatedbackpacks:stack_downgrade_tier_2|false", "sophisticatedbackpacks:stack_downgrade_tier_1|false", "sophisticatedbackpacks:stack_downgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_omega_tier|false", "sophisticatedbackpacks:infinity_upgrade|false", "sophisticatedbackpacks:survival_infinity_upgrade|false"]
|
||||
enabledItems = ["sophisticatedbackpacks:compacting_upgrade|false", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|false", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|false", "sophisticatedbackpacks:feeding_upgrade|false", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|false", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|false", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|false", "sophisticatedbackpacks:stack_upgrade_tier_2|false", "sophisticatedbackpacks:stack_upgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:advanced_pump_upgrade|false", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:auto_blasting_upgrade|false", "sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|false", "sophisticatedbackpacks:battery_upgrade|false", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|false", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:stonecutter_upgrade|false", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:inception_upgrade|false", "sophisticatedbackpacks:anvil_upgrade|false", "sophisticatedbackpacks:xp_pump_upgrade|false", "sophisticatedbackpacks:auto_smelting_upgrade|false", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:pump_upgrade|false", "sophisticatedbackpacks:netherite_backpack|true", "sophisticatedbackpacks:copper_backpack|false", "sophisticatedbackpacks:stack_upgrade_starter_tier|true", "sophisticatedbackpacks:advanced_jukebox_upgrade|true", "sophisticatedbackpacks:smithing_upgrade|false", "sophisticatedbackpacks:stack_downgrade_tier_2|false", "sophisticatedbackpacks:stack_downgrade_tier_1|false", "sophisticatedbackpacks:stack_downgrade_tier_3|false", "sophisticatedbackpacks:stack_upgrade_omega_tier|false", "sophisticatedbackpacks:infinity_upgrade|false", "sophisticatedbackpacks:survival_infinity_upgrade|false", "sophisticatedbackpacks:advanced_alchemy_upgrade|true", "sophisticatedbackpacks:alchemy_upgrade|true"]
|
||||
|
||||
|
|
|
|||
|
|
@ -184,22 +184,28 @@ disabled_generic_methods = []
|
|||
|
||||
#Terminal size of computers.
|
||||
[term_sizes.computer]
|
||||
#Width of computer terminal
|
||||
#Range: 1 ~ 255
|
||||
width = 51
|
||||
#Height of computer terminal
|
||||
#Range: 1 ~ 255
|
||||
height = 19
|
||||
|
||||
#Terminal size of pocket computers.
|
||||
[term_sizes.pocket_computer]
|
||||
#Width of pocket computer terminal
|
||||
#Range: 1 ~ 255
|
||||
width = 26
|
||||
#Height of pocket computer terminal
|
||||
#Range: 1 ~ 255
|
||||
height = 20
|
||||
|
||||
#Maximum size of monitors (in blocks).
|
||||
[term_sizes.monitor]
|
||||
#Maximum width of monitors
|
||||
#Range: 1 ~ 32
|
||||
width = 8
|
||||
#Maximum height of monitors
|
||||
#Range: 1 ~ 32
|
||||
height = 6
|
||||
|
||||
|
|
|
|||
|
|
@ -17,12 +17,23 @@ vesselHeatMultiplier = 0.5
|
|||
#Limit the max boiler level achievable with a Fluid Vessel
|
||||
#Range: 0 ~ 18
|
||||
vesselMaxLevel = 18
|
||||
#.
|
||||
#RPM of a Kinetic Battery when discharging
|
||||
#Range: 0 ~ 256
|
||||
batteryDischargeRPM = 64
|
||||
#.
|
||||
#Max capacity of a Kinetic Battery in su-hours
|
||||
#Range: 0.0 ~ 8192.0
|
||||
batteryCapacity = 512.0
|
||||
#.
|
||||
#Allow Redstone Links to have wildcards in both slots [restart required]
|
||||
allowDualWildcardLink = false
|
||||
|
||||
[stressValues]
|
||||
|
||||
#.
|
||||
#Fine tune the kinetic stats of individual components
|
||||
[stressValues.v2]
|
||||
[stressValues.v1]
|
||||
#.
|
||||
#Stress impact of a powered brake [in Stress Units]
|
||||
#Range: -Infinity ~ Infinity
|
||||
|
|
@ -32,23 +43,25 @@ vesselMaxLevel = 18
|
|||
#.
|
||||
#[in Stress Units]
|
||||
#Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives.
|
||||
[stressValues.v2.impact]
|
||||
inverted_gearshift = 0.0
|
||||
six_way_gearbox = 0.0
|
||||
[stressValues.v1.impact]
|
||||
brass_gearbox = 0.0
|
||||
centrifugal_clutch = 0.0
|
||||
overstress_clutch = 0.0
|
||||
brake = 0.0
|
||||
encased_chain_cogwheel = 0.0
|
||||
inverted_clutch = 0.0
|
||||
parallel_gearbox = 0.0
|
||||
freewheel_clutch = 0.0
|
||||
brass_gearbox = 0.0
|
||||
kinetic_battery = 64.0
|
||||
six_way_gearbox = 0.0
|
||||
shear_pin = 0.0
|
||||
parallel_gearbox = 0.0
|
||||
inverted_gearshift = 0.0
|
||||
freewheel_clutch = 0.0
|
||||
overstress_clutch = 0.0
|
||||
inverted_clutch = 0.0
|
||||
|
||||
#.
|
||||
#[in Stress Units]
|
||||
#Configure how much stress a source can accommodate for.
|
||||
[stressValues.v2.capacity]
|
||||
crank_wheel = 2.0
|
||||
large_crank_wheel = 2.0
|
||||
[stressValues.v1.capacity]
|
||||
crank_wheel = 8.0
|
||||
kinetic_battery = 32.0
|
||||
large_crank_wheel = 8.0
|
||||
|
||||
|
|
|
|||
|
|
@ -17,4 +17,6 @@
|
|||
permissionHandler = "forge:default_handler"
|
||||
#Set this to true to enable advertising the dedicated server to local LAN clients so that it shows up in the Multiplayer screen automatically.
|
||||
advertiseDedicatedServerToLan = true
|
||||
#Set this to true to enable living entities to use items with durations of 0. Fixes being able to use Eyes of Ender repeatedly by holding down the use button. Disabled by default as it could change interactions with items of existing mods.
|
||||
useItemWithDurationZero = false
|
||||
|
||||
|
|
|
|||
|
|
@ -1,399 +1,425 @@
|
|||
#.
|
||||
#Multiplier used for calculating how many ticks should initially be removed in fan processing recipes, based on how fast the fan is spinning.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
fanSpeedMultiplier = 0.75
|
||||
|
||||
#.
|
||||
#Parameters and abilities of Greate's kinetic mechanisms
|
||||
[kinetics]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Fine tune settings related to belts
|
||||
[kinetics.belts]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Rubber Belt Settings
|
||||
[kinetics.belts.rubber]
|
||||
#.
|
||||
#Maximum length in blocks of rubber mechanical belts
|
||||
#Range: > 5
|
||||
rubberMaxBeltLength = 20
|
||||
|
||||
#.
|
||||
#Silicone Rubber Belt Settings
|
||||
[kinetics.belts.silicone]
|
||||
#.
|
||||
#Maximum length in blocks of silicone mechanical belts
|
||||
#Range: > 5
|
||||
siliconeMaxBeltLength = 25
|
||||
|
||||
#.
|
||||
#Polyethylene Belt Settings
|
||||
[kinetics.belts.polyethylene]
|
||||
#.
|
||||
#Maximum length in blocks of polyethylene mechanical belts
|
||||
#Range: > 5
|
||||
polyethyleneMaxBeltLength = 30
|
||||
|
||||
#.
|
||||
#Polytetrafluoroethylene Belt Settings
|
||||
[kinetics.belts.polytetrafluoroethylene]
|
||||
#.
|
||||
#Maximum length in blocks of polytetrafluoroethylene mechanical belts
|
||||
#Range: > 5
|
||||
polytetrafluoroethyleneMaxBeltLength = 35
|
||||
|
||||
#.
|
||||
#Polybenzimidazole Belt Settings
|
||||
[kinetics.belts.polybenzimidazole]
|
||||
#.
|
||||
#Maximum length in blocks of polybenzimidazole mechanical belts
|
||||
#Range: > 5
|
||||
polybenzimidazoleMaxBeltLength = 40
|
||||
|
||||
[kinetics.stressValues]
|
||||
|
||||
#.
|
||||
#Fine tune the kinetic stats of individual components
|
||||
[kinetics.stressValues.v1]
|
||||
|
||||
#.
|
||||
#.[in Stress Units]Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives
|
||||
[kinetics.stressValues.v1.impact]
|
||||
|
||||
[kinetics.stressValues.v1.impact.andesite_alloy]
|
||||
andesite_alloy_shaft = 0.0
|
||||
andesite_encased_andesite_alloy_shaft = 0.0
|
||||
brass_encased_andesite_alloy_shaft = 0.0
|
||||
andesite_alloy_cogwheel = 0.0
|
||||
large_andesite_alloy_cogwheel = 0.0
|
||||
andesite_encased_andesite_alloy_cogwheel = 0.0
|
||||
andesite_encased_large_andesite_alloy_cogwheel = 0.0
|
||||
brass_encased_andesite_alloy_cogwheel = 0.0
|
||||
brass_encased_large_andesite_alloy_cogwheel = 0.0
|
||||
andesite_alloy_crushing_wheel = 0.5
|
||||
andesite_alloy_encased_fan = 0.5
|
||||
andesite_alloy_gearbox = 0.0
|
||||
andesite_alloy_mechanical_press = 0.5
|
||||
andesite_alloy_mechanical_mixer = 0.5
|
||||
andesite_alloy_millstone = 0.5
|
||||
andesite_alloy_mechanical_saw = 0.5
|
||||
andesite_alloy_mechanical_pump = 0.5
|
||||
|
||||
[kinetics.stressValues.v1.impact.steel]
|
||||
steel_shaft = 0.0
|
||||
andesite_encased_steel_shaft = 0.0
|
||||
brass_encased_steel_shaft = 0.0
|
||||
steel_cogwheel = 0.0
|
||||
large_steel_cogwheel = 0.0
|
||||
andesite_encased_steel_cogwheel = 0.0
|
||||
andesite_encased_large_steel_cogwheel = 0.0
|
||||
brass_encased_steel_cogwheel = 0.0
|
||||
brass_encased_large_steel_cogwheel = 0.0
|
||||
steel_crushing_wheel = 1.0
|
||||
steel_encased_fan = 1.0
|
||||
steel_gearbox = 0.0
|
||||
steel_mechanical_press = 1.0
|
||||
steel_mechanical_mixer = 1.0
|
||||
steel_millstone = 1.0
|
||||
steel_mechanical_saw = 1.0
|
||||
steel_mechanical_pump = 1.0
|
||||
|
||||
[kinetics.stressValues.v1.impact.aluminium]
|
||||
aluminium_shaft = 0.0
|
||||
andesite_encased_aluminium_shaft = 0.0
|
||||
brass_encased_aluminium_shaft = 0.0
|
||||
aluminium_cogwheel = 0.0
|
||||
large_aluminium_cogwheel = 0.0
|
||||
andesite_encased_aluminium_cogwheel = 0.0
|
||||
andesite_encased_large_aluminium_cogwheel = 0.0
|
||||
brass_encased_aluminium_cogwheel = 0.0
|
||||
brass_encased_large_aluminium_cogwheel = 0.0
|
||||
aluminium_crushing_wheel = 1.5
|
||||
aluminium_encased_fan = 1.5
|
||||
aluminium_gearbox = 0.0
|
||||
aluminium_mechanical_press = 1.5
|
||||
aluminium_mechanical_mixer = 1.5
|
||||
aluminium_millstone = 1.5
|
||||
aluminium_mechanical_saw = 1.5
|
||||
aluminium_mechanical_pump = 1.5
|
||||
|
||||
[kinetics.stressValues.v1.impact.stainless_steel]
|
||||
stainless_steel_shaft = 0.0
|
||||
andesite_encased_stainless_steel_shaft = 0.0
|
||||
brass_encased_stainless_steel_shaft = 0.0
|
||||
stainless_steel_cogwheel = 0.0
|
||||
large_stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_large_stainless_steel_cogwheel = 0.0
|
||||
brass_encased_stainless_steel_cogwheel = 0.0
|
||||
brass_encased_large_stainless_steel_cogwheel = 0.0
|
||||
stainless_steel_crushing_wheel = 2.0
|
||||
stainless_steel_encased_fan = 2.0
|
||||
stainless_steel_gearbox = 0.0
|
||||
stainless_steel_mechanical_press = 2.0
|
||||
stainless_steel_mechanical_mixer = 2.0
|
||||
stainless_steel_millstone = 2.0
|
||||
stainless_steel_mechanical_saw = 2.0
|
||||
stainless_steel_mechanical_pump = 2.0
|
||||
|
||||
[kinetics.stressValues.v1.impact.titanium]
|
||||
titanium_shaft = 0.0
|
||||
andesite_encased_titanium_shaft = 0.0
|
||||
brass_encased_titanium_shaft = 0.0
|
||||
titanium_cogwheel = 0.0
|
||||
large_titanium_cogwheel = 0.0
|
||||
andesite_encased_titanium_cogwheel = 0.0
|
||||
andesite_encased_large_titanium_cogwheel = 0.0
|
||||
brass_encased_titanium_cogwheel = 0.0
|
||||
brass_encased_large_titanium_cogwheel = 0.0
|
||||
titanium_crushing_wheel = 2.5
|
||||
titanium_encased_fan = 2.5
|
||||
titanium_gearbox = 0.0
|
||||
titanium_mechanical_press = 2.5
|
||||
titanium_mechanical_mixer = 2.5
|
||||
titanium_millstone = 2.5
|
||||
titanium_mechanical_saw = 2.5
|
||||
titanium_mechanical_pump = 2.5
|
||||
|
||||
[kinetics.stressValues.v1.impact.tungsten_steel]
|
||||
tungsten_steel_shaft = 0.0
|
||||
andesite_encased_tungsten_steel_shaft = 0.0
|
||||
brass_encased_tungsten_steel_shaft = 0.0
|
||||
tungsten_steel_cogwheel = 0.0
|
||||
large_tungsten_steel_cogwheel = 0.0
|
||||
andesite_encased_tungsten_steel_cogwheel = 0.0
|
||||
andesite_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
brass_encased_tungsten_steel_cogwheel = 0.0
|
||||
brass_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
tungsten_steel_crushing_wheel = 3.0
|
||||
tungsten_steel_encased_fan = 3.0
|
||||
tungsten_steel_gearbox = 0.0
|
||||
tungsten_steel_mechanical_press = 3.0
|
||||
tungsten_steel_mechanical_mixer = 3.0
|
||||
tungsten_steel_millstone = 3.0
|
||||
tungsten_steel_mechanical_saw = 3.0
|
||||
tungsten_steel_mechanical_pump = 3.0
|
||||
|
||||
[kinetics.stressValues.v1.impact.rhodium_plated_palladium]
|
||||
rhodium_plated_palladium_shaft = 0.0
|
||||
andesite_encased_rhodium_plated_palladium_shaft = 0.0
|
||||
brass_encased_rhodium_plated_palladium_shaft = 0.0
|
||||
rhodium_plated_palladium_cogwheel = 0.0
|
||||
large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
andesite_encased_rhodium_plated_palladium_cogwheel = 0.0
|
||||
andesite_encased_large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
brass_encased_rhodium_plated_palladium_cogwheel = 0.0
|
||||
brass_encased_large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
rhodium_plated_palladium_crushing_wheel = 3.5
|
||||
rhodium_plated_palladium_encased_fan = 3.5
|
||||
rhodium_plated_palladium_gearbox = 0.0
|
||||
rhodium_plated_palladium_mechanical_press = 3.5
|
||||
rhodium_plated_palladium_mechanical_mixer = 3.5
|
||||
rhodium_plated_palladium_millstone = 3.5
|
||||
rhodium_plated_palladium_mechanical_saw = 3.5
|
||||
rhodium_plated_palladium_mechanical_pump = 3.5
|
||||
|
||||
[kinetics.stressValues.v1.impact.naquadah_alloy]
|
||||
naquadah_alloy_shaft = 0.0
|
||||
andesite_encased_naquadah_alloy_shaft = 0.0
|
||||
brass_encased_naquadah_alloy_shaft = 0.0
|
||||
naquadah_alloy_cogwheel = 0.0
|
||||
large_naquadah_alloy_cogwheel = 0.0
|
||||
andesite_encased_naquadah_alloy_cogwheel = 0.0
|
||||
andesite_encased_large_naquadah_alloy_cogwheel = 0.0
|
||||
brass_encased_naquadah_alloy_cogwheel = 0.0
|
||||
brass_encased_large_naquadah_alloy_cogwheel = 0.0
|
||||
naquadah_alloy_crushing_wheel = 4.0
|
||||
naquadah_alloy_encased_fan = 4.0
|
||||
naquadah_alloy_gearbox = 0.0
|
||||
naquadah_alloy_mechanical_press = 4.0
|
||||
naquadah_alloy_mechanical_mixer = 4.0
|
||||
naquadah_alloy_millstone = 4.0
|
||||
naquadah_alloy_mechanical_saw = 4.0
|
||||
naquadah_alloy_mechanical_pump = 4.0
|
||||
|
||||
[kinetics.stressValues.v1.impact.darmstadtium]
|
||||
darmstadtium_shaft = 0.0
|
||||
andesite_encased_darmstadtium_shaft = 0.0
|
||||
brass_encased_darmstadtium_shaft = 0.0
|
||||
darmstadtium_cogwheel = 0.0
|
||||
large_darmstadtium_cogwheel = 0.0
|
||||
andesite_encased_darmstadtium_cogwheel = 0.0
|
||||
andesite_encased_large_darmstadtium_cogwheel = 0.0
|
||||
brass_encased_darmstadtium_cogwheel = 0.0
|
||||
brass_encased_large_darmstadtium_cogwheel = 0.0
|
||||
darmstadtium_crushing_wheel = 4.5
|
||||
darmstadtium_encased_fan = 4.5
|
||||
darmstadtium_gearbox = 0.0
|
||||
darmstadtium_mechanical_press = 4.5
|
||||
darmstadtium_mechanical_mixer = 4.5
|
||||
darmstadtium_millstone = 4.5
|
||||
darmstadtium_mechanical_saw = 4.5
|
||||
darmstadtium_mechanical_pump = 4.5
|
||||
|
||||
[kinetics.stressValues.v1.impact.neutronium]
|
||||
neutronium_shaft = 0.0
|
||||
andesite_encased_neutronium_shaft = 0.0
|
||||
brass_encased_neutronium_shaft = 0.0
|
||||
neutronium_cogwheel = 0.0
|
||||
large_neutronium_cogwheel = 0.0
|
||||
andesite_encased_neutronium_cogwheel = 0.0
|
||||
andesite_encased_large_neutronium_cogwheel = 0.0
|
||||
brass_encased_neutronium_cogwheel = 0.0
|
||||
brass_encased_large_neutronium_cogwheel = 0.0
|
||||
neutronium_crushing_wheel = 5.0
|
||||
neutronium_encased_fan = 5.6
|
||||
neutronium_gearbox = 0.0
|
||||
neutronium_mechanical_press = 5.0
|
||||
neutronium_mechanical_mixer = 5.0
|
||||
neutronium_millstone = 5.0
|
||||
neutronium_mechanical_saw = 5.0
|
||||
neutronium_mechanical_pump = 5.0
|
||||
|
||||
[kinetics.stressValues.v1.impact."gtceu:rubber"]
|
||||
rubber_belt_andesite_alloy = 0.0
|
||||
rubber_belt_steel = 0.0
|
||||
|
||||
[kinetics.stressValues.v1.impact."gtceu:silicone_rubber"]
|
||||
silicone_rubber_belt_aluminium = 0.0
|
||||
silicone_rubber_belt_stainless_steel = 0.0
|
||||
|
||||
[kinetics.stressValues.v1.impact."gtceu:polyethylene"]
|
||||
polyethylene_belt_titanium = 0.0
|
||||
polyethylene_belt_tungsten_steel = 0.0
|
||||
|
||||
[kinetics.stressValues.v1.impact."gtceu:polytetrafluoroethylene"]
|
||||
polytetrafluoroethylene_belt_rhodium_plated_palladium = 0.0
|
||||
polytetrafluoroethylene_belt_naquadah_alloy = 0.0
|
||||
|
||||
[kinetics.stressValues.v1.impact."gtceu:polybenzimidazole"]
|
||||
polybenzimidazole_belt_darmstadtium = 0.0
|
||||
polybenzimidazole_belt_neutronium = 0.0
|
||||
|
||||
#.
|
||||
#Fine tune settings related to tiers
|
||||
[kinetics.stressValues.v1.maxCapacity]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Settings related to andesite tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.andesite]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
andesiteMaxCapacity = 32
|
||||
|
||||
#.
|
||||
#Settings related to steel tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.steel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
steelMaxCapacity = 128
|
||||
|
||||
#.
|
||||
#Settings related to aluminium tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.aluminium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
aluminiumMaxCapacity = 512
|
||||
|
||||
#.
|
||||
#Settings related to stainless steel tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.stainlessSteel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
stainlessSteelMaxCapacity = 2048
|
||||
|
||||
#.
|
||||
#Settings related to titanium tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.titanium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
titaniumMaxCapacity = 8192
|
||||
|
||||
#.
|
||||
#Settings related to tungstensteel tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.tungstensteel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
tungstensteelMaxCapacity = 32768
|
||||
|
||||
#.
|
||||
#Settings related to palladium tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.palladium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
palladiumMaxCapacity = 131072
|
||||
|
||||
#.
|
||||
#Settings related to naquadah tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.naquadah]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
naquadahMaxCapacity = 524288
|
||||
|
||||
#.
|
||||
#Settings related to darmstadtium tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.darmstadtium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
darmstadtiumMaxCapacity = 2097152
|
||||
|
||||
#.
|
||||
#Settings related to neutronium tier machines
|
||||
[kinetics.stressValues.v1.maxCapacity.neutronium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
neutroniumMaxCapacity = 8388608
|
||||
|
||||
#.
|
||||
#Fine tune settings related to pumps
|
||||
[kinetics.pumps]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Configure the individual pressure of pumps. Note that pressure is multiplied by the speed of the pump
|
||||
[kinetics.pumps.pressure]
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
andesitePressure = 8.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
steelPressure = 32.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
aluminiumPressure = 128.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
stainlessSteelPressure = 512.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
titaniumPressure = 2048.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
tungstensteelPressure = 8192.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
palladiumPressure = 16384.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
naquadahPressure = 32768.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
darmstadtiumPressure = 131072.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
neutroniumPressure = 524288.0
|
||||
|
||||
#.
|
||||
#Multiplier used for calculating how many ticks should initially be removed in fan processing recipes, based on how fast the fan is spinning.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
fanSpeedMultiplier = 0.75
|
||||
|
||||
#.
|
||||
#Parameters and abilities of Greate's kinetic mechanisms
|
||||
[kinetics]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Fine tune settings related to belts
|
||||
[kinetics.belts]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Rubber Belt Settings
|
||||
[kinetics.belts.rubber]
|
||||
#.
|
||||
#Maximum length in blocks of rubber mechanical belts
|
||||
#Range: > 5
|
||||
rubberMaxBeltLength = 20
|
||||
|
||||
#.
|
||||
#Silicone Rubber Belt Settings
|
||||
[kinetics.belts.silicone]
|
||||
#.
|
||||
#Maximum length in blocks of silicone mechanical belts
|
||||
#Range: > 5
|
||||
siliconeMaxBeltLength = 25
|
||||
|
||||
#.
|
||||
#Polyethylene Belt Settings
|
||||
[kinetics.belts.polyethylene]
|
||||
#.
|
||||
#Maximum length in blocks of polyethylene mechanical belts
|
||||
#Range: > 5
|
||||
polyethyleneMaxBeltLength = 30
|
||||
|
||||
#.
|
||||
#Polytetrafluoroethylene Belt Settings
|
||||
[kinetics.belts.polytetrafluoroethylene]
|
||||
#.
|
||||
#Maximum length in blocks of polytetrafluoroethylene mechanical belts
|
||||
#Range: > 5
|
||||
polytetrafluoroethyleneMaxBeltLength = 35
|
||||
|
||||
#.
|
||||
#Polybenzimidazole Belt Settings
|
||||
[kinetics.belts.polybenzimidazole]
|
||||
#.
|
||||
#Maximum length in blocks of polybenzimidazole mechanical belts
|
||||
#Range: > 5
|
||||
polybenzimidazoleMaxBeltLength = 40
|
||||
|
||||
[kinetics.stressValues]
|
||||
|
||||
#.
|
||||
#Fine tune the kinetic stats of individual components
|
||||
[kinetics.stressValues.v2]
|
||||
|
||||
#.
|
||||
#.[in Stress Units]Configure the individual stress impact of mechanical blocks. Note that this cost is doubled for every speed increase it receives
|
||||
[kinetics.stressValues.v2.impact]
|
||||
|
||||
[kinetics.stressValues.v2.impact.andesite_alloy]
|
||||
rubber_belt_andesite_alloy = 0.0
|
||||
andesite_alloy_shaft = 0.0
|
||||
andesite_encased_andesite_alloy_shaft = 0.0
|
||||
brass_encased_andesite_alloy_shaft = 0.0
|
||||
andesite_alloy_cogwheel = 0.0
|
||||
large_andesite_alloy_cogwheel = 0.0
|
||||
andesite_encased_andesite_alloy_cogwheel = 0.0
|
||||
andesite_encased_large_andesite_alloy_cogwheel = 0.0
|
||||
brass_encased_andesite_alloy_cogwheel = 0.0
|
||||
brass_encased_large_andesite_alloy_cogwheel = 0.0
|
||||
andesite_alloy_crushing_wheel = 0.5
|
||||
andesite_alloy_encased_fan = 0.5
|
||||
andesite_alloy_gearbox = 0.0
|
||||
andesite_alloy_mechanical_press = 0.5
|
||||
andesite_alloy_mechanical_mixer = 0.5
|
||||
andesite_alloy_millstone = 0.5
|
||||
andesite_alloy_mechanical_saw = 0.5
|
||||
andesite_alloy_mechanical_pump = 0.5
|
||||
|
||||
[kinetics.stressValues.v2.impact.steel]
|
||||
rubber_belt_steel = 0.0
|
||||
steel_shaft = 0.0
|
||||
andesite_encased_steel_shaft = 0.0
|
||||
brass_encased_steel_shaft = 0.0
|
||||
steel_cogwheel = 0.0
|
||||
large_steel_cogwheel = 0.0
|
||||
andesite_encased_steel_cogwheel = 0.0
|
||||
andesite_encased_large_steel_cogwheel = 0.0
|
||||
brass_encased_steel_cogwheel = 0.0
|
||||
brass_encased_large_steel_cogwheel = 0.0
|
||||
steel_crushing_wheel = 1.0
|
||||
steel_encased_fan = 1.0
|
||||
steel_gearbox = 0.0
|
||||
steel_mechanical_press = 1.0
|
||||
steel_mechanical_mixer = 1.0
|
||||
steel_millstone = 1.0
|
||||
steel_mechanical_saw = 1.0
|
||||
steel_mechanical_pump = 1.0
|
||||
tungsten_steel_gearbox = 0.0
|
||||
tungsten_steel_crushing_wheel = 3.0
|
||||
brass_encased_tungsten_steel_shaft = 0.0
|
||||
silicone_rubber_belt_stainless_steel = 0.0
|
||||
andesite_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
andesite_encased_tungsten_steel_cogwheel = 0.0
|
||||
stainless_steel_mechanical_saw = 4.0
|
||||
stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_stainless_steel_shaft = 0.0
|
||||
tungsten_steel_encased_fan = 3.0
|
||||
andesite_encased_large_stainless_steel_cogwheel = 0.0
|
||||
large_tungsten_steel_cogwheel = 0.0
|
||||
stainless_steel_shaft = 0.0
|
||||
tungsten_steel_cogwheel = 0.0
|
||||
stainless_steel_mechanical_press = 4.0
|
||||
large_stainless_steel_cogwheel = 0.0
|
||||
brass_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
stainless_steel_mechanical_pump = 2.0
|
||||
brass_encased_large_stainless_steel_cogwheel = 0.0
|
||||
stainless_steel_encased_fan = 2.0
|
||||
stainless_steel_millstone = 2.0
|
||||
stainless_steel_gearbox = 0.0
|
||||
tungsten_steel_millstone = 3.0
|
||||
brass_encased_stainless_steel_shaft = 0.0
|
||||
tungsten_steel_mechanical_press = 6.0
|
||||
polyethylene_belt_tungsten_steel = 0.0
|
||||
tungsten_steel_shaft = 0.0
|
||||
stainless_steel_mechanical_mixer = 2.0
|
||||
andesite_encased_stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_tungsten_steel_shaft = 0.0
|
||||
tungsten_steel_mechanical_saw = 6.0
|
||||
brass_encased_tungsten_steel_cogwheel = 0.0
|
||||
brass_encased_stainless_steel_cogwheel = 0.0
|
||||
stainless_steel_crushing_wheel = 2.0
|
||||
tungsten_steel_mechanical_mixer = 3.0
|
||||
tungsten_steel_mechanical_pump = 3.0
|
||||
|
||||
[kinetics.stressValues.v2.impact.aluminium]
|
||||
silicone_rubber_belt_aluminium = 0.0
|
||||
aluminium_shaft = 0.0
|
||||
andesite_encased_aluminium_shaft = 0.0
|
||||
brass_encased_aluminium_shaft = 0.0
|
||||
aluminium_cogwheel = 0.0
|
||||
large_aluminium_cogwheel = 0.0
|
||||
andesite_encased_aluminium_cogwheel = 0.0
|
||||
andesite_encased_large_aluminium_cogwheel = 0.0
|
||||
brass_encased_aluminium_cogwheel = 0.0
|
||||
brass_encased_large_aluminium_cogwheel = 0.0
|
||||
aluminium_crushing_wheel = 1.5
|
||||
aluminium_encased_fan = 1.5
|
||||
aluminium_gearbox = 0.0
|
||||
aluminium_mechanical_press = 1.5
|
||||
aluminium_mechanical_mixer = 1.5
|
||||
aluminium_millstone = 1.5
|
||||
aluminium_mechanical_saw = 1.5
|
||||
aluminium_mechanical_pump = 1.5
|
||||
|
||||
[kinetics.stressValues.v2.impact.stainless_steel]
|
||||
silicone_rubber_belt_stainless_steel = 0.0
|
||||
stainless_steel_shaft = 0.0
|
||||
andesite_encased_stainless_steel_shaft = 0.0
|
||||
brass_encased_stainless_steel_shaft = 0.0
|
||||
stainless_steel_cogwheel = 0.0
|
||||
large_stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_stainless_steel_cogwheel = 0.0
|
||||
andesite_encased_large_stainless_steel_cogwheel = 0.0
|
||||
brass_encased_stainless_steel_cogwheel = 0.0
|
||||
brass_encased_large_stainless_steel_cogwheel = 0.0
|
||||
stainless_steel_crushing_wheel = 2.0
|
||||
stainless_steel_encased_fan = 2.0
|
||||
stainless_steel_gearbox = 0.0
|
||||
stainless_steel_mechanical_press = 2.0
|
||||
stainless_steel_mechanical_mixer = 2.0
|
||||
stainless_steel_millstone = 2.0
|
||||
stainless_steel_mechanical_saw = 2.0
|
||||
stainless_steel_mechanical_pump = 2.0
|
||||
|
||||
[kinetics.stressValues.v2.impact.titanium]
|
||||
polyethylene_belt_titanium = 0.0
|
||||
titanium_shaft = 0.0
|
||||
andesite_encased_titanium_shaft = 0.0
|
||||
brass_encased_titanium_shaft = 0.0
|
||||
titanium_cogwheel = 0.0
|
||||
large_titanium_cogwheel = 0.0
|
||||
andesite_encased_titanium_cogwheel = 0.0
|
||||
andesite_encased_large_titanium_cogwheel = 0.0
|
||||
brass_encased_titanium_cogwheel = 0.0
|
||||
brass_encased_large_titanium_cogwheel = 0.0
|
||||
titanium_crushing_wheel = 2.5
|
||||
titanium_encased_fan = 2.5
|
||||
titanium_gearbox = 0.0
|
||||
titanium_mechanical_press = 2.5
|
||||
titanium_mechanical_mixer = 2.5
|
||||
titanium_millstone = 2.5
|
||||
titanium_mechanical_saw = 2.5
|
||||
titanium_mechanical_pump = 2.5
|
||||
|
||||
[kinetics.stressValues.v2.impact.tungsten_steel]
|
||||
polyethylene_belt_tungsten_steel = 0.0
|
||||
tungsten_steel_shaft = 0.0
|
||||
andesite_encased_tungsten_steel_shaft = 0.0
|
||||
brass_encased_tungsten_steel_shaft = 0.0
|
||||
tungsten_steel_cogwheel = 0.0
|
||||
large_tungsten_steel_cogwheel = 0.0
|
||||
andesite_encased_tungsten_steel_cogwheel = 0.0
|
||||
andesite_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
brass_encased_tungsten_steel_cogwheel = 0.0
|
||||
brass_encased_large_tungsten_steel_cogwheel = 0.0
|
||||
tungsten_steel_crushing_wheel = 3.0
|
||||
tungsten_steel_encased_fan = 3.0
|
||||
tungsten_steel_gearbox = 0.0
|
||||
tungsten_steel_mechanical_press = 3.0
|
||||
tungsten_steel_mechanical_mixer = 3.0
|
||||
tungsten_steel_millstone = 3.0
|
||||
tungsten_steel_mechanical_saw = 3.0
|
||||
tungsten_steel_mechanical_pump = 3.0
|
||||
|
||||
[kinetics.stressValues.v2.impact.rhodium_plated_palladium]
|
||||
polytetrafluoroethylene_belt_rhodium_plated_palladium = 0.0
|
||||
rhodium_plated_palladium_shaft = 0.0
|
||||
andesite_encased_rhodium_plated_palladium_shaft = 0.0
|
||||
brass_encased_rhodium_plated_palladium_shaft = 0.0
|
||||
rhodium_plated_palladium_cogwheel = 0.0
|
||||
large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
andesite_encased_rhodium_plated_palladium_cogwheel = 0.0
|
||||
andesite_encased_large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
brass_encased_rhodium_plated_palladium_cogwheel = 0.0
|
||||
brass_encased_large_rhodium_plated_palladium_cogwheel = 0.0
|
||||
rhodium_plated_palladium_crushing_wheel = 3.5
|
||||
rhodium_plated_palladium_encased_fan = 3.5
|
||||
rhodium_plated_palladium_gearbox = 0.0
|
||||
rhodium_plated_palladium_mechanical_press = 3.5
|
||||
rhodium_plated_palladium_mechanical_mixer = 3.5
|
||||
rhodium_plated_palladium_millstone = 3.5
|
||||
rhodium_plated_palladium_mechanical_saw = 3.5
|
||||
rhodium_plated_palladium_mechanical_pump = 3.5
|
||||
|
||||
[kinetics.stressValues.v2.impact.naquadah_alloy]
|
||||
polytetrafluoroethylene_belt_naquadah_alloy = 0.0
|
||||
naquadah_alloy_shaft = 0.0
|
||||
andesite_encased_naquadah_alloy_shaft = 0.0
|
||||
brass_encased_naquadah_alloy_shaft = 0.0
|
||||
naquadah_alloy_cogwheel = 0.0
|
||||
large_naquadah_alloy_cogwheel = 0.0
|
||||
andesite_encased_naquadah_alloy_cogwheel = 0.0
|
||||
andesite_encased_large_naquadah_alloy_cogwheel = 0.0
|
||||
brass_encased_naquadah_alloy_cogwheel = 0.0
|
||||
brass_encased_large_naquadah_alloy_cogwheel = 0.0
|
||||
naquadah_alloy_crushing_wheel = 4.0
|
||||
naquadah_alloy_encased_fan = 4.0
|
||||
naquadah_alloy_gearbox = 0.0
|
||||
naquadah_alloy_mechanical_press = 4.0
|
||||
naquadah_alloy_mechanical_mixer = 4.0
|
||||
naquadah_alloy_millstone = 4.0
|
||||
naquadah_alloy_mechanical_saw = 4.0
|
||||
naquadah_alloy_mechanical_pump = 4.0
|
||||
|
||||
[kinetics.stressValues.v2.impact.darmstadtium]
|
||||
polybenzimidazole_belt_darmstadtium = 0.0
|
||||
darmstadtium_shaft = 0.0
|
||||
andesite_encased_darmstadtium_shaft = 0.0
|
||||
brass_encased_darmstadtium_shaft = 0.0
|
||||
darmstadtium_cogwheel = 0.0
|
||||
large_darmstadtium_cogwheel = 0.0
|
||||
andesite_encased_darmstadtium_cogwheel = 0.0
|
||||
andesite_encased_large_darmstadtium_cogwheel = 0.0
|
||||
brass_encased_darmstadtium_cogwheel = 0.0
|
||||
brass_encased_large_darmstadtium_cogwheel = 0.0
|
||||
darmstadtium_crushing_wheel = 4.5
|
||||
darmstadtium_encased_fan = 4.5
|
||||
darmstadtium_gearbox = 0.0
|
||||
darmstadtium_mechanical_press = 4.5
|
||||
darmstadtium_mechanical_mixer = 4.5
|
||||
darmstadtium_millstone = 4.5
|
||||
darmstadtium_mechanical_saw = 4.5
|
||||
darmstadtium_mechanical_pump = 4.5
|
||||
|
||||
[kinetics.stressValues.v2.impact.neutronium]
|
||||
polybenzimidazole_belt_neutronium = 0.0
|
||||
neutronium_shaft = 0.0
|
||||
andesite_encased_neutronium_shaft = 0.0
|
||||
brass_encased_neutronium_shaft = 0.0
|
||||
neutronium_cogwheel = 0.0
|
||||
large_neutronium_cogwheel = 0.0
|
||||
andesite_encased_neutronium_cogwheel = 0.0
|
||||
andesite_encased_large_neutronium_cogwheel = 0.0
|
||||
brass_encased_neutronium_cogwheel = 0.0
|
||||
brass_encased_large_neutronium_cogwheel = 0.0
|
||||
neutronium_crushing_wheel = 5.0
|
||||
neutronium_encased_fan = 5.6
|
||||
neutronium_gearbox = 0.0
|
||||
neutronium_mechanical_press = 5.0
|
||||
neutronium_mechanical_mixer = 5.0
|
||||
neutronium_millstone = 5.0
|
||||
neutronium_mechanical_saw = 5.0
|
||||
neutronium_mechanical_pump = 5.0
|
||||
|
||||
#.
|
||||
#Fine tune settings related to tiers
|
||||
[kinetics.stressValues.v2.maxCapacity]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Settings related to andesite tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.andesite]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
andesiteMaxCapacity = 32
|
||||
|
||||
#.
|
||||
#Settings related to steel tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.steel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
steelMaxCapacity = 128
|
||||
|
||||
#.
|
||||
#Settings related to aluminium tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.aluminium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
aluminiumMaxCapacity = 512
|
||||
|
||||
#.
|
||||
#Settings related to stainless steel tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.stainlessSteel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
stainlessSteelMaxCapacity = 2048
|
||||
|
||||
#.
|
||||
#Settings related to titanium tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.titanium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
titaniumMaxCapacity = 8192
|
||||
|
||||
#.
|
||||
#Settings related to tungstensteel tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.tungstensteel]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
tungstensteelMaxCapacity = 32768
|
||||
|
||||
#.
|
||||
#Settings related to palladium tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.palladium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
palladiumMaxCapacity = 131072
|
||||
|
||||
#.
|
||||
#Settings related to naquadah tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.naquadah]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
naquadahMaxCapacity = 524288
|
||||
|
||||
#.
|
||||
#Settings related to darmstadtium tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.darmstadtium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
darmstadtiumMaxCapacity = 2097152
|
||||
|
||||
#.
|
||||
#Settings related to neutronium tier machines
|
||||
[kinetics.stressValues.v2.maxCapacity.neutronium]
|
||||
#.
|
||||
#Configure the max stress a kinetic block of this tier can support.
|
||||
#Range: > -2147483648
|
||||
neutroniumMaxCapacity = 8388608
|
||||
|
||||
#.
|
||||
#Fine tune settings related to pumps
|
||||
[kinetics.pumps]
|
||||
|
||||
#.
|
||||
#.
|
||||
#Configure the individual pressure of pumps. Note that pressure is multiplied by the speed of the pump
|
||||
[kinetics.pumps.pressure]
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
andesitePressure = 8.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
steelPressure = 32.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
aluminiumPressure = 128.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
stainlessSteelPressure = 512.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
titaniumPressure = 2048.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
tungstensteelPressure = 8192.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
palladiumPressure = 16384.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
naquadahPressure = 32768.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
darmstadtiumPressure = 131072.0
|
||||
#.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
neutroniumPressure = 524288.0
|
||||
|
||||
|
|
|
|||
|
|
@ -446,3 +446,15 @@
|
|||
#Range: 1 ~ 6
|
||||
slotsInRow = 4
|
||||
|
||||
#Alchemy Upgrade Settings
|
||||
[server.alchemyUpgrade]
|
||||
#Number of Alchemy Upgrade's filter slots
|
||||
#Range: 1 ~ 20
|
||||
filterSlots = 4
|
||||
|
||||
#Advanced Alchemy Upgrade Settings
|
||||
[server.advancedAlchemyUpgrade]
|
||||
#Number of Advanced Alchemy Upgrade's filter slots
|
||||
#Range: 1 ~ 20
|
||||
filterSlots = 8
|
||||
|
||||
|
|
|
|||
6
kubejs/assets/ad_astra/models/item/aeronos_stem.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ad_astra:item/aeronos_stem"
|
||||
}
|
||||
}
|
||||
6
kubejs/assets/ad_astra/models/item/glacian_log.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ad_astra:item/glacian_log"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ad_astra:item/glacian_stripped"
|
||||
}
|
||||
}
|
||||
6
kubejs/assets/ad_astra/models/item/strophar_stem.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "ad_astra:item/strophar_stem"
|
||||
}
|
||||
}
|
||||
BIN
kubejs/assets/ad_astra/textures/item/aeronos_stem.png
Normal file
|
After Width: | Height: | Size: 451 B |
BIN
kubejs/assets/ad_astra/textures/item/glacian_log.png
Normal file
|
After Width: | Height: | Size: 434 B |
BIN
kubejs/assets/ad_astra/textures/item/glacian_stripped.png
Normal file
|
After Width: | Height: | Size: 373 B |
BIN
kubejs/assets/ad_astra/textures/item/strophar_stem.png
Normal file
|
After Width: | Height: | Size: 482 B |
146
kubejs/assets/create/models/block/mechanical_pump/block.json
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "middle",
|
||||
"from": [4, 4, 4],
|
||||
"to": [12, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"},
|
||||
"east": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"},
|
||||
"south": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"},
|
||||
"west": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"},
|
||||
"up": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"},
|
||||
"down": {"uv": [0, 6.5, 4, 2.5], "rotation": 90, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "back",
|
||||
"from": [2, 0, 2],
|
||||
"to": [14, 5, 14],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"},
|
||||
"east": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"},
|
||||
"south": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"},
|
||||
"west": {"uv": [13.5, 2, 16, 8], "rotation": 270, "texture": "#2"},
|
||||
"up": {"uv": [0, 0, 12, 12], "rotation": 180, "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 12, 12], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "front",
|
||||
"from": [3, 11, 3],
|
||||
"to": [13, 16, 13],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [8.33333, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"},
|
||||
"east": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"},
|
||||
"south": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"},
|
||||
"west": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 90, "texture": "#2"},
|
||||
"up": {"uv": [11, 11, 16, 16], "texture": "#2"},
|
||||
"down": {"uv": [6, 11, 11, 16], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [5.85355, 13.25, 1.75],
|
||||
"to": [9.85355, 15.25, 13.75],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [8.35355, 13.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 0, 12, 2], "texture": "#4"},
|
||||
"east": {"uv": [15, 0, 16, 2], "texture": "#4"},
|
||||
"south": {"uv": [12, 0, 16, 2], "texture": "#4"},
|
||||
"west": {"uv": [12, 0, 13, 2], "texture": "#4"},
|
||||
"up": {"uv": [12, 0, 16, 1], "texture": "#4"},
|
||||
"down": {"uv": [12, 1, 16, 2], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [7.85355, 11.25, 1.75],
|
||||
"to": [9.85355, 13.25, 13.75],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [8.35355, 13.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 2, 14, 4], "texture": "#4"},
|
||||
"east": {"uv": [15, 2, 16, 4], "texture": "#4"},
|
||||
"south": {"uv": [14, 2, 16, 4], "texture": "#4"},
|
||||
"west": {"uv": [14, 2, 15, 4], "texture": "#4"},
|
||||
"down": {"uv": [14, 3, 16, 4], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.35355, 10.75, 7.75],
|
||||
"to": [14.35355, 12.75, 9.75],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [8.35355, 13.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [14, 2, 15, 4], "texture": "#4"},
|
||||
"east": {"uv": [16, 2, 14, 4], "texture": "#4"},
|
||||
"south": {"uv": [15, 2, 16, 4], "texture": "#4"},
|
||||
"west": {"uv": [14, 2, 16, 4], "texture": "#4"},
|
||||
"down": {"uv": [14, 3, 16, 4], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [2.35355, 12.75, 5.75],
|
||||
"to": [14.35355, 14.75, 9.75],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [8.35355, 13.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 13, 2], "texture": "#4"},
|
||||
"east": {"uv": [16, 0, 12, 2], "texture": "#4"},
|
||||
"south": {"uv": [15, 0, 16, 2], "texture": "#4"},
|
||||
"west": {"uv": [12, 0, 16, 2], "texture": "#4"},
|
||||
"up": {"uv": [12, 0, 16, 1], "rotation": 90, "texture": "#4"},
|
||||
"down": {"uv": [12, 1, 16, 2], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, 225, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "pump",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2]
|
||||
},
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6
|
||||
]
|
||||
}
|
||||
123
kubejs/assets/create/models/block/mechanical_pump/cog.json
Normal file
|
|
@ -0,0 +1,123 @@
|
|||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"texture_size": [32, 32],
|
||||
"textures": {
|
||||
"5": "create:block/millstone",
|
||||
"particle": "create:block/palettes/stone_types/cut/andesite_cut"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Gear6",
|
||||
"from": [6.5, -1, 5],
|
||||
"to": [9.5, 17, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"west": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"},
|
||||
"up": {"uv": [9, 10, 10.5, 13], "rotation": 180, "texture": "#5"},
|
||||
"down": {"uv": [9, 10, 10.5, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear7",
|
||||
"from": [6.5, -1, 5],
|
||||
"to": [9.5, 17, 11],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"west": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"},
|
||||
"up": {"uv": [9, 10, 10.5, 13], "rotation": 180, "texture": "#5"},
|
||||
"down": {"uv": [9, 10, 10.5, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear8",
|
||||
"from": [-1, 6.5, 5],
|
||||
"to": [17, 9.5, 11],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [8, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"east": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"west": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"},
|
||||
"up": {"uv": [0, 10, 9, 13], "rotation": 180, "texture": "#5"},
|
||||
"down": {"uv": [0, 10, 9, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear8",
|
||||
"from": [-1, 6.5, 5],
|
||||
"to": [17, 9.5, 11],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6.5]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"east": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"west": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"},
|
||||
"up": {"uv": [0, 10, 9, 13], "rotation": 180, "texture": "#5"},
|
||||
"down": {"uv": [0, 10, 9, 13], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "GearCaseInner",
|
||||
"from": [2, 2, 5.5],
|
||||
"to": [14, 14, 10.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 7]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 6, 6], "rotation": 180, "texture": "#5"},
|
||||
"east": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 6, 6], "texture": "#5"},
|
||||
"west": {"uv": [0, 6, 6, 8.5], "rotation": 90, "texture": "#5"},
|
||||
"up": {"uv": [0, 6, 6, 8.5], "rotation": 180, "texture": "#5"},
|
||||
"down": {"uv": [0, 6, 6, 8.5], "texture": "#5"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, -149, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, -149, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, -55, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, -55, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 1, 1.25],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 45, 0],
|
||||
"translation": [2.5, -0.5, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [0, 180, 0],
|
||||
"translation": [0, 1.75, -4.5],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "cogwheel",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
225
kubejs/assets/create/models/block/mechanical_pump/item.json
Normal file
|
|
@ -0,0 +1,225 @@
|
|||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"5": "create:block/millstone",
|
||||
"particle": "create:block/pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Gear5",
|
||||
"from": [5.5, 7, -1],
|
||||
"to": [11.5, 10, 17],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"south": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"west": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"up": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"down": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear6",
|
||||
"from": [5.5, 7, -1],
|
||||
"to": [11.5, 10, 17],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [9, 10, 10.5, 13], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"south": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"west": {"uv": [0, 8.5, 9, 10], "texture": "#5"},
|
||||
"up": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"down": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear7",
|
||||
"from": [5.5, -0.5, 6.5],
|
||||
"to": [11.5, 17.5, 9.5],
|
||||
"rotation": {"angle": -45, "axis": "x", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"south": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"west": {"uv": [0, 8.5, 9, 10], "rotation": 270, "texture": "#5"},
|
||||
"up": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"down": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Gear7",
|
||||
"from": [5.5, -0.5, 6.5],
|
||||
"to": [11.5, 17.5, 9.5],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 10, 9, 13], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 8.5, 9, 10], "rotation": 90, "texture": "#5"},
|
||||
"south": {"uv": [0, 10, 9, 13], "rotation": 270, "texture": "#5"},
|
||||
"west": {"uv": [0, 8.5, 9, 10], "rotation": 270, "texture": "#5"},
|
||||
"up": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"},
|
||||
"down": {"uv": [9, 10, 10.5, 13], "rotation": 270, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "GearCaseInner",
|
||||
"from": [6, 2.5, 2],
|
||||
"to": [11, 14.5, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 6, 6, 8.5], "rotation": 90, "texture": "#5"},
|
||||
"east": {"uv": [0, 0, 6, 6], "rotation": 270, "texture": "#5"},
|
||||
"south": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 6, 6], "rotation": 270, "texture": "#5"},
|
||||
"up": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"},
|
||||
"down": {"uv": [0, 6, 6, 8.5], "rotation": 270, "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "middle",
|
||||
"from": [4.5, 4.5, 4],
|
||||
"to": [12.5, 12.5, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 8.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"},
|
||||
"east": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"},
|
||||
"south": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"},
|
||||
"west": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"},
|
||||
"up": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"},
|
||||
"down": {"uv": [11.5, 15.5, 15.5, 11.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "front",
|
||||
"from": [0.5, 3.5, 3],
|
||||
"to": [5.5, 13.5, 13],
|
||||
"rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [10.5, 2.5, 13, 7.5], "rotation": 180, "texture": "#2"},
|
||||
"east": {"uv": [6, 11, 11, 16], "rotation": 270, "texture": "#2"},
|
||||
"south": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"},
|
||||
"west": {"uv": [11, 11, 16, 16], "rotation": 270, "texture": "#2"},
|
||||
"up": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"},
|
||||
"down": {"uv": [10.5, 2.5, 13, 7.5], "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "back",
|
||||
"from": [11.5, 2.5, 2],
|
||||
"to": [16.5, 14.5, 14],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8.5, 11.5, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [13.5, 2, 16, 8], "texture": "#2"},
|
||||
"east": {"uv": [0, 0, 12, 12], "rotation": 270, "texture": "#4"},
|
||||
"south": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"},
|
||||
"west": {"uv": [0, 0, 12, 12], "rotation": 90, "texture": "#4"},
|
||||
"up": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"},
|
||||
"down": {"uv": [13.5, 2, 16, 8], "rotation": 180, "texture": "#2"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.70355, 6.15, 2],
|
||||
"to": [3.70355, 10.15, 14],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [3.35355, 8.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 0, 12, 2], "rotation": 90, "texture": "#4"},
|
||||
"east": {"uv": [12, 1, 16, 2], "rotation": 270, "texture": "#4"},
|
||||
"south": {"uv": [12, 0, 16, 2], "rotation": 270, "texture": "#4"},
|
||||
"west": {"uv": [12, 0, 16, 1], "rotation": 270, "texture": "#4"},
|
||||
"up": {"uv": [15, 0, 16, 2], "rotation": 270, "texture": "#4"},
|
||||
"down": {"uv": [12, 0, 13, 2], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.70355, 8.15, 2],
|
||||
"to": [5.70355, 10.15, 14],
|
||||
"rotation": {"angle": 45, "axis": "z", "origin": [3.35355, 8.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [16, 2, 14, 4], "rotation": 90, "texture": "#4"},
|
||||
"east": {"uv": [14, 3, 16, 4], "rotation": 270, "texture": "#4"},
|
||||
"south": {"uv": [14, 2, 16, 4], "rotation": 270, "texture": "#4"},
|
||||
"up": {"uv": [15, 2, 16, 4], "rotation": 270, "texture": "#4"},
|
||||
"down": {"uv": [14, 2, 15, 4], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3.85355, 2.5, 7.75],
|
||||
"to": [5.85355, 14.5, 9.75],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [3.35355, 8.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [14, 2, 15, 4], "rotation": 90, "texture": "#4"},
|
||||
"east": {"uv": [14, 3, 16, 4], "rotation": 180, "texture": "#4"},
|
||||
"south": {"uv": [15, 2, 16, 4], "rotation": 270, "texture": "#4"},
|
||||
"up": {"uv": [16, 2, 14, 4], "rotation": 270, "texture": "#4"},
|
||||
"down": {"uv": [14, 2, 16, 4], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [1.85355, 2.5, 5.75],
|
||||
"to": [3.85355, 14.5, 9.75],
|
||||
"rotation": {"angle": -45, "axis": "y", "origin": [3.35355, 8.25, 7.75]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 13, 2], "rotation": 90, "texture": "#4"},
|
||||
"east": {"uv": [12, 1, 16, 2], "rotation": 180, "texture": "#4"},
|
||||
"south": {"uv": [15, 0, 16, 2], "rotation": 270, "texture": "#4"},
|
||||
"west": {"uv": [12, 0, 16, 1], "texture": "#4"},
|
||||
"up": {"uv": [16, 0, 12, 2], "rotation": 270, "texture": "#4"},
|
||||
"down": {"uv": [12, 0, 16, 2], "rotation": 270, "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"thirdperson_righthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"thirdperson_lefthand": {
|
||||
"rotation": [75, 45, 0],
|
||||
"translation": [0, 2.5, 0],
|
||||
"scale": [0.375, 0.375, 0.375]
|
||||
},
|
||||
"firstperson_righthand": {
|
||||
"rotation": [0, 45, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"firstperson_lefthand": {
|
||||
"rotation": [0, 225, 0],
|
||||
"scale": [0.4, 0.4, 0.4]
|
||||
},
|
||||
"ground": {
|
||||
"translation": [0, 3, 0],
|
||||
"scale": [0.25, 0.25, 0.25]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
},
|
||||
"groups": [
|
||||
{
|
||||
"name": "cogwheel",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "pump",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [5, 6, 7]
|
||||
},
|
||||
{
|
||||
"name": "Arrow",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [8, 9, 10, 11]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
"block.gtceu.greenhouse": "Greenhouse",
|
||||
"block.gtceu.steam_bloomery": "Steam Bloomery",
|
||||
"block.gtceu.large_solar_panel": "Large Solar Panel",
|
||||
"block.gtceu.gas_pressurizer": "Gas Pressurizer",
|
||||
"block.gtceu.copper_crate": "Copper Crate",
|
||||
"block.gtceu.copper_drum": "Copper Drum",
|
||||
"block.gtceu.black_bronze_crate": "Black Bronze Crate",
|
||||
|
|
@ -21,6 +22,7 @@
|
|||
"gtceu.food_oven": "Food Oven",
|
||||
"gtceu.food_processor": "Food Processor",
|
||||
"gtceu.large_solar_panel": "Large Solar Panel",
|
||||
"gtceu.gas_pressurizer": "Gas Pressurizer",
|
||||
"item.gtceu.tiny_wood_dust": "Tiny Pile of Softwood Pulp",
|
||||
"item.gtceu.small_wood_dust": "Small Pile of Softwood Pulp",
|
||||
"item.gtceu.wood_dust": "Softwood Pulp",
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.",
|
||||
"entity.kaolinclayze.tfc": "Kaolin Klayze",
|
||||
"entity.terramod.tfc": "Kaolin Klayze",
|
||||
"entity.kaolinclayze.golem_2": "Graphite Glayze",
|
||||
"item.kaolinclayze.tfc_spawn_egg": "Kaolin Klayze Spawn Egg",
|
||||
"item.kaolinclayze.golem_2_spawn_egg": "Graphite Glayze Spawn Egg",
|
||||
"item.terramod.tfc_spawn_egg": "Kaolin Klayze Spawn Egg"
|
||||
}
|
||||