Skip to content

Commit d13920b

Browse files
committed
remove heated ingots
1 parent 96ad982 commit d13920b

27 files changed

Lines changed: 1455 additions & 14 deletions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mapping_version=1.20.1
1414
mod_id=toolworking
1515
mod_name=Create Toolworking
1616
mod_license=Apache 2.0
17-
mod_version=0.1.9-ALPHA
17+
mod_version=0.2.1-ALPHA
1818
mod_group_id=dev.jodevnull
1919
mod_authors=jo-devnull
2020
mod_description=Toolmaking is harder and more realistic
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# This is the configuration file for Embeddium.
2+
#
3+
# You can find information on editing this file and all the available options here:
4+
# https://github.com/jellysquid3/sodium-fabric/wiki/Configuration-File
5+
#
6+
# By default, this file will be empty except for this notice.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"quality": {
3+
"weather_quality": "DEFAULT",
4+
"leaves_quality": "DEFAULT",
5+
"enable_vignette": true,
6+
"use_quad_normals_for_shading": false
7+
},
8+
"advanced": {
9+
"enable_memory_tracing": false,
10+
"use_advanced_staging_buffers": true,
11+
"disable_incompatible_mod_warnings": false,
12+
"cpu_render_ahead_limit": 3
13+
},
14+
"performance": {
15+
"chunk_builder_threads": 0,
16+
"always_defer_chunk_updates_v2": true,
17+
"animate_only_visible_textures": true,
18+
"use_entity_culling": true,
19+
"use_fog_occlusion": true,
20+
"use_block_face_culling": true,
21+
"use_compact_vertex_format": true,
22+
"use_translucent_face_sorting_v2": true,
23+
"use_no_error_g_l_context": true
24+
},
25+
"notifications": {
26+
"force_disable_donation_prompts": false,
27+
"has_cleared_donation_button": false,
28+
"has_seen_donation_prompt": false
29+
}
30+
}

run-data/config/fml.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#Early window height
2+
earlyWindowHeight = 480
3+
#Enable forge global version checking
4+
versionCheck = true
5+
#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them.
6+
earlyWindowControl = true
7+
#Early window framebuffer scale
8+
earlyWindowFBScale = 1
9+
#Early window provider
10+
earlyWindowProvider = "fmlearlywindow"
11+
#Early window width
12+
earlyWindowWidth = 854
13+
#Early window starts maximized
14+
earlyWindowMaximized = false
15+
#Default config path for servers
16+
defaultConfigPath = "defaultconfigs"
17+
#Disables Optimized DFU client-side - already disabled on servers
18+
disableOptimizedDFU = true
19+
#Skip specific GL versions, may help with buggy graphics card drivers
20+
earlyWindowSkipGLVersions = []
21+
#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch
22+
earlyWindowLogHelpMessage = true
23+
#Max threads for early initialization parallelism, -1 is based on processor count
24+
maxThreads = -1
25+
#Squir?
26+
earlyWindowSquir = false
27+
#Whether to show CPU usage stats in early window
28+
earlyWindowShowCPU = false
29+

run-data/config/jei/jei-client.ini

