aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items
AgeCommit message (Collapse)Author
2021-11-07change ev motor wire material to NichromeMartin Robertz
(cherry picked from commit 0af04b80d905247cbcdeb2dac8ce38630403c080)
2021-10-30Clean up translationsD-Cysteine
2021-10-30Merge pull request #710 from D-Cysteine/metaitem-98Martin Robertz
Add support for more fluids in GT cells
2021-10-30Merge branch 'experimental' into BoxinatorMartin Robertz
2021-10-30A little clean-upD-Cysteine
2021-10-30Add support for more fluidsD-Cysteine
2021-10-29Make metaitem.98 more flexible, and add oredict support for steam cellD-Cysteine
2021-10-29Make steam cell usable in oil cracking. Also made new cells less of a pain ↵Glease
to work with
2021-10-21Allow GT cells to work for any fluidD-Cysteine
2021-10-03Merge pull request #672 from Prometheus0000/New_stuffMartin Robertz
Add higher tier parts
2021-09-30small changeGlodBlock
follow TimeConqueror's suggestion
2021-09-30remove redundant codeGlodBlock
2021-09-30use lambdaGlodBlock
2021-09-30move code away from GT_UtilityGlodBlock
2021-09-29Finish upPrometheus0000
2021-09-27Add higher tier partsPrometheus0000
2021-09-24add control circuits to covers and large cell assembler recipesDreamMasterXXL
(cherry picked from commit 98d97905fca287477910c4973edb36d7cf1a86df)
2021-08-29create a MOD ID for Core ModDreamMasterXXL
change all Core mod items match with ID Add Soldering function to Material list put all Railcraft recipes from Core mot to GT
2021-08-16Removed useless concurrency for some mapsTimeConqueror
2021-08-03Use MetaGenerated_Item_99D-Cysteine
2021-08-01Add cracked fluid cellsD-Cysteine
2021-07-23Merge pull request #583 from GTNewHorizons/recipe-changeMartin Robertz
make item filter recipe more reasonable
2021-07-15Removed useless array creation in most #copy methods by changing them to ↵TimeConqueror
#copyOrNull variant with single parameter.
2021-07-02add the spaceGlodBlock
2021-07-01make item filter recipe more reasonableGlodBlock
2021-06-26Grammar fixPrometheus0000
2021-06-25add recipe for item filterGlodBlock
2021-06-18fixed texture of the UEV pumpboubou_19
2021-06-14Fix capitalizationPrometheus0000
2021-05-24feat(glow): iconset machines glow supportLéa Gris
- Add glow support for all sides and states of iconset machines (same as with basicmachines). Automated code cleanup with IDEA of: - Optiimise all imports (remove unused, sort) - Reorder all modifiers to the canonical preferred order (as stated in the Java Language Specification) - Add all missing @Override annotations
2021-05-21feat(render): implementation-free api texture factoryLéa Gris
Provides an implementation-free API Texture factory an builder. Deprecates gregtech.api.objects.GT_*Texture.java classes Once all GregTech add-on will be migrated to the new implemnetation-free API, changes to the implementation will not affect the add-on. For now, this API allow rendering of in-world glow textures. In-inventory/hand rendering of glow texture require implementation changes that are postponed until no add-on uses the deprecated embedded implementation API.
2021-05-21fix(render): move new textures rendering to new packageLéa Gris
Old textures rendering are kept in api/objects for backward compatibility. The old textures rendering does not handle glow textures or independant inventory tessellation. The old textures will only work with the old GT_Renderer_Block class New textures rendering with own tessellation in inventory and handling of glow emisssive textures are moved to the api/render package. These must not be used with the Old GT_Renderer_Block class or it will crash with: Already Tessellating Exception from the Tessellator class
2021-05-21feat(render): activity detector covers glowLéa Gris
2021-05-21feat(render): first set of glow texturesLéa Gris
Add glowing textures to: - Qantum or Super Tanks and Chests - Active Bronze and Bricked Blast Furnaces - Active Magical Absorber Top - Fusion Reactor Control Computer Screen - Active Yellow Glass Fusion Casing used on: - Active Fusion Reactor Controller and Hatches - Plasma Generator - Lightning Rod - Computer Screen Cover
2021-05-13Merge pull request #515 from GTNewHorizons/files_formatMartin Robertz
Normalize all repository files format
2021-05-08Fix name of americiumPrometheus0000
2021-05-08Fix soft mallet mishandling vanilla hopperGlease
2021-05-05Remove duplicate and erroneous recipe for the base schematicPrometheus0000
2021-04-27fix(textfiles): add missing neline at end of filesLéa Gris
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ```
2021-03-21ItemComb config fiximpbk2002
my mistake. This has to be changed.
2021-03-20Centrifuge Duration matchimpbk
Centrifuge Duration is now Equal to original Recipes.(At least in Bee Comb Nerfed Config) Unnerfed config needs more balancing, because disabling the nerfed Config makes Comb process recipes strange and override each other.(Even before this PR).
2021-03-15update ItemCombimpbk
Matched requirement of EU/t same as the old one.
2021-03-15Update ItemComb.javaimpbk2002
2021-03-15Update ItemComb.javaimpbk2002
changed minimum Tier that needs cleanRoom for autoclave and chemical process
2021-03-14Update ItemComb.javaimpbk2002
fixed missed chance of twilight forest bees
2021-03-14Update ItemComb.javaimpbk2002
if the config nerf beeComb is disabled. GT_comb processing recipes go totally Messed up. So I separated the nerfed part and un nerfed part. Also added enum values to the recipes to automatically generate the required voltage and duration, required cleanRoom by the required Voltage Tier. This will make us easier to add new honeycomb or balancing Beekeeping.
2021-03-11Implemented Builder Patternbartimaeusnek
2021-03-10Implemented Requestsbartimaeusnek
2021-03-10Refactor World Eventsbartimaeusnek
World events have way to many parameters, so the code gets unreadable, this commit fixes that behavior.
2021-01-18Merge branch 'experimental' into mitchej123_cleanupMartin Robertz