2
.github/ISSUE_TEMPLATE/BUG_REPORT.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: "Bug report"
|
||||
name: "[🐛]: Bug report"
|
||||
description: "Report a bug where something is not working as expected, which does not crash the game."
|
||||
title: "[🐛]: "
|
||||
labels: [ "Status: Backlog" ]
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/CRASH_REPORT.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: "Crash Report"
|
||||
name: "[💥]: Crash Report"
|
||||
description: "Report a bug that crashes the game or prevents startup."
|
||||
title: "[💥]: "
|
||||
labels: [ "Status: Backlog" ]
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/ENHANCEMENT.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: "Enhancement"
|
||||
name: "[🪡]: Enhancement"
|
||||
description: "Provide supporting details for a feature in development"
|
||||
title: "[🪡]: "
|
||||
labels: [ "Status: Backlog" ]
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: "Feature request"
|
||||
name: "[🪶]: Feature request"
|
||||
description: "Request a new feature or a change to an existing one."
|
||||
title: "[🪶]: "
|
||||
labels: [ "Status: Backlog" ]
|
||||
|
||||
2
.github/ISSUE_TEMPLATE/QUESTION.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: "Ask a Question"
|
||||
name: "[❓]: Ask a Question"
|
||||
description: "Ask a question regarding this project."
|
||||
title: "[❓]: "
|
||||
labels: [ "Status: Backlog" ]
|
||||
|
||||
2
.github/README.md
vendored
@@ -56,7 +56,7 @@ This modpack is still a work in progress, and is constantly being updated. In it
|
||||
|
||||
Interested in contributing? For detailed setup instructions, coding standards, and guidelines, please read [this](CONTRIBUTING.md).
|
||||
|
||||
Want to help translate? Please read [this](../kubejs/README%20IF%20TRANSLATING.md) instead.
|
||||
Want to help translate? Please read [this](../kubejs/README_IF_TRANSLATING.md) instead.
|
||||
|
||||
---
|
||||
|
||||
|
||||
22
.github/workflows/build.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: 📦 Checkout
|
||||
uses: actions/checkout@v4.2.2
|
||||
uses: actions/checkout@v5.0.0
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
@@ -215,7 +215,7 @@ jobs:
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.2.2
|
||||
uses: actions/checkout@v5.0.0
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
@@ -252,7 +252,7 @@ jobs:
|
||||
|
||||
- name: 🔍 Create Pull Request if tag not found
|
||||
if: ${{ steps.check_existing_pr.outputs.exists == 'false' }}
|
||||
uses: devops-infra/action-pull-request@v0.6.0
|
||||
uses: devops-infra/action-pull-request@v0.6.1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
source_branch: dev
|
||||
@@ -275,7 +275,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.2.2
|
||||
uses: actions/checkout@v5.0.0
|
||||
|
||||
- name: 🔄 Replace strings
|
||||
shell: bash
|
||||
@@ -287,7 +287,7 @@ jobs:
|
||||
sed -i -e "s/DEV/${VERSION}/g" config/fancymenu/customization/gui_main_menu.txt
|
||||
|
||||
- name: 📝 Cache pakku
|
||||
uses: actions/cache@v4.2.3
|
||||
uses: actions/cache@v4.2.4
|
||||
id: cache
|
||||
with:
|
||||
path: build/.cache
|
||||
@@ -341,7 +341,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4.2.2
|
||||
uses: actions/checkout@v5.0.0
|
||||
|
||||
- name: 🔄 Replace strings
|
||||
shell: bash
|
||||
@@ -354,7 +354,7 @@ jobs:
|
||||
sed -i -e "s/DEV/${VERSION}/g" .pakku/multimc-overrides/instance.cfg
|
||||
|
||||
- name: 📝 Cache pakku
|
||||
uses: actions/cache@v4.2.3
|
||||
uses: actions/cache@v4.2.4
|
||||
id: cache
|
||||
with:
|
||||
path: build/.cache
|
||||
@@ -396,10 +396,10 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: 📦 Checkout
|
||||
uses: actions/checkout@v4.2.2
|
||||
uses: actions/checkout@v5.0.0
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
uses: actions/download-artifact@v5.0.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
@@ -473,7 +473,7 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
uses: actions/download-artifact@v5.0.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
@@ -523,7 +523,7 @@ jobs:
|
||||
fi
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
uses: actions/download-artifact@v5.0.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
|
||||
50
CHANGELOG.md
@@ -4,6 +4,56 @@
|
||||
### Changes
|
||||
### Bug fixes
|
||||
|
||||
## [0.10.10] - 23-08-2025
|
||||
### Major changes
|
||||
- Complete rework of prospector's picks. (#1594) @Redeix
|
||||
- Removed the mod that was causing placed entities to sometimes not spawn
|
||||
- Removed energy P2P (#1661) @TomPlop @BlueBoat29
|
||||
- Removed GT bedrock miners, replaced with a new system for Moon infinites (#1569) @TomPlop
|
||||
- Buffed Large Solar Panel MK I so now it has a consistent EV-generating recipe, but halved the output of ad astra solar panels on the moon @TomPlop @Pyritie
|
||||
### Changes
|
||||
- Rebalance Large Solar Array to make Mk2 circuit 2 viable, and buffed to LSA Mk3 circuit 2 (#1591) @TomPlop
|
||||
- Added mechanical press recipes to weld weak steels @Pyritie
|
||||
- Added backpacks, lunchboxes, and vessels to the toolbelt's blacklist @Pyritie
|
||||
- Moon rabbits can eat chorus fruit now @Pyritie
|
||||
- Added electric greenhouse recipes for mushrooms and bamboo (#1610) @Pyritie
|
||||
- Increased amount of saplings that the electric greenhouse returns to be more in line with create-based tree farms @Pyritie
|
||||
- Firmalife mixing bowls can now be placed on tool racks (#1623) @Pyritie
|
||||
- Fixed recipe for pyroxenite button (again) (#1625) @Pyritie
|
||||
- Refactored locometal recipes to use stonecutters, metal plated locometal is now also much cheaper (#1624) @Pyritie
|
||||
- Increased the air capacity of space suits by 250% @Pyritie
|
||||
- Converted custom tooltips to lang strings for translations (#1663) @Redeix
|
||||
- Fixed grammar on death messages and added some new ones (#1642) @vdegans
|
||||
- Added IV fridge, and IV-UV aqueous accumulator, food processor, food oven, and gas compressor machines @Pyritie
|
||||
- Added machine recipes for the wrought iron grill @Pyritie
|
||||
- Added recipes for redyeing/bleaching shipping containers (#1631) @Pyritie
|
||||
- Adjusted recipes for ME Interface and Pattern Provider for consistency (#1569) @TomPlop
|
||||
- Changed the cost of the ME Quantum Tunnel (#1569) @TomPlop
|
||||
- Alabaster is now renewable via rock breaker @gustovafing
|
||||
- Added a new ore vein to all dimensions for gypsum, calcite, borax, and fuller's earth @Pyritie
|
||||
- Added some more moon ore veins for copper, tin, gold, aluminium.. nothing exciting @Pyritie
|
||||
- Changed the recipe for the infinity construction wand @Pyritie
|
||||
- Rebalanced the liquid blaze burner fuel recipes to be more in-line with GregTech generation @Pyritie
|
||||
- Changed the recipes for the circuit boards required for the electron tube and vacuum tube, and phenolic circuit board @TomPlop
|
||||
### Bug fixes
|
||||
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
|
||||
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
|
||||
- Fixed duplicate mixer recipes for rose gold and sterling silver @Pyritie
|
||||
- Added missing rose gold + sterling silver alloy smelter recipes (#1664) @Redeix
|
||||
- Fixed mechanical mixers requiring an alloy that needed that tier of mixer @Pyritie
|
||||
- Finally fixed all the issues with upgrading the toolbelt - now you can safely dye and undye, upgrade with and without tools inside it, etc (#368) @Pyritie
|
||||
- Fixed a dupe with certus quartz @Pyritie
|
||||
- Moved the golden apple recipe over to the food processor so it respects food expiry data @Pyritie
|
||||
- Removed some remaining swine-steel crafting recipes @Pyritie
|
||||
- Added missing hoe/scythe mineable tags from custom crops (#1622) @Pyritie
|
||||
- Fixed some (but not all) model issues with the reflector block (#1664) @Redeix
|
||||
- Fixed food processor outputs not stacking @gustovafing
|
||||
- Fixed using the grappling hook on a ladder killing you (#106) @Zippity
|
||||
- Added more missing food processor recipes (#1632, #1638) @Pyritie
|
||||
- Fixed a few stuck quests (#1667, #1666) @Wicpar
|
||||
- Fixed inconsistent quern and macerator recipes for small tfc ores (#1672) @Pyritie
|
||||
- Fixed recipe conflict with ceramic bricks and create deco colored bricks @Pyritie
|
||||
|
||||
## [0.10.9] - 10-08-2025
|
||||
### Changes
|
||||
- Heavily reduced how much power the electric refrigerators use @Pyritie
|
||||
|
||||
827
LICENSE
@@ -1,674 +1,165 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
@@ -76,7 +76,7 @@
|
||||
"CrystalResonanceGeneratorRate_comment": "How much energy a crystal resonance generator generates per tick.",
|
||||
"CrystalResonanceGeneratorRate": 20.0,
|
||||
"p2pTunnelEnergyTax_comment": "The cost to transport energy through an energy P2P tunnel expressed as a factor of the transported energy.",
|
||||
"p2pTunnelEnergyTax": 0.025,
|
||||
"p2pTunnelEnergyTax": 0.999,
|
||||
"p2pTunnelTransportTax_comment": "The cost to transport items/fluids/etc. through P2P tunnels, expressed in AE energy per equivalent I/O bus operation for the transported object type (i.e. items\u003dper 1 item, fluids\u003dper 125mb).",
|
||||
"p2pTunnelTransportTax": 0.025
|
||||
},
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
[whitelist]
|
||||
#Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config
|
||||
#Entities that CAN be picked up (useWhitelistEntities must be true)
|
||||
allowedEntities = ["tfc:turkey", "tfc:isopod", "tfc:lobster", "tfc:frog", "tfc:penguin", "tfc:turtle", "tfc:horseshoe_crab", "tfc:crayfish", "tfc:grouse", "tfc:pheasant", "tfc:peafowl", "tfc:rat", "tfc:chicken", "tfc:duck", "tfc:quail", "tfc:rabbit"]
|
||||
allowedEntities = ["tfc:turkey", "tfc:isopod", "tfc:lobster", "tfc:frog", "tfc:penguin", "tfc:turtle", "tfc:horseshoe_crab", "tfc:crayfish", "tfc:grouse", "tfc:pheasant", "tfc:peafowl", "tfc:rat", "tfc:chicken", "tfc:duck", "tfc:quail", "tfc:rabbit", "tfg:moon_rabbit", "species:birt"]
|
||||
#Blocks that CAN be picked up (useWhitelistBlocks must be true)
|
||||
allowedBlocks = ["framedblocks:framed_chest", "tfc:wood/chest/*", "tfc:wood/trapped_chest/*", "afc:wood/chest/*", "afc:wood/trapped_chest/*", "#forge:chests/wooden"]
|
||||
#Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true)
|
||||
|
||||
@@ -1,15 +1,36 @@
|
||||
{
|
||||
"messages": {
|
||||
"deathMessages": [
|
||||
"Do you really want to respawn? think of it again.",
|
||||
"Life is hard. Deal with it!",
|
||||
"You are dead ... wait you already know that.",
|
||||
"Did I let the stove on...?",
|
||||
"Should have shot back first...",
|
||||
"Do you really want to respawn?",
|
||||
"You are dead... wait you already knew that.",
|
||||
"Did I leave the stove on...?",
|
||||
"Yep, that\u0027s messed up...",
|
||||
"Rage incomming!",
|
||||
"Rage incoming!",
|
||||
"I think you dropped something.",
|
||||
"Time for a break?"
|
||||
"Time for a break?",
|
||||
"Should have seen that coming.",
|
||||
"Progress denied.",
|
||||
"Another fine day for entropy.",
|
||||
"Research complete: mortality confirmed.",
|
||||
"Civilization setback detected.",
|
||||
"The factory must grow.",
|
||||
"Another sample in the archaeology record.",
|
||||
"You\u0027ve been recycled by nature.",
|
||||
"Respawns remaining: -1",
|
||||
"Welcome back to square one.",
|
||||
"A fine addition to the fossil record.",
|
||||
"Even bronze can\u0027t save you from that.",
|
||||
"Turns out you are biodegradable.",
|
||||
"Who knew survival was this complicated?",
|
||||
"Respawn pending...",
|
||||
"Sometimes progress means starting over.",
|
||||
"A slight delay in evolution.",
|
||||
"Respawn issued, warranty void.",
|
||||
"Trial run concluded.",
|
||||
"You\u0027ve been scheduled for maintenance.",
|
||||
"Progress report: terminated.",
|
||||
"Nature always collects its debts.",
|
||||
"A minor inconvenience in the grand scheme of things."
|
||||
],
|
||||
"enabled": true
|
||||
}
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
# FTBQuestOptimizer config file
|
||||
# If you're a modpack maker, edit defaultconfigs/ftbqoptimizer-server.snbt instead
|
||||
|
||||
{
|
||||
# Enable optimization of quest completion detection
|
||||
# Default: true
|
||||
detect_optimization: true
|
||||
|
||||
# Number of tick skips for checking player inventories, 0 to disable tick skipping. Experiment and find the best value for you!
|
||||
# Default: 5
|
||||
# Range: 0 ~ 100
|
||||
skip_ticks_amount: 5
|
||||
}
|
||||
@@ -1233,12 +1233,15 @@
|
||||
}
|
||||
{
|
||||
dependencies: ["378E2294EFD85C65"]
|
||||
description: ["{quests.ae2.programmed_circuit_card.desc}"]
|
||||
id: "51B34B3E51B6ECDD"
|
||||
subtitle: "{quests.ae2.programmed_circuit_card.subtitle}"
|
||||
tasks: [{
|
||||
id: "295980339E1FE027"
|
||||
item: "pccard:card_programmed_circuit"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.ae2.programmed_circuit_card.title}"
|
||||
x: 1.0d
|
||||
y: -10.5d
|
||||
}
|
||||
|
||||
@@ -525,11 +525,18 @@
|
||||
id: "42FB276AB16258D9"
|
||||
size: 1.0d
|
||||
subtitle: "{quests.high_voltage.fluorine.subtitle}"
|
||||
tasks: [{
|
||||
id: "4EF4F33BEB714485"
|
||||
item: "gtceu:fluorine_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "4EF4F33BEB714485"
|
||||
item: "gtceu:fluorine_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "7245625D6C687E3A"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.fluorine.title}"
|
||||
x: 1.0d
|
||||
y: 4.5d
|
||||
@@ -561,21 +568,29 @@
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.ptfe.title"
|
||||
title: "{quests.high_voltage.ptfe.title}"
|
||||
x: 0.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["5BACED5AE350EAB1"]
|
||||
description: ["{quests.high_voltage.nitrobenzene.desc}"]
|
||||
icon: "gtceu:nitrobenzene_bucket"
|
||||
id: "56E7A3A0CC690C8A"
|
||||
shape: "square"
|
||||
size: 1.0d
|
||||
tasks: [{
|
||||
id: "33CF24B0A19D2F25"
|
||||
item: "gtceu:nitrobenzene_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "33CF24B0A19D2F25"
|
||||
item: "gtceu:nitrobenzene_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "70D29F223E0CC5CB"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.nitrobenzene.title}"
|
||||
x: -1.0d
|
||||
y: 9.5d
|
||||
@@ -626,28 +641,18 @@
|
||||
icon: "minecraft:tnt"
|
||||
id: "2B7B214EDE0B45A2"
|
||||
size: 1.0d
|
||||
tasks: [
|
||||
{
|
||||
id: "04BF6A36E965C348"
|
||||
item: "minecraft:tnt"
|
||||
type: "item"
|
||||
tasks: [{
|
||||
id: "69AFBED9D1866F49"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(minecraft:tnt)item(gtceu:industrial_tnt)item(gtceu:powderbarrel)item(gtceu:dynamite))"
|
||||
}
|
||||
}
|
||||
{
|
||||
id: "162CDC2567F6D6A8"
|
||||
item: "gtceu:industrial_tnt"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "4CFB597542DD0194"
|
||||
item: "gtceu:dynamite"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0BF4703D1DBAA5B7"
|
||||
item: "gtceu:powderbarrel"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.tnt.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.tnt.title}"
|
||||
x: 3.5d
|
||||
y: 3.0d
|
||||
@@ -733,11 +738,18 @@
|
||||
id: "5BACED5AE350EAB1"
|
||||
size: 1.0d
|
||||
subtitle: "{quests.high_voltage.nitric_acid.subtitle}"
|
||||
tasks: [{
|
||||
id: "5F8F684990622DE1"
|
||||
item: "gtceu:nitric_acid_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "5F8F684990622DE1"
|
||||
item: "gtceu:nitric_acid_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "24520333587F2436"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.nitric_acid.title}"
|
||||
x: 0.0d
|
||||
y: 9.5d
|
||||
@@ -745,15 +757,23 @@
|
||||
{
|
||||
dependencies: ["5BACED5AE350EAB1"]
|
||||
description: ["{quests.high_voltage.cetane_diesel.desc}"]
|
||||
icon: "gtceu:cetane_boosted_diesel_bucket"
|
||||
id: "04F6E968CEEC3D49"
|
||||
shape: "square"
|
||||
size: 1.0d
|
||||
subtitle: "{quests.high_voltage.cetane_diesel.subtitle}"
|
||||
tasks: [{
|
||||
id: "51D904AA29256F8D"
|
||||
item: "gtceu:cetane_boosted_diesel_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "51D904AA29256F8D"
|
||||
item: "gtceu:cetane_boosted_diesel_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6BFCFA5257BE071F"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.cetane_diesel.title}"
|
||||
x: 1.0d
|
||||
y: 9.5d
|
||||
@@ -841,11 +861,18 @@
|
||||
icon: "gtceu:ammonia_bucket"
|
||||
id: "4343746E706264E6"
|
||||
size: 1.0d
|
||||
tasks: [{
|
||||
id: "1C3EBA2535471DB6"
|
||||
item: "gtceu:ammonia_bucket"
|
||||
type: "item"
|
||||
}]
|
||||
tasks: [
|
||||
{
|
||||
id: "1C3EBA2535471DB6"
|
||||
item: "gtceu:ammonia_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6445F5DC9728583A"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.ammonia.title}"
|
||||
x: -3.0d
|
||||
y: 6.0d
|
||||
@@ -983,6 +1010,8 @@
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.space_alloy.desc.2}"
|
||||
]
|
||||
hide_details_until_startable: false
|
||||
icon: "gtceu:rocket_alloy_t1_ingot"
|
||||
id: "56D337E264A4154F"
|
||||
subtitle: "{quests.high_voltage.space_alloy.subtitle}"
|
||||
tasks: [
|
||||
@@ -1209,23 +1238,6 @@
|
||||
x: 0.0d
|
||||
y: 11.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["14D277A164202FF8"]
|
||||
description: [
|
||||
"{quests.high_voltage.bedrock_miner.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.high_voltage.bedrock_miner.desc.2}"
|
||||
]
|
||||
id: "2878C147D273F774"
|
||||
subtitle: "{quests.high_voltage.bedrock_miner.subtitle}"
|
||||
tasks: [{
|
||||
id: "55981710612D21D7"
|
||||
item: "gtceu:mv_bedrock_ore_miner"
|
||||
type: "item"
|
||||
}]
|
||||
x: 2.5d
|
||||
y: -10.5d
|
||||
}
|
||||
{
|
||||
description: ["{quests.high_voltage.kaolinite_powder.desc}"]
|
||||
disable_toast: true
|
||||
@@ -1241,6 +1253,304 @@
|
||||
x: 6.0d
|
||||
y: 3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["3FBDC8552F7D8008"]
|
||||
description: ["{quests.high_voltage.gun.desc}"]
|
||||
id: "74C6DD5F67B1731F"
|
||||
optional: true
|
||||
shape: "heart"
|
||||
subtitle: "{quests.high_voltage.gun.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
disable_toast: true
|
||||
id: "00B3B5D0D419F8E9"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "item(tacz:modern_kinetic_gun)"
|
||||
}
|
||||
}
|
||||
match_nbt: false
|
||||
title: "{quests.high_voltage.gun.task1}"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "7485BE99651C8334"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(tfg:absorption_salvo)item(tfg:resistance_salvo)item(tfg:instant_health_salvo)item(tfg:regeneration_tablet)item(tfg:speed_tablet)item(tfcagedalcohol:bucket/aged_beer)item(tfcagedalcohol:bucket/aged_vodka)item(tfcagedalcohol:bucket/aged_sake)item(tfcagedalcohol:bucket/aged_rum))"
|
||||
}
|
||||
}
|
||||
optional_task: true
|
||||
title: "{quests.high_voltage.gun.task2}"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "2B1D15C7E99C9DDC"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:food": {
|
||||
creationDate: -2L
|
||||
foodData: {
|
||||
dairy: 0.0f
|
||||
decay: 0.0f
|
||||
food: 0
|
||||
fruit: 0.0f
|
||||
grain: 0.0f
|
||||
meat: 0.0f
|
||||
sat: 0.0f
|
||||
veg: 0.0f
|
||||
water: 0.0f
|
||||
}
|
||||
ingredients: [ ]
|
||||
traits: [ ]
|
||||
}
|
||||
}
|
||||
id: "tfg:food/meal_bag"
|
||||
}
|
||||
match_nbt: false
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.gun.title}"
|
||||
x: 10.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["00A2566109144D7F"]
|
||||
description: ["{quests.high_voltage.space_survival.desc}"]
|
||||
icon: "ad_astra:oxygen_distributor"
|
||||
id: "08AAD91CE348A08B"
|
||||
subtitle: "{quests.high_voltage.space_survival.subtitle}"
|
||||
tasks: [{
|
||||
id: "66E3342A47817498"
|
||||
title: "{quests.high_voltage.space_survival.title}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{quests.high_voltage.space_survival.title}"
|
||||
x: 13.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["00A2566109144D7F"]
|
||||
description: ["{quests.high_voltage.moon_harvester.desc}"]
|
||||
id: "6A21CCAEB1FDF38E"
|
||||
shape: "octagon"
|
||||
size: 2.0d
|
||||
subtitle: "{quests.high_voltage.moon_harvester.subtitle}"
|
||||
tasks: [{
|
||||
id: "445320F445BA829F"
|
||||
item: "gtceu:moon_dust_harvester"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.moon_harvester.title}"
|
||||
x: 16.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6A21CCAEB1FDF38E"]
|
||||
description: ["{quests.high_voltage.regolith_vapor.desc}"]
|
||||
icon: "gtceu:regolith_vapor_bucket"
|
||||
id: "578ECB10B30A77C7"
|
||||
subtitle: "{quests.high_voltage.regolith_vapor.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "0FF209271DB58067"
|
||||
item: "gtceu:regolith_vapor_bucket"
|
||||
optional_task: true
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "32E19F49E3A2D54B"
|
||||
title: "{quests.high_voltage.regolith_vapor.task}"
|
||||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.regolith_vapor.title}"
|
||||
x: 17.5d
|
||||
y: -2.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["6A21CCAEB1FDF38E"]
|
||||
description: ["{quests.high_voltage.regolith_dust.desc}"]
|
||||
id: "0527DF6A8567FED9"
|
||||
subtitle: "{quests.high_voltage.regolith_dust.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "567BAEEB6120F6CE"
|
||||
item: "tfg:certus_regolith_dust"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "5507A8B1561AC3C3"
|
||||
item: "tfg:cassiterite_regolith_dust"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "13C520F021B2E085"
|
||||
item: "tfg:bright_regolith_dust"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3565544FF49B9F50"
|
||||
item: "tfg:goethe_regolith_dust"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.regolith_dust.title}"
|
||||
x: 17.5d
|
||||
y: -1.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"0527DF6A8567FED9"
|
||||
"578ECB10B30A77C7"
|
||||
]
|
||||
description: ["{quests.high_voltage.dusty_ores.desc}"]
|
||||
id: "5807400FD1F0998A"
|
||||
subtitle: "{quests.high_voltage.dusty_ores.subtitle}"
|
||||
tasks: [{
|
||||
id: "131B1D5F37FAC1F3"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(gtceu:dusty_raw_goethite)item(gtceu:dusty_raw_cassiterite)item(gtceu:dusty_raw_certus_quartz)item(gtceu:dusty_raw_gold)item(gtceu:dusty_raw_diamond))"
|
||||
}
|
||||
}
|
||||
title: "{quests.high_voltage.dusty_ores.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.dusty_ores.title}"
|
||||
x: 18.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5807400FD1F0998A"]
|
||||
description: ["{quests.high_voltage.final_dust.desc}"]
|
||||
id: "36FE3DDBCB535639"
|
||||
subtitle: "{quests.high_voltage.final_dust.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "1ABCC8007A69EF81"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "gtceu:iron_dust"
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "3AB1A3B8E6EB4291"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "gtceu:copper_dust"
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "1D38FECBB23C3E24"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "gtceu:tin_dust"
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6C9C5498495F330C"
|
||||
item: "ae2:certus_quartz_dust"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "0AF375FA38D44C32"
|
||||
item: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "gtceu:gold_dust"
|
||||
}
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "6896A082D722EECB"
|
||||
item: "gtceu:diamond_dust"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.final_dust.title}"
|
||||
x: 19.5d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["396E85A39FF414CF"]
|
||||
description: ["{quests.high_voltage.wand.desc}"]
|
||||
id: "22FD785F84E9D10D"
|
||||
optional: true
|
||||
shape: "heart"
|
||||
subtitle: "{quests.high_voltage.wand.subtitle}"
|
||||
tasks: [{
|
||||
id: "525F329DD5F16E1F"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "constructionwand:infinity_wand"
|
||||
tag: {
|
||||
wand_options: { }
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.high_voltage.wand.title}"
|
||||
x: 13.0d
|
||||
y: -8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["396E85A39FF414CF"]
|
||||
description: ["{quests.high_voltage.hypertubes.desc}"]
|
||||
id: "159A0DAEE55DCAC0"
|
||||
optional: true
|
||||
subtitle: "{quests.high_voltage.hypertubes.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "033B6A5EC2C17485"
|
||||
item: "create_hypertube:hypertube_entrance"
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
id: "2EBA07A9A9B6D1EB"
|
||||
item: "create_hypertube:hypertube"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.high_voltage.hypertubes.title}"
|
||||
x: 11.5d
|
||||
y: -7.5d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.high_voltage.subtitle}"]
|
||||
title: "{quests.high_voltage}"
|
||||
|
||||
@@ -674,6 +674,7 @@
|
||||
"ftbfiltersystem:filter": "or(nbt(fuzzy:{fluid:{FluidName:\"gtceu:rubber\"}})nbt(fuzzy:{Fluid:{FluidName:\"gtceu:rubber\"}})item(gtceu:rubber_bucket))"
|
||||
}
|
||||
}
|
||||
title: "{quests.low_voltage.lv_chemical_reactor.task}"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
|
||||
@@ -308,6 +308,7 @@
|
||||
}
|
||||
id: "tfc:kaolin_clay"
|
||||
}
|
||||
match_nbt: false
|
||||
type: "item"
|
||||
weak_nbt_match: true
|
||||
}]
|
||||
@@ -630,11 +631,9 @@
|
||||
id: "5792DDAA82895E67"
|
||||
subtitle: "{quests.metal_age.red_blu.subtitle}"
|
||||
tasks: [{
|
||||
dimension: "minecraft:overworld"
|
||||
icon: "gtceu:overworld_marker"
|
||||
id: "720D64916D1E3892"
|
||||
title: "{quests.stone_age.temperature.task}"
|
||||
type: "dimension"
|
||||
id: "63890641DCD6659F"
|
||||
title: "{quests.tasktype.checkmark}"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{quests.metal_age.red_blu.title}"
|
||||
x: 24.0d
|
||||
@@ -661,6 +660,7 @@
|
||||
"5088768AAA28FCBA"
|
||||
"6D04BAC5B215F90F"
|
||||
]
|
||||
dependency_requirement: "one_completed"
|
||||
description: ["{quests.metal_age.redblu_anvil.desc}"]
|
||||
id: "56CA2EB7812529C5"
|
||||
shape: "octagon"
|
||||
@@ -967,7 +967,9 @@
|
||||
}
|
||||
id: "tfc:metal/ingot/weak_red_steel"
|
||||
}
|
||||
match_nbt: false
|
||||
type: "item"
|
||||
weak_nbt_match: true
|
||||
}
|
||||
{
|
||||
id: "2A068958F7451FFB"
|
||||
@@ -981,7 +983,9 @@
|
||||
}
|
||||
id: "tfc:metal/ingot/black_steel"
|
||||
}
|
||||
match_nbt: false
|
||||
type: "item"
|
||||
weak_nbt_match: true
|
||||
}
|
||||
]
|
||||
title: "{quests.metal_age.highcarb_red_steel.title}"
|
||||
@@ -1158,7 +1162,9 @@
|
||||
}
|
||||
id: "tfc:metal/ingot/weak_blue_steel"
|
||||
}
|
||||
match_nbt: false
|
||||
type: "item"
|
||||
weak_nbt_match: true
|
||||
}
|
||||
{
|
||||
id: "2755C292E4E19530"
|
||||
@@ -1172,7 +1178,9 @@
|
||||
}
|
||||
id: "tfc:metal/ingot/black_steel"
|
||||
}
|
||||
match_nbt: false
|
||||
type: "item"
|
||||
weak_nbt_match: true
|
||||
}
|
||||
]
|
||||
title: "{quests.metal_age.highcarb_blu_steel.title}"
|
||||
|
||||
@@ -409,8 +409,8 @@
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.crushing_wheel.title}"
|
||||
x: -19.5d
|
||||
y: 18.0d
|
||||
x: -21.5d
|
||||
y: 10.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["7DB7AB5349218605"]
|
||||
@@ -436,13 +436,13 @@
|
||||
]
|
||||
title: "{quests.steam_age.treated_planks.title}"
|
||||
x: -19.5d
|
||||
y: 12.0d
|
||||
y: 10.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"246D2C5989E3E907"
|
||||
"233B414B4F189140"
|
||||
"781C6AD30194CB45"
|
||||
"3E175E20C91F168B"
|
||||
]
|
||||
description: ["{quests.steam_age.electron_tube.desc}"]
|
||||
id: "033E74BC588E7EAD"
|
||||
@@ -564,8 +564,8 @@
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.mech_crafter.title}"
|
||||
x: -19.5d
|
||||
y: 17.0d
|
||||
x: -20.5d
|
||||
y: 12.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["46FA9DD4755A5548"]
|
||||
@@ -828,9 +828,9 @@
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"033E74BC588E7EAD"
|
||||
"5917B0D4708BF534"
|
||||
"6100B3C732E379AA"
|
||||
"246D2C5989E3E907"
|
||||
]
|
||||
description: ["{quests.steam_age.centrifuge.desc}"]
|
||||
id: "19A1D52A7F550478"
|
||||
@@ -842,8 +842,8 @@
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.centrifuge.title}"
|
||||
x: -18.0d
|
||||
y: 17.0d
|
||||
x: -20.5d
|
||||
y: 10.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
@@ -1593,7 +1593,7 @@
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "{quests.steam_age.packager.title}"
|
||||
x: -22.0d
|
||||
x: -19.5d
|
||||
y: 17.0d
|
||||
}
|
||||
{
|
||||
|
||||
@@ -480,8 +480,29 @@
|
||||
type: "item"
|
||||
}
|
||||
{
|
||||
icon: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "tfchotornot:tongs/wood"
|
||||
tag: {
|
||||
Damage: 0
|
||||
}
|
||||
}
|
||||
id: "45EFF5E3C4FB5D77"
|
||||
item: "firmalife:peel"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "ftbfiltersystem:item_tag(tfchotornot:insulating)"
|
||||
}
|
||||
}
|
||||
optional_task: true
|
||||
title: "Any #tfchotornot:insulating"
|
||||
type: "item"
|
||||
}
|
||||
]
|
||||
@@ -1975,7 +1996,7 @@
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(tfclunchbox:lunchbox)item(tfclunchbox:cooling_lunchbox))"
|
||||
"ftbfiltersystem:filter": "or(item(tfclunchbox:lunchbox)item(tfclunchbox:cooling_lunchbox)item(tfclunchbox:electric_lunchbox))"
|
||||
}
|
||||
}
|
||||
title: "{quests.tfg_tips.lunchbox.task.1}"
|
||||
|
||||
@@ -153,27 +153,6 @@
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
{
|
||||
dependencies: ["5826EC76931359B8"]
|
||||
description: ["{quests.space_survival.bedrock_mining.desc}"]
|
||||
icon: "gtceu:mv_bedrock_ore_miner"
|
||||
id: "3C92063DE5B9D5E9"
|
||||
subtitle: "{quests.space_survival.bedrock_mining.subtitle}"
|
||||
tasks: [{
|
||||
id: "7768441FAA017BB1"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(gtceu:mv_bedrock_ore_miner)item(gtceu:hv_bedrock_ore_miner)item(gtceu:ev_bedrock_ore_miner))"
|
||||
}
|
||||
}
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.space_survival.bedrock_mining.title}"
|
||||
x: -1.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["16B735F9C391D260"]
|
||||
description: ["{quests.space_survival.preparations.desc}"]
|
||||
@@ -456,10 +435,7 @@
|
||||
y: -4.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"5826EC76931359B8"
|
||||
"3C92063DE5B9D5E9"
|
||||
]
|
||||
dependencies: ["5826EC76931359B8"]
|
||||
description: [
|
||||
"{quests.space_survival.railgun.desc.1}"
|
||||
"{@pagebreak}"
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
|
||||
[general]
|
||||
#If set to FALSE, support for sewing recipes will not be enabled regardless of the mod's presence.
|
||||
enableSewingKitSupport = true
|
||||
enableSewingKitSupport = false
|
||||
#If AUTO, the crafting and upgrade recipes will use the Sewing mechanics if the Sewing Kit mod is present. Off disables anvil upgrading regardless.
|
||||
#Allowed Values: OFF, AUTO, ON
|
||||
anvilUpgrading = "AUTO"
|
||||
#If AUTO, the belt and pouch crafting recipes will be disabled if the Sewing Kit mod is present, sewing recipes will be used instead.
|
||||
#Allowed Values: OFF, AUTO, ON
|
||||
enableGridCraftingRecipes = "AUTO"
|
||||
enableGridCraftingRecipes = "ON"
|
||||
#If AUTO, the belt slot will be disabled if Curios is present. If OFF, the belt slot will be disabled permanently.
|
||||
#Allowed Values: OFF, AUTO, ON
|
||||
customBeltSlotMode = "ON"
|
||||
|
||||
131
config/xenon++.toml
Normal file
@@ -0,0 +1,131 @@
|
||||
|
||||
[xenonextras]
|
||||
|
||||
[xenonextras.general]
|
||||
#Set Fullscreen mode
|
||||
#Borderless let you change between screens more faster and move your mouse across monitors
|
||||
#Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN
|
||||
fullscreen = "WINDOWED"
|
||||
#Configure FPS Display mode
|
||||
#Complete mode gives you min FPS count and average count
|
||||
#Allowed Values: OFF, SIMPLE, ADVANCED, FRAMETIME
|
||||
fpsDisplay = "ADVANCED"
|
||||
#Configure FPS Display gravity
|
||||
#Places counter on specified corner of your screen
|
||||
#Allowed Values: LEFT, CENTER, RIGHT
|
||||
fpsDisplayGravity = "LEFT"
|
||||
#Shows GPU and memory usage onto FPS display
|
||||
#Allowed Values: OFF, ON, RAM
|
||||
fpsDisplaySystem = "OFF"
|
||||
#Configure FPS Display margin
|
||||
#Give some space between corner and text
|
||||
#Range: 0 ~ 48
|
||||
fpsDisplayMargin = 12
|
||||
#Toggle FPS Display shadow
|
||||
#In case sometimes you can't see the text
|
||||
fpsDisplayShadow = false
|
||||
|
||||
[xenonextras.quality]
|
||||
#Toggle fog feature
|
||||
#Fog was a vanilla feature, toggling off may increases performance
|
||||
fog = true
|
||||
#Raise clouds
|
||||
#Modify clouds height perfect for a adaptative world experience
|
||||
#Range: 0 ~ 512
|
||||
cloudsHeight = 192
|
||||
#Chunks fade in speed
|
||||
#This option doesn't affect performance, just changes speed
|
||||
#Allowed Values: OFF, FAST, SLOW
|
||||
chunkFadeSpeed = "SLOW"
|
||||
|
||||
[xenonextras.quality.darkness]
|
||||
#Configure Darkness Mode
|
||||
#Each config changes what is considered 'true darkness'
|
||||
#Allowed Values: TOTAL_DARKNESS, PITCH_BLACK, DARK, DIM, OFF
|
||||
mode = "OFF"
|
||||
#Toggle Darkness on Overworld dimension
|
||||
enableOnOverworld = true
|
||||
#Toggle Darkness on Nether dimension
|
||||
enableOnNether = false
|
||||
#Configure fog brightness on nether when darkness is enabled
|
||||
#Range: 0.0 ~ 1.0
|
||||
netherFogBright = 0.5
|
||||
#Toggle Darkness on End dimension
|
||||
enableOnEnd = false
|
||||
#Configure fog brightness on nether when darkness is enabled
|
||||
#Range: 0.0 ~ 1.0
|
||||
endFogBright = 0.5
|
||||
#Toggle Darkness default mode for modded dimensions
|
||||
valueByDefault = false
|
||||
#List of all dimensions to use True Darkness
|
||||
#This option overrides 'valueByDefault' state
|
||||
dimensionWhitelist = []
|
||||
#Toggle darkness when dimension has no SkyLight
|
||||
enableOnNoSkyLight = false
|
||||
#Disables all bright sources of darkness like moon or fog
|
||||
#Only affects darkness effect
|
||||
enableBlockLightOnly = false
|
||||
#Toggles if moon phases affects darkness in the overworld
|
||||
affectedByMoonPhase = true
|
||||
#Configure max moon brightness level with darkness
|
||||
#Range: 0.0 ~ 1.0
|
||||
fullMoonBright = 0.25
|
||||
#Configure min moon brightness level with darkness
|
||||
#Range: 0.0 ~ 1.0
|
||||
newMoonBright = 0.0
|
||||
|
||||
[xenonextras.performance]
|
||||
#Toggles JREI item rendering until searching
|
||||
#Increases performance a little bit and cleans your screen when you don't want to use it
|
||||
hideJREI = false
|
||||
#Toggles Minecraft Fonts shadows
|
||||
#Depending of the case may increase performance
|
||||
#Gives a flat style text
|
||||
fontShadows = true
|
||||
|
||||
[xenonextras.performance.distanceCulling]
|
||||
|
||||
[xenonextras.performance.distanceCulling.tileEntities]
|
||||
#Toggles distance culling for Block Entities
|
||||
#Maybe you use another mod for that :(
|
||||
enable = true
|
||||
#Configure horizontal max distance before cull Block entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 4096
|
||||
#Configure vertical max distance before cull Block entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 32
|
||||
#List of all Block Entities to be ignored by distance culling
|
||||
#Uses ResourceLocation to identify it
|
||||
#Example 1: "minecraft:chest" - Ignores chests only
|
||||
#Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2
|
||||
whitelist = ["waterframes:*"]
|
||||
|
||||
[xenonextras.performance.distanceCulling.entities]
|
||||
#Toggles distance culling for entities
|
||||
enable = true
|
||||
#Configure horizontal max distance before cull entities
|
||||
#Value is squared, default was 64^2 (or 64x64)
|
||||
#Range: > 0
|
||||
cullingMaxDistanceX = 4096
|
||||
#Configure vertical max distance before cull entities
|
||||
#Value is raw
|
||||
#Range: 0 ~ 512
|
||||
cullingMaxDistanceY = 32
|
||||
#Configure modifier applied to hostile entities
|
||||
#Value is raw, 50% - 200%
|
||||
#Range: 25 ~ 200
|
||||
hostileEntityModifier = 100
|
||||
#List of all Entities to be ignored by distance culling
|
||||
#Uses ResourceLocation to identify it
|
||||
#Example 1: "minecraft:bat" - Ignores bats only
|
||||
#Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod
|
||||
whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"]
|
||||
|
||||
[xenonextras.others]
|
||||
#Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen
|
||||
#Allowed Values: ATTACH, REPLACE, OFF
|
||||
borderlessAttachModeOnF11 = "ATTACH"
|
||||
|
||||
6
config/xenon-mixins.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
# This is the configuration file for Xenon.
|
||||
#
|
||||
# You can find information on editing this file and all the available options here:
|
||||
# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File
|
||||
#
|
||||
# By default, this file will be empty except for this notice.
|
||||
31
config/xenon-options.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"quality": {
|
||||
"weather_quality": "DEFAULT",
|
||||
"leaves_quality": "DEFAULT",
|
||||
"enable_vignette": true,
|
||||
"use_quad_normals_for_shading": false
|
||||
},
|
||||
"advanced": {
|
||||
"enable_memory_tracing": false,
|
||||
"use_advanced_staging_buffers": true,
|
||||
"disable_incompatible_mod_warnings": false,
|
||||
"cpu_render_ahead_limit": 3
|
||||
},
|
||||
"performance": {
|
||||
"chunk_builder_threads": 0,
|
||||
"always_defer_chunk_updates_v2": true,
|
||||
"animate_only_visible_textures": true,
|
||||
"use_entity_culling": true,
|
||||
"leaf_culling_quality": "SOLID_AGGRESSIVE",
|
||||
"use_fog_occlusion": true,
|
||||
"use_block_face_culling": true,
|
||||
"use_compact_vertex_format": true,
|
||||
"use_translucent_face_sorting_v2": true,
|
||||
"use_no_error_g_l_context": true
|
||||
},
|
||||
"notifications": {
|
||||
"force_disable_donation_prompts": false,
|
||||
"has_cleared_donation_button": false,
|
||||
"has_seen_donation_prompt": false
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@
|
||||
[stone_wand]
|
||||
#Wand durability
|
||||
#Range: > 1
|
||||
durability = 131
|
||||
durability = 791
|
||||
#Wand block limit
|
||||
#Range: > 1
|
||||
limit = 9
|
||||
@@ -24,7 +24,7 @@
|
||||
[iron_wand]
|
||||
#Wand durability
|
||||
#Range: > 1
|
||||
durability = 250
|
||||
durability = 2303
|
||||
#Wand block limit
|
||||
#Range: > 1
|
||||
limit = 27
|
||||
@@ -40,7 +40,7 @@
|
||||
[diamond_wand]
|
||||
#Wand durability
|
||||
#Range: > 1
|
||||
durability = 1561
|
||||
durability = 12286
|
||||
#Wand block limit
|
||||
#Range: > 1
|
||||
limit = 128
|
||||
|
||||
@@ -1,123 +1,123 @@
|
||||
|
||||
[general]
|
||||
#If false, sprinklers will not accept Firmalife pipes and will instead require something that exposes a fluid capability, eg. a barrel.
|
||||
usePipesForSprinklers = false
|
||||
#Days in a cellar to make cheese Aged.
|
||||
#Range: > 1
|
||||
cheeseAgedDays = 28
|
||||
#Days in a cellar to make cheese Vintage.
|
||||
#Range: > 1
|
||||
cheeseVintageDays = 112
|
||||
#Ticks to dry something on a drying mat (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
dryingTicks = 12000
|
||||
#Ticks to dry something on a solar drier (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
solarDryingTicks = 1000
|
||||
#Ticks to smoke something on a string (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
smokingTicks = 8000
|
||||
#Number of blocks below the firepit that wool string will search for valid smoking firepits.
|
||||
#Range: > 1
|
||||
smokingFirepitRange = 6
|
||||
#Ticks for a composter tumbler to finish (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
compostTumblerTicks = 96000
|
||||
#Ticks for an oven to cure (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
ovenCureTicks = 2000
|
||||
#Minimum temperature for an oven to start the curing process (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
ovenCureTemperature = 600
|
||||
#If true, ovens will hurt the player if they touch it without a peel in hand.
|
||||
ovenRequirePeel = false
|
||||
#The chance for fuel burning in an oven to drop an ash block into an ashtray.
|
||||
#Range: 0.0 ~ 1.0
|
||||
ovenAshChance = 0.5
|
||||
#If true, players can throw seed balls.
|
||||
enableSeedBalls = true
|
||||
#If true, bees can swarm and hurt the player if provoked.
|
||||
enableBeeSwarm = true
|
||||
#The capacity in mB of the wine glass. Default 250
|
||||
#Range: > 1
|
||||
hollowShellCapacity = 250
|
||||
#The average temperature below which stronger decay modifiers apply to cellar blocks.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
cellarLevel2Temperature = 0.0
|
||||
#The average temperature below which even stronger decay modifiers apply to cellar blocks.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
cellarLevel3Temperature = -12.0
|
||||
#The average amount of days for a crop in a greenhouse to grow. For normal crops, this is 24 days.
|
||||
#Range: 4.9E-324 ~ 1.7976931348623157E308
|
||||
greenhouseGrowthDays = 20.0
|
||||
#The average amount of days for a crop in a greenhouse to consume all its water.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
greenhouseWaterDays = 12.0
|
||||
#The average amount of days for a crop to consume all of a nutrient. You should probably not configure this value unless you know what it does in the code. For regular crops this value is 12.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
greenhouseNutrientDays = 8.0
|
||||
#The max bounded distance from the climate station a greenhouse wall can be. Higher numbers = more lag.
|
||||
#Range: 1 ~ 128
|
||||
greenhouseRadius = 15
|
||||
#The max bounded distance from the climate station a cellar wall can be. Higher numbers = more lag.
|
||||
#Range: 1 ~ 128
|
||||
cellarRadius = 15
|
||||
#If true, the tumbler and the pumping station work magically with a redstone signal and no power required.
|
||||
mechanicalPowerCheatMode = true
|
||||
|
||||
[foodTraits]
|
||||
#The modifier for the 'Dried' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitDriedModifier = 0.5
|
||||
#The modifier for the 'Fresh' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitFreshModifier = 1.100000023841858
|
||||
#The modifier for the 'Aged' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitAgedModifier = 0.8999999761581421
|
||||
#The modifier for the 'Vintage' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitVintageModifier = 0.6000000238418579
|
||||
#The modifier for the 'Oven_baked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitOven_bakedModifier = 0.8999999761581421
|
||||
#The modifier for the 'Smoked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitSmokedModifier = 0.699999988079071
|
||||
#The modifier for the 'Rancid_smoked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitRancid_smokedModifier = 2.0
|
||||
#The modifier for the 'Shelved' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelvedModifier = 0.4000000059604645
|
||||
#The modifier for the 'Shelved_2' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelved_2Modifier = 0.3499999940395355
|
||||
#The modifier for the 'Shelved_3' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelved_3Modifier = 0.25
|
||||
#The modifier for the 'Hung' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHungModifier = 0.3499999940395355
|
||||
#The modifier for the 'Hung_2' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHung_2Modifier = 0.30000001192092896
|
||||
#The modifier for the 'Hung_3' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHung_3Modifier = 0.25
|
||||
#The modifier for the 'Fermented' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitFermentedModifier = 0.25
|
||||
#The modifier for the 'Bee_pollinated' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitBee_pollinatedModifier = 0.800000011920929
|
||||
#The modifier for the 'Dirt_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitDirt_grownModifier = 0.8999999761581421
|
||||
#The modifier for the 'Gravel_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitGravel_grownModifier = 0.800000011920929
|
||||
#The modifier for the 'Slope_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitSlope_grownModifier = 0.800000011920929
|
||||
|
||||
|
||||
[general]
|
||||
#If false, sprinklers will not accept Firmalife pipes and will instead require something that exposes a fluid capability, eg. a barrel.
|
||||
usePipesForSprinklers = false
|
||||
#Days in a cellar to make cheese Aged.
|
||||
#Range: > 1
|
||||
cheeseAgedDays = 28
|
||||
#Days in a cellar to make cheese Vintage.
|
||||
#Range: > 1
|
||||
cheeseVintageDays = 112
|
||||
#Ticks to dry something on a drying mat (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
dryingTicks = 12000
|
||||
#Ticks to dry something on a solar drier (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
solarDryingTicks = 1000
|
||||
#Ticks to smoke something on a string (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
smokingTicks = 8000
|
||||
#Number of blocks below the firepit that wool string will search for valid smoking firepits.
|
||||
#Range: > 1
|
||||
smokingFirepitRange = 6
|
||||
#Ticks for a composter tumbler to finish (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
compostTumblerTicks = 96000
|
||||
#Ticks for an oven to cure (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
ovenCureTicks = 2000
|
||||
#Minimum temperature for an oven to start the curing process (24000 ticks = 1 day)
|
||||
#Range: > 1
|
||||
ovenCureTemperature = 600
|
||||
#If true, ovens will hurt the player if they touch it without a peel in hand.
|
||||
ovenRequirePeel = false
|
||||
#The chance for fuel burning in an oven to drop an ash block into an ashtray.
|
||||
#Range: 0.0 ~ 1.0
|
||||
ovenAshChance = 0.5
|
||||
#If true, players can throw seed balls.
|
||||
enableSeedBalls = true
|
||||
#If true, bees can swarm and hurt the player if provoked.
|
||||
enableBeeSwarm = true
|
||||
#The capacity in mB of the wine glass. Default 250
|
||||
#Range: > 1
|
||||
hollowShellCapacity = 250
|
||||
#The average temperature below which stronger decay modifiers apply to cellar blocks.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
cellarLevel2Temperature = 0.0
|
||||
#The average temperature below which even stronger decay modifiers apply to cellar blocks.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
cellarLevel3Temperature = -12.0
|
||||
#The average amount of days for a crop in a greenhouse to grow. For normal crops, this is 24 days.
|
||||
#Range: 4.9E-324 ~ 1.7976931348623157E308
|
||||
greenhouseGrowthDays = 20.0
|
||||
#The average amount of days for a crop in a greenhouse to consume all its water.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
greenhouseWaterDays = 12.0
|
||||
#The average amount of days for a crop to consume all of a nutrient. You should probably not configure this value unless you know what it does in the code. For regular crops this value is 12.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
greenhouseNutrientDays = 8.0
|
||||
#The max bounded distance from the climate station a greenhouse wall can be. Higher numbers = more lag.
|
||||
#Range: 1 ~ 128
|
||||
greenhouseRadius = 15
|
||||
#The max bounded distance from the climate station a cellar wall can be. Higher numbers = more lag.
|
||||
#Range: 1 ~ 128
|
||||
cellarRadius = 15
|
||||
#If true, the tumbler and the pumping station work magically with a redstone signal and no power required.
|
||||
mechanicalPowerCheatMode = true
|
||||
|
||||
[foodTraits]
|
||||
#The modifier for the 'Dried' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitDriedModifier = 0.5
|
||||
#The modifier for the 'Fresh' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitFreshModifier = 1.100000023841858
|
||||
#The modifier for the 'Aged' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitAgedModifier = 0.8999999761581421
|
||||
#The modifier for the 'Vintage' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitVintageModifier = 0.6000000238418579
|
||||
#The modifier for the 'Oven_baked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitOven_bakedModifier = 0.8999999761581421
|
||||
#The modifier for the 'Smoked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitSmokedModifier = 0.699999988079071
|
||||
#The modifier for the 'Rancid_smoked' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitRancid_smokedModifier = 2.0
|
||||
#The modifier for the 'Shelved' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelvedModifier = 0.4000000059604645
|
||||
#The modifier for the 'Shelved_2' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelved_2Modifier = 0.3499999940395355
|
||||
#The modifier for the 'Shelved_3' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitShelved_3Modifier = 0.25
|
||||
#The modifier for the 'Hung' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHungModifier = 0.3499999940395355
|
||||
#The modifier for the 'Hung_2' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHung_2Modifier = 0.30000001192092896
|
||||
#The modifier for the 'Hung_3' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitHung_3Modifier = 0.25
|
||||
#The modifier for the 'Fermented' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitFermentedModifier = 0.25
|
||||
#The modifier for the 'Bee_pollinated' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitBee_pollinatedModifier = 0.800000011920929
|
||||
#The modifier for the 'Dirt_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitDirt_grownModifier = 0.8999999761581421
|
||||
#The modifier for the 'Gravel_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitGravel_grownModifier = 0.800000011920929
|
||||
#The modifier for the 'Slope_grown' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitSlope_grownModifier = 0.800000011920929
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
|
||||
enderchest: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows users to set a custom hat as their head item by using a command
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
# Allows users to access their ender chest, as well as admins to manage other players' ender chests.
|
||||
enderchest: {
|
||||
# Default: true
|
||||
enabled: true
|
||||
enabled: false
|
||||
}
|
||||
|
||||
# Allows users to set a custom hat as their head item by using a command
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
# Default config file that will be copied to instance's config/ftbqoptimizer.snbt location
|
||||
|
||||
{ }
|
||||
@@ -1,425 +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.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
|
||||
|
||||
#.
|
||||
#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
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#List of items to force-allow placing in the belt. Takes precedence over blacklist.
|
||||
whitelist = []
|
||||
#List of items to disallow from placing in the belt. (whitelist takes precedence)
|
||||
blacklist = []
|
||||
blacklist = ["tfclunchbox:lunchbox", "tfclunchbox:cooling_lunchbox", "tfclunchbox:electric_lunchbox", "sophisticatedbackpacks:backpack", "sophisticatedbackpacks:iron_backpack", "sophisticatedbackpacks:gold_backpack", "sophisticatedbackpacks:diamond_backpack", "sophisticatedbackpacks:netherite_backpack", "tfc:ceramic/cyan_glazed_vessel", "tfc:ceramic/purple_glazed_vessel", "tfc:ceramic/blue_glazed_vessel", "tfc:ceramic/brown_glazed_vessel", "tfc:ceramic/green_glazed_vessel", "tfc:ceramic/red_glazed_vessel", "tfc:ceramic/black_glazed_vessel", "tfc:ceramic/large_vessel/gray", "tfc:ceramic/large_vessel/pink", "tfc:ceramic/large_vessel/lime", "tfc:ceramic/large_vessel/yellow", "tfc:ceramic/large_vessel/light_blue", "tfc:ceramic/large_vessel/magenta", "tfc:ceramic/large_vessel/orange", "tfc:ceramic/large_vessel/white", "tfc:ceramic/large_vessel", "tfc:ceramic/large_vessel/light_gray", "tfc:ceramic/large_vessel/cyan", "tfc:ceramic/large_vessel/purple", "tfc:ceramic/large_vessel/blue", "tfc:ceramic/large_vessel/brown", "tfc:ceramic/large_vessel/green", "tfc:ceramic/large_vessel/red", "tfc:ceramic/large_vessel/black", "tfc:ceramic/vessel", "tfc:ceramic/light_gray_glazed_vessel", "tfc:ceramic/gray_glazed_vessel", "tfc:ceramic/pink_glazed_vessel", "tfc:ceramic/lime_glazed_vessel", "tfc:ceramic/yellow_glazed_vessel", "tfc:ceramic/light_blue_glazed_vessel", "tfc:ceramic/magenta_glazed_vessel", "tfc:ceramic/orange_glazed_vessel", "tfc:ceramic/white_glazed_vessel"]
|
||||
#When set to false, stackable items will no longer be allowed by default.
|
||||
allowAllNonStackableItems = true
|
||||
|
||||
|
||||
76
defaultconfigs/wan_ancient_beasts-server.toml
Normal file
@@ -0,0 +1,76 @@
|
||||
|
||||
#Sniffer Attributes
|
||||
[sniffer]
|
||||
#Sniffer health [default: 75]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 150.0
|
||||
#Sniffer armor [default: 3]
|
||||
#Range: 0.0 ~ 30.0
|
||||
armor = 3.0
|
||||
#Sniffer armor toughness [default: 1]
|
||||
#Range: 0.0 ~ 20.0
|
||||
armorToughness = 1.0
|
||||
|
||||
#Eater Attributes
|
||||
[eater]
|
||||
#Eater health [default: 100]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 400.0
|
||||
#Eater attack damage [default: 30]
|
||||
#Range: 0.0 ~ 1024.0
|
||||
damage = 30.0
|
||||
#Eater armor [default: 5]
|
||||
#Range: 0.0 ~ 30.0
|
||||
armor = 8.0
|
||||
#Eater armor toughness [default: 2]
|
||||
#Range: 0.0 ~ 20.0
|
||||
armorToughness = 3.0
|
||||
|
||||
#Walker Attributes
|
||||
[walker]
|
||||
#Walker health [default: 200]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 600.0
|
||||
#Walker armor [default: 5]
|
||||
#Range: 0.0 ~ 30.0
|
||||
armor = 14.0
|
||||
#Walker armor toughness [default: 4]
|
||||
#Range: 0.0 ~ 20.0
|
||||
armorToughness = 4.0
|
||||
|
||||
#Crusher Attributes
|
||||
[crusher]
|
||||
#Crusher health [default: 50]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 200.0
|
||||
#Crusher attack damage [default: 10]
|
||||
#Range: 0.0 ~ 1024.0
|
||||
damage = 10.0
|
||||
#Crusher armor [default: 20]
|
||||
#Range: 0.0 ~ 30.0
|
||||
armor = 35.0
|
||||
#Crusher armor toughness [default: 4]
|
||||
#Range: 0.0 ~ 20.0
|
||||
armorToughness = 6.0
|
||||
|
||||
#Glider Attributes
|
||||
[glider]
|
||||
#Glider health [default: 25]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 150.0
|
||||
|
||||
#Soarer Attributes
|
||||
[soarer]
|
||||
#Soarer health [default: 40]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 250.0
|
||||
#Soarer attack damage [default: 15]
|
||||
#Range: 0.0 ~ 1024.0
|
||||
damage = 25.0
|
||||
|
||||
#Surfer Attributes
|
||||
[surfer]
|
||||
#Surfer health [default: 30]
|
||||
#Range: 1.0 ~ 1024.0
|
||||
health = 150.0
|
||||
|
||||
@@ -10,7 +10,9 @@
|
||||
"block.beneath.crackrack": "Keratophyre",
|
||||
"block.beneath.soul_clay": "Muddy Clay",
|
||||
"block.beneath.wood.fallen_leaves.crimson": "Fallen Crimson Lamella",
|
||||
"block.beneath.wood.leaves.crimson": "Crimson Lamella",
|
||||
"block.beneath.wood.fallen_leaves.warped": "Fallen Warped Lamella",
|
||||
"block.beneath.wood.leaves.warped": "Warped Lamella",
|
||||
"item.beneath.cursed_hide": "Lavaproof Hide",
|
||||
"item.beneath.blackstone_brick": "Pyroxenite Brick",
|
||||
"item.beneath.cursecoal": "Anthracite",
|
||||
|
||||
@@ -10,7 +10,9 @@
|
||||
"block.beneath.crackrack": "Кератофір",
|
||||
"block.beneath.soul_clay": "Брудна Глина",
|
||||
"block.beneath.wood.fallen_leaves.crimson": "Занепала червона ламела",
|
||||
"block.beneath.wood.leaves.crimson": "Багряна пластинка",
|
||||
"block.beneath.wood.fallen_leaves.warped": "Занепала викривлена ламела",
|
||||
"block.beneath.wood.leaves.warped": "Покручена пластинка",
|
||||
"item.beneath.cursed_hide": "Лавостійка Шкіра",
|
||||
"item.beneath.blackstone_brick": "Цегла з Піроксеніту",
|
||||
"item.beneath.cursecoal": "Антрацит",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{
|
||||
"__comment__": "This file was automatically created by mcresources",
|
||||
"multipart": [
|
||||
{
|
||||
"when": {
|
||||
|
||||
@@ -82,6 +82,8 @@
|
||||
"item.betterend.cave_pumpkin_chunks": "Bulbkin Chunks",
|
||||
"item.betterend.cave_pumpkin_product": "Bulbkin",
|
||||
"item.betterend.cave_pumpkin_plant_seeds": "Bulbkin Seeds",
|
||||
"item.betterend.cave_pumpkin_pie_dough": "Bulbkin Pie Dough",
|
||||
"item.betterend.cave_pumpkin_pie_raw": "Raw Bulbkin Pie",
|
||||
"item.betterend.cave_pumpkin_pie": "Bulbkin Pie",
|
||||
"item.betterend.chorus_mushroom_cooked": "Cooked Chalmie Mushroom",
|
||||
"item.betterend.chorus_mushroom_product": "Chalmie Mushroom",
|
||||
|
||||
@@ -72,21 +72,17 @@
|
||||
"block.betterend.umbrella_moss": "Парасолькоподібний мох",
|
||||
"block.betterend.umbrella_moss_tall": "Парасолькоподібний мох",
|
||||
"block.betterend.vaiolush_fern": "Папороть Вайолаш",
|
||||
"item.betterend.amber_root_product": "Бурштинові паростки",
|
||||
"item.betterend.amber_root_seeds": "Насіння бурштинових пагонів",
|
||||
"item.betterend.blossom_berry_product": "Цвіт ягод",
|
||||
"item.betterend.blossom_berry_seeds": "Цвітіння насінини ягоди",
|
||||
"item.betterend.bolux_mushroom_cooked": "Приготований гриб Болукс",
|
||||
"item.betterend.bolux_mushroom_product": "Гриб Болукс",
|
||||
"item.betterend.bolux_mushroom_seeds": "Спори гриба Болукс",
|
||||
"item.betterend.cave_pumpkin_chunks": "Шматки Балбкіна",
|
||||
"item.betterend.cave_pumpkin_product": "Балбкін",
|
||||
"item.betterend.cave_pumpkin_plant_seeds": "Насіння Балбкіна",
|
||||
"item.betterend.cave_pumpkin_pie": "Пиріг із Балбкіна",
|
||||
"item.betterend.chorus_mushroom_cooked": "Приготований гриб Чалмі",
|
||||
"item.betterend.chorus_mushroom_product": "Гриб Чалмі",
|
||||
"item.betterend.chorus_mushroom_seeds": "Спори гриба Чалмі",
|
||||
"item.betterend.shadow_berry_cooked": "Приготована ягода Нокс",
|
||||
"item.betterend.shadow_berry_product": "Нокс ягода",
|
||||
"item.betterend.shadow_berry_seeds": "Насіння нокс ягоди"
|
||||
"item.create.netherite_diving_helmet.tooltip.summary": "Разом з _Blue Steel Backtank_, це може захистити вас від _extreme heat_. Щоб бути ефективними, _Legs and Feet_ повинні бути вкриті _Blue Steel Diving Equipment_, також.",
|
||||
"item.create.netherite_backtank": "Бактанк із Синьої Сталі",
|
||||
"item.create.netherite_diving_helmet": "Шолом для Дайвінгу із Синьої Сталі",
|
||||
"item.create.netherite_diving_boots": "Черевики для Дайвінгу із Синьої Сталі",
|
||||
"item.create.copper_sheet": "Мідна пластина",
|
||||
"item.create.brass_sheet": "Латунна пластина",
|
||||
"item.create.golden_sheet": "Золотий лист",
|
||||
"item.create.crushed_raw_gold": "Очищена Золота Руда",
|
||||
"item.create.crushed_raw_copper": "Очищена Мідна Руда",
|
||||
"item.create.crushed_raw_zinc": "Очищена Цинкова Руда",
|
||||
"item.create.crushed_raw_silver": "Очищена Срібна Руда",
|
||||
"item.create.crushed_raw_tin": "Очищена Олов'яна Руда",
|
||||
"item.create.crushed_raw_lead": "Очищена Свинцева Руда"
|
||||
}
|
||||
@@ -77,5 +77,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -114,5 +114,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -186,5 +186,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -44,5 +44,12 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"ambientocclusion": false,
|
||||
"parent": "block/block",
|
||||
"render_type": "cutout_mipped",
|
||||
"textures": {
|
||||
"1": "betterend:block/wild_crop",
|
||||
"particle": "#crop",
|
||||
@@ -80,5 +80,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -69,5 +69,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -82,5 +82,12 @@
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 225, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.625, 0.625, 0.625 ]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/amber_root_wild_mature"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/blossom_berry_wild_mature"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/bolux_mushroom_wild_mature"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"parent": "betterend:block/cave_pumpkin_chunks"
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/cave_pumpkin_chunks"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"parent": "betterend:block/cave_pumpkin_pie"
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/cave_pumpkin_pie"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/cave_pumpkin_pie_dough"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betterend:item/cave_pumpkin_pie_raw"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/cave_pumpkin_wild"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/chorus_mushroom_wild_mature"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"parent": "betterend:block/shadow_berry_wild_mature"
|
||||
}
|
||||
}
|
||||
BIN
kubejs/assets/betterend/textures/block/blossom_berry_seed_3.png
Normal file
|
After Width: | Height: | Size: 450 B |
|
After Width: | Height: | Size: 204 B |
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 317 B |
|
After Width: | Height: | Size: 303 B |
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 396 B |
|
After Width: | Height: | Size: 518 B |
|
After Width: | Height: | Size: 547 B |
|
After Width: | Height: | Size: 241 B |
|
After Width: | Height: | Size: 323 B |
|
After Width: | Height: | Size: 464 B |
|
After Width: | Height: | Size: 364 B |
BIN
kubejs/assets/betterend/textures/item/cave_pumpkin_chunks.png
Normal file
|
After Width: | Height: | Size: 350 B |
|
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 419 B |
BIN
kubejs/assets/betterend/textures/item/cave_pumpkin_pie_dough.png
Normal file
|
After Width: | Height: | Size: 385 B |
BIN
kubejs/assets/betterend/textures/item/cave_pumpkin_pie_raw.png
Normal file
|
After Width: | Height: | Size: 370 B |
@@ -91,10 +91,10 @@
|
||||
"item.create.crushed_raw_tin": "Очищена Олов'яна Руда",
|
||||
"item.create.crushed_raw_lead": "Очищена Свинцева Руда",
|
||||
"create.ponder.andesite_tunnel.header": "Використання металевих тунелів",
|
||||
"create.ponder.andesite_tunnel.text_1": "Металеві тунелі можна використовувати для приховування твоїх конвеєрних стрічок.",
|
||||
"create.ponder.andesite_tunnel.text_2": "Коли металевий тунель має з'єднання з боків...",
|
||||
"create.ponder.belt_casing.text_1": "Латунний або металевий корпус можна використовувати для декорування механічних ременів.",
|
||||
"create.ponder.brass_funnel.text_1": "Металеві лійки можуть витягувати лише одиничні предмети.",
|
||||
"create.ponder.cogwheel_casing.text_1": "Латунний або металевий корпус можна використовувати для декорування зубчастих коліс.",
|
||||
"create.ponder.shaft_casing.text_1": "Латунний або металевий корпус можна використовувати для декорування валів."
|
||||
"create.ponder.andesite_tunnel.text_1": "Металеві тунелі можна використовувати для приховування ременів",
|
||||
"create.ponder.andesite_tunnel.text_2": "Якщо металевий тунель має з'єднання з боковими сторонами...",
|
||||
"create.ponder.belt_casing.text_1": "Латунний або металевий кожух можна використовувати для декорування механічних ременів",
|
||||
"create.ponder.brass_funnel.text_1": "Металеві воронки можуть витягувати лише окремі предмети.",
|
||||
"create.ponder.cogwheel_casing.text_1": "Латунний або металевий кожух можна використовувати для декорування зубчастих коліс",
|
||||
"create.ponder.shaft_casing.text_1": "Для оздоблення валів можна використовувати латунний або металевий кожух"
|
||||
}
|
||||
BIN
kubejs/assets/create/textures/item/copper_sheet.png
Normal file
|
After Width: | Height: | Size: 324 B |
@@ -63,6 +63,7 @@
|
||||
"block.createdeco.locked_industrial_iron_door": "Зачинені Сталеві Двері",
|
||||
"block.createdeco.industrial_iron_trapdoor": "Сталевий Лаз",
|
||||
"block.createdeco.industrial_iron_ladder": "Сталева Драбина",
|
||||
"block.createdeco.industrial_iron_facade": "Сталевий фасад",
|
||||
"item.createdeco.iron_coin": "Монета з Кованого Заліза",
|
||||
"item.createdeco.netherite_coin": "Монета з Синьої Сталі",
|
||||
"item.createdeco.industrial_iron_coin": "Монета зі Сталі",
|
||||
|
||||
@@ -1 +1 @@
|
||||
{"ad_astra:oxygen_loading":{"order":160}}
|
||||
{"ad_astra:oxygen_loading":{"order":163}}
|
||||
@@ -1 +1 @@
|
||||
{"ae2:attunement":{"order":157}}
|
||||
{"ae2:attunement":{"order":160}}
|
||||
@@ -1 +1 @@
|
||||
{"ae2:condenser":{"order":147}}
|
||||
{"ae2:condenser":{"order":150}}
|
||||
@@ -1 +1 @@
|
||||
{"ae2:item_transformation":{"order":136}}
|
||||
{"ae2:item_transformation":{"order":139}}
|
||||
@@ -1 +1 @@
|
||||
{"create:draining":{"order":158}}
|
||||
{"create:draining":{"order":161}}
|
||||
@@ -1 +1 @@
|
||||
{"create:spout_filling":{"order":159}}
|
||||
{"create:spout_filling":{"order":162}}
|
||||
@@ -1 +1 @@
|
||||
{"domum_ornamentum:architects_cutter":{"order":156}}
|
||||
{"domum_ornamentum:architects_cutter":{"order":159}}
|
||||
@@ -1 +1 @@
|
||||
{"emi:info":{"order":165}}
|
||||
{"emi:info":{"order":168}}
|
||||
@@ -1 +1 @@
|
||||
{"emi:tag":{"order":166}}
|
||||
{"emi:tag":{"order":169}}
|
||||
@@ -1 +1 @@
|
||||
{"exposure:photograph_printing":{"order":152}}
|
||||
{"exposure:photograph_printing":{"order":155}}
|
||||
@@ -1 +1 @@
|
||||
{"exposure:photograph_stacking":{"order":161}}
|
||||
{"exposure:photograph_stacking":{"order":164}}
|
||||
@@ -1 +1 @@
|
||||
{"framedblocks:framing_saw":{"order":155}}
|
||||
{"framedblocks:framing_saw":{"order":158}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:automatic_packing":{"order":150}}
|
||||
{"greate:automatic_packing":{"order":153}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:automatic_shaped":{"order":148}}
|
||||
{"greate:automatic_shaped":{"order":151}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:automatic_shapeless":{"order":149}}
|
||||
{"greate:automatic_shapeless":{"order":152}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:block_cutting":{"order":154}}
|
||||
{"greate:block_cutting":{"order":157}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:fan_washing":{"order":138}}
|
||||
{"greate:fan_washing":{"order":141}}
|
||||
@@ -1 +1 @@
|
||||
{"greate:mixing":{"order":107}}
|
||||
{"greate:mixing":{"order":108}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:arc_furnace_recycling":{"order":144}}
|
||||
{"gtceu:arc_furnace_recycling":{"order":147}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:chem_dyes":{"order":142}}
|
||||
{"gtceu:chem_dyes":{"order":145}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:extractor_recycling":{"order":146}}
|
||||
{"gtceu:extractor_recycling":{"order":149}}
|
||||
@@ -0,0 +1 @@
|
||||
{"gtceu:extraterrestrial_ore_fabricator":{"order":124}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:fission_reactor":{"order":124}}
|
||||
{"gtceu:fission_reactor":{"order":125}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:fusion_reactor":{"order":125}}
|
||||
{"gtceu:fusion_reactor":{"order":126}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:greenhouse":{"order":126}}
|
||||
{"gtceu:greenhouse":{"order":127}}
|
||||
@@ -1 +1 @@
|
||||
{"gtceu:heat_exchanger":{"order":127}}
|
||||
{"gtceu:heat_exchanger":{"order":128}}
|
||||