Lines changed: 238 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
[appearance]
2+
# Description: Move the JEI search bar to the bottom center of the screen.
3+
# Valid Values: [true, false]
4+
# Default Value: false
5+
CenterSearch = false
6+
7+
# Description: Max recipe GUI height.
8+
# Valid Values: Any integer greater than or equal to 175
9+
# Default Value: 350
10+
RecipeGuiHeight = 350
11+
12+
13+
[cheat_mode]
14+
# Description: Choose if JEI should give ingredients directly to the inventory or pick them up with the mouse.
15+
# Valid Values: [INVENTORY, MOUSE_PICKUP]
16+
# Default Value: MOUSE_PICKUP
17+
GiveMode = MOUSE_PICKUP
18+
19+
# Description: Enable cheating items into the hotbar by using Shift + numeric keys.
20+
# Valid Values: [true, false]
21+
# Default Value: false
22+
CheatToHotbarUsingHotkeysEnabled = false
23+
24+
# Description: Enable showing items that are not in the creative menu.
25+
# Valid Values: [true, false]
26+
# Default Value: false
27+
ShowHiddenItems = false
28+
29+
30+
[bookmarks]
31+
# Description: Add new bookmarks to the front of the bookmark list instead of the end.
32+
# Valid Values: [true, false]
33+
# Default Value: false
34+
AddBookmarksToFrontEnabled = false
35+
36+
# Description: Extra features for bookmark tooltips.
37+
# Valid Values: A comma-separated list containing values of:
38+
# [PREVIEW, INGREDIENTS]
39+
# Default Value: PREVIEW
40+
BookmarkTooltipFeatures = PREVIEW
41+
42+
# Description: Hold Shift to show bookmark tooltip features.
43+
# Valid Values: [true, false]
44+
# Default Value: true
45+
HoldShiftToShowBookmarkTooltipFeatures = true
46+
47+
# Description: Drag bookmarks to rearrange them in the list.
48+
# Valid Values: [true, false]
49+
# Default Value: true
50+
DragToRearrangeBookmarksEnabled = true
51+
52+
53+
[advanced]
54+
# Description: Set low-memory mode (makes search very slow but uses less RAM).
55+
# Valid Values: [true, false]
56+
# Default Value: false
57+
LowMemorySlowSearchEnabled = false
58+
59+
# Description: Catch render errors from ingredients and attempt to recover from them instead of crashing.
60+
# Valid Values: [true, false]
61+
# Default Value: false
62+
CatchRenderErrorsEnabled = false
63+
64+
# Description: When looking up recipes with items that contain fluids, also look up recipes for the fluids.
65+
# Valid Values: [true, false]
66+
# Default Value: false
67+
lookupFluidContentsEnabled = false
68+
69+
# Description: When searching for item tags, also include tags for the default blocks contained in the items.
70+
# Valid Values: [true, false]
71+
# Default Value: true
72+
lookupBlockTagsEnabled = true
73+
74+
# Description: Show recipes for ingredient tags like item tags and block tags.
75+
# Valid Values: [true, false]
76+
# Default Value: true
77+
showTagRecipesEnabled = true
78+
79+
# Description: Show creative tab names in ingredient tooltips.
80+
# Valid Values: [true, false]
81+
# Default Value: false
82+
showCreativeTabNamesEnabled = false
83+
84+
85+
[input]
86+
# Description: Number of milliseconds before a long mouse click is considered a drag operation.
87+
# Valid Values: An integer in the range [0, 1000] (inclusive)
88+
# Default Value: 150
89+
dragDelayInMilliseconds = 150
90+
91+
# Description: Scroll rate for scrolling the mouse wheel in smooth-scrolling scroll boxes. Measured in pixels.
92+
# Valid Values: An integer in the range [1, 50] (inclusive)
93+
# Default Value: 9
94+
smoothScrollRate = 9
95+
96+
97+
[sorting]
98+
# Description: Sorting order for the ingredient list.
99+
# Valid Values: A comma-separated list containing values of:
100+
# [MOD_NAME, INGREDIENT_TYPE, ALPHABETICAL, CREATIVE_MENU, TAG, ARMOR, MAX_DURABILITY]
101+
# Default Value: MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU
102+
IngredientSortStages = MOD_NAME, INGREDIENT_TYPE, CREATIVE_MENU
103+
104+
# Description: Sorting order for displayed recipes.
105+
# Valid Values: A comma-separated list containing values of:
106+
# [BOOKMARKED, CRAFTABLE]
107+
# Default Value: BOOKMARKED, CRAFTABLE
108+
RecipeSorterStages = BOOKMARKED, CRAFTABLE
109+
110+
111+
[tags]
112+
# Description: Show tag content in tooltips.
113+
# Valid Values: [true, false]
114+
# Default Value: true
115+
TagContentTooltipEnabled = true
116+
117+
# Description: Hide tags that only have 1 ingredient.
118+
# Valid Values: [true, false]
119+
# Default Value: true
120+
HideSingleIngredientTagsEnabled = true
121+
122+
123+
[search]
124+
# Description: Search mode for mod names (prefix: @).
125+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
126+
# Default Value: REQUIRE_PREFIX
127+
ModNameSearchMode = REQUIRE_PREFIX
128+
129+
# Description: Search mode for tooltips (prefix: #).
130+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
131+
# Default Value: ENABLED
132+
TooltipSearchMode = ENABLED
133+
134+
# Description: Search mode for tags (prefix: $).
135+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
136+
# Default Value: REQUIRE_PREFIX
137+
TagSearchMode = REQUIRE_PREFIX
138+
139+
# Description: Search mode for colors (prefix: ^).
140+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
141+
# Default Value: DISABLED
142+
ColorSearchMode = DISABLED
143+
144+
# Description: Search mode for resource locations (prefix: &).
145+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
146+
# Default Value: DISABLED
147+
ResourceLocationSearchMode = DISABLED
148+
149+
# Description: Search mode for creative mode tab names (prefix: %).
150+
# Valid Values: [ENABLED, REQUIRE_PREFIX, DISABLED]
151+
# Default Value: DISABLED
152+
CreativeTabSearchMode = DISABLED
153+
154+
# Description: Search in advanced tooltips (visible with F3 + H).
155+
# Valid Values: [true, false]
156+
# Default Value: false
157+
SearchAdvancedTooltips = false
158+
159+
# Description: Search mod IDs in addition to mod names.
160+
# Valid Values: [true, false]
161+
# Default Value: true
162+
SearchModIds = true
163+
164+
# Description: Search by the shorthand first letters of a mod's name.
165+
# Valid Values: [true, false]
166+
# Default Value: true
167+
SearchShortModNames = true
168+
169+
# Description: Search ingredient aliases (alternative names) that are added by plugins, in addition to ingredient names.
170+
# Valid Values: [true, false]
171+
# Default Value: true
172+
SearchIngredientAliases = true
173+
174+
175+
[IngredientList]
176+
# Description: Max number of rows shown.
177+
# Valid Values: An integer in the range [1, 100] (inclusive)
178+
# Default Value: 16
179+
MaxRows = 16
180+
181+
# Description: Max number of columns shown.
182+
# Valid Values: An integer in the range [4, 100] (inclusive)
183+
# Default Value: 9
184+
MaxColumns = 9
185+
186+
# Description: Horizontal alignment of the ingredient grid inside the available area.
187+
# Valid Values: [LEFT, CENTER, RIGHT]
188+
# Default Value: RIGHT
189+
HorizontalAlignment = RIGHT
190+
191+
# Description: Vertical alignment of the ingredient grid inside the available area.
192+
# Valid Values: [TOP, CENTER, BOTTOM]
193+
# Default Value: TOP
194+
VerticalAlignment = TOP
195+
196+
# Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages.
197+
# Valid Values: [ENABLED, AUTO_HIDE, DISABLED]
198+
# Default Value: ENABLED
199+
ButtonNavigationVisibility = ENABLED
200+
201+
# Description: Enable this to draw a background texture behind the GUI.
202+
# Valid Values: [true, false]
203+
# Default Value: false
204+
DrawBackground = false
205+
206+
207+
[BookmarkList]
208+
# Description: Max number of rows shown.
209+
# Valid Values: An integer in the range [1, 100] (inclusive)
210+
# Default Value: 16
211+
MaxRows = 16
212+
213+
# Description: Max number of columns shown.
214+
# Valid Values: An integer in the range [4, 100] (inclusive)
215+
# Default Value: 9
216+
MaxColumns = 9
217+
218+
# Description: Horizontal alignment of the ingredient grid inside the available area.
219+
# Valid Values: [LEFT, CENTER, RIGHT]
220+
# Default Value: LEFT
221+
HorizontalAlignment = LEFT
222+
223+
# Description: Vertical alignment of the ingredient grid inside the available area.
224+
# Valid Values: [TOP, CENTER, BOTTOM]
225+
# Default Value: TOP
226+
VerticalAlignment = TOP
227+
228+
# Description: Visibility of the top page buttons. Use AUTO_HIDE to only show it when there are multiple pages.
229+
# Valid Values: [ENABLED, AUTO_HIDE, DISABLED]
230+
# Default Value: ENABLED
231+
ButtonNavigationVisibility = ENABLED
232+
233+
# Description: Enable this to draw a background texture behind the GUI.
234+
# Valid Values: [true, false]
235+
# Default Value: false
236+
DrawBackground = false
237+
238+

run-data/config/jei/jei-colors.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[colors]
2+
# Description: Color values to search for.
3+
# Valid Values: A comma-separated list containing values of:
4+
# Any color name and an RGB hex color, separated by a ':'
5+
# Default Value: White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0
6+
SearchColors = White:EEEEEE, LightBlue:7492CC, Cyan:00EEEE, Blue:2222DD, LapisBlue:25418B, Teal:008080, Yellow:CACB58, GoldenYellow:EED700, Orange:D97634, Pink:D1899D, HotPink:FC0FC0, Magenta:B24BBB, Purple:813EB9, EvilPurple:2E1649, Lavender:B57EDC, Indigo:480082, Sand:DBD3A0, Tan:BB9B63, LightBrown:A0522D, Brown:634B33, DarkBrown:3A2D13, LimeGreen:43B239, SlimeGreen:83CB73, Green:008000, DarkGreen:224D22, GrassGreen:548049, Red:963430, BrickRed:B0604B, NetherBrick:2A1516, Redstone:CE3E36, Black:181515, CharcoalGray:464646, IronGray:646464, Gray:808080, Silver:C0C0C0
7+
8+

run-data/config/jei/jei-debug.ini

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[debug]
2+
# Description: Debug mode enabled.
3+
# Valid Values: [true, false]
4+
# Default Value: false
5+
DebugMode = false
6+
7+
# Description: Debug GUIs enabled.
8+
# Valid Values: [true, false]
9+
# Default Value: false
10+
DebugGuis = false
11+
12+
# Description: Debug inputs enabled.
13+
# Valid Values: [true, false]
14+
# Default Value: false
15+
DebugInputs = false
16+
17+
# Description: Add debug information to ingredient tooltips when advanced tooltips are enabled.
18+
# Valid Values: [true, false]
19+
# Default Value: false
20+
debugInfoTooltipsEnabled = false
21+
22+
# Description: Adds ingredients to JEI that intentionally crash, to help debug JEI.
23+
# Valid Values: [true, false]
24+
# Default Value: false
25+
CrashingTestItemsEnabled = false
26+
27+
# Description: Log information about the suffix trees used for searching, to help debug JEI.
28+
# Valid Values: [true, false]
29+
# Default Value: false
30+
logSuffixTreeStats = false
31+
32+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[modname]
2+
# Description: Formatting for the mod names in tooltips for JEI GUIs. Leave blank to disable.
3+
# Valid Values: A chat formatting string.
4+
# Use these formatting colors:
5+
# black dark_blue dark_green dark_aqua dark_red dark_purple gold gray dark_gray blue green aqua red light_purple yellow white
6+
# With these formatting options:
7+
# obfuscated bold strikethrough underline italic
8+
# Default Value: blue italic
9+
ModNameFormat = blue italic
10+
11+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
[general]
3+
#Merge all dynamic resource packs from all mods that use this library into a single pack
4+
merge_dynamic_resource_packs = true
5+
#Prevents map texture from being upladed to GPU when only map markers have changed.Could increase performance
6+
lazy_map_upload = true
7+
#Renders map textures using mipmap. Vastly improves look from afar as well when inside a Map Atlas from Map Atlases or similar. Set to 0 to have no mipmap like vanilla
8+
#Range: 0 ~ 4
9+
maps_mipmap = 3
10+
#Fix minecraft entity shading to be exactly the same that blocks use. (1 for up,0.8 for north, 0.6 for west and 0.5 for down).This means that if you have a model and render it with a tile renderer or entity it will appear identical as one rendered via baked models.Using no gui will prevent it from changing item rendered in GUIs, in case you dont like that look.Note there is a known compat issue with Figura mod. Keep this True or False with that one
11+
#Allowed Values: FALSE, NO_GUI, TRUE
12+
consistent_entity_renderer_shading = "NO_GUI"
13+
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
[general]
3+
#Clears dynamic models and textures from the mod dynamic pack once resource reload is done. This can save up some RAM. Turning off if you notice inconsistencies with pack loading
4+
clear_dynamic_resources = false
5+
#ONLY for debugging purpose. Turns one some debug functionality like more logging or blocktypes_debug.txt, the file can be found in ~/.minecraft/debug/dynamic_registry_dump...
6+
extra_debug = false
7+
#Enable this will list each BlockTypes' Children. The List of BlockTypes' children will be also in the same file via EXTRA_DEBUG. NOTE: To enable this, EXTRA_DEBUG must be enabled, too.
8+
extra_children_debug = false
9+

0 commit comments

Comments
 (0)