summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2024-01-11 23:11:27 +0100
committerGravatar Uko Kokņevičs2024-01-11 23:11:27 +0100
commitbca6a74e9a17e04de419743850f66af96a6473cc (patch)
tree6f81c0ceb615b0a85810df89ea9acafe6112eba9 /src/main/resources
parentMaking SheetsMixin more extensible (diff)
downloadmc-eris-alchemy-bca6a74e9a17e04de419743850f66af96a6473cc.tar.gz
mc-eris-alchemy-bca6a74e9a17e04de419743850f66af96a6473cc.tar.xz
mc-eris-alchemy-bca6a74e9a17e04de419743850f66af96a6473cc.zip
Move default emc values to JSON files in datapack
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/data/eris_alchemy/eris_alchemy/block_tag_emcs/minecraft.json5
-rw-r--r--src/main/resources/data/eris_alchemy/eris_alchemy/fake_recipes/fake_recipes.json5562
-rw-r--r--src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/minecraft.json307
-rw-r--r--src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/patchouli.json3
-rw-r--r--src/main/resources/data/eris_alchemy/eris_alchemy/item_tag_emcs/minecraft.json20
-rw-r--r--src/main/resources/eris_alchemy.mixins.json4
6 files changed, 897 insertions, 4 deletions
diff --git a/src/main/resources/data/eris_alchemy/eris_alchemy/block_tag_emcs/minecraft.json b/src/main/resources/data/eris_alchemy/eris_alchemy/block_tag_emcs/minecraft.json
new file mode 100644
index 0000000..c271159
--- /dev/null
+++ b/src/main/resources/data/eris_alchemy/eris_alchemy/block_tag_emcs/minecraft.json
@@ -0,0 +1,5 @@
1{
2 "minecraft:base_stone_nether": 1,
3 "minecraft:base_stone_overworld": 1,
4 "minecraft:nylium": 1
5} \ No newline at end of file
diff --git a/src/main/resources/data/eris_alchemy/eris_alchemy/fake_recipes/fake_recipes.json5 b/src/main/resources/data/eris_alchemy/eris_alchemy/fake_recipes/fake_recipes.json5
new file mode 100644
index 0000000..4511005
--- /dev/null
+++ b/src/main/resources/data/eris_alchemy/eris_alchemy/fake_recipes/fake_recipes.json5
@@ -0,0 +1,562 @@
1[{
2 // More oxidised coppers are worth less
3 "output": {
4 "item": "exposed_copper",
5 "count": 4
6 },
7 "input": {
8 "item": "copper_block",
9 "count": 3
10 }
11}, {
12 "output": {
13 "item": "weathered_copper",
14 "count": 4
15 },
16 "input": {
17 "item": "copper_block",
18 "count": 2
19 }
20}, {
21 "output": {
22 "item": "oxidized_copper",
23 "count": 4
24 },
25 "input": {
26 "item": "copper_block",
27 "count": 1
28 }
29}, {
30 // More oxidised coppers are worth less also if they're waxed
31 "output": {
32 "item": "waxed_exposed_copper",
33 "count": 4
34 },
35 "input": {
36 "item": "waxed_copper_block",
37 "count": 3
38 }
39}, {
40 "output": {
41 "item": "waxed_weathered_copper",
42 "count": 4
43 },
44 "input": {
45 "item": "waxed_copper_block",
46 "count": 2
47 }
48}, {
49 "output": {
50 "item": "waxed_oxidized_copper",
51 "count": 4
52 },
53 "input": {
54 "item": "waxed_copper_block",
55 "count": 1
56 }
57}, {
58 // More damaged anvils are worth less
59 "output": {
60 "item": "chipped_anvil",
61 "count": 3
62 },
63 "input": {
64 "item": "anvil",
65 "count": 2
66 }
67}, {
68 "output": {
69 "item": "damaged_anvil",
70 "count": 3
71 },
72 "input": {
73 "item": "anvil",
74 "count": 1
75 }
76}, {
77 // Old oak slabs are the same value as modern ones
78 "output": "petrified_oak_slab",
79 "input": "oak_slab"
80}, {
81 // Chainmail armour is worth the same as normal iron armor
82 "output": "chainmail_helmet",
83 "input": "iron_helmet"
84}, {
85 "output": "chainmail_chestplate",
86 "input": "iron_chestplate"
87}, {
88 "output": "chainmail_leggings",
89 "input": "iron_leggings"
90}, {
91 "output": "chainmail_boots",
92 "input": "iron_boots"
93}, {
94 // Enchanted golden apple is worth uhh 16 times the non-enchanted one :3
95 "output": "enchanted_golden_apple",
96 "input": {
97 "item": "golden_apple",
98 "count": 16
99 }
100}, {
101 // Carving a pumpkin with shears
102 "output": "carved_pumpkin",
103 "remainder": {
104 "item": "pumpkin_seeds",
105 "count": 4
106 },
107 "input": "pumpkin"
108}, {
109 // Gathering honey
110 "output": "honey_bottle",
111 "input": [
112 "honeycomb",
113 "glass_bottle"
114 ]
115}, {
116 // Smithing template duplication recipes but -1 template on both sides
117 "output": "coast_armor_trim_smithing_template",
118 "input": [
119 {
120 "item": "diamond",
121 "count": 7
122 },
123 "cobblestone"
124 ]
125}, {
126 "output": "dune_armor_trim_smithing_template",
127 "input": [
128 {
129 "item": "diamond",
130 "count": 7
131 },
132 "sandstone"
133 ]
134}, {
135 "output": "eye_armor_trim_smithing_template",
136 "input": [
137 {
138 "item": "diamond",
139 "count": 7
140 },
141 "end_stone"
142 ]
143}, {
144 "output": "host_armor_trim_smithing_template",
145 "input": [
146 {
147 "item": "diamond",
148 "count": 7
149 },
150 "terracotta"
151 ]
152}, {
153 "output": "netherite_upgrade_smithing_template",
154 "input": [
155 {
156 "item": "diamond",
157 "count": 7
158 },
159 "netherrack"
160 ]
161}, {
162 "output": "raiser_armor_trim_smithing_template",
163 "input": [
164 {
165 "item": "diamond",
166 "count": 7
167 },
168 "terracotta"
169 ]
170}, {
171 "output": "rib_armor_trim_smithing_template",
172 "input": [
173 {
174 "item": "diamond",
175 "count": 7
176 },
177 "netherrack"
178 ]
179}, {
180 "output": "sentry_armor_trim_smithing_template",
181 "input": [
182 {
183 "item": "diamond",
184 "count": 7
185 },
186 "cobblestone"
187 ]
188}, {
189 "output": "shaper_armor_trim_smithing_template",
190 "input": [
191 {
192 "item": "diamond",
193 "count": 7
194 },
195 "terracotta"
196 ]
197}, {
198 "output": "silence_armor_trim_smithing_template",
199 "input": [
200 {
201 "item": "diamond",
202 "count": 7
203 },
204 "cobbled_deepslate"
205 ]
206}, {
207 "output": "snout_armor_trim_smithing_template",
208 "input": [
209 {
210 "item": "diamond",
211 "count": 7
212 },
213 "blackstone"
214 ]
215}, {
216 "output": "spire_armor_trim_smithing_template",
217 "input": [
218 {
219 "item": "diamond",
220 "count": 7
221 },
222 "purpur_block"
223 ]
224}, {
225 "output": "tide_armor_trim_smithing_template",
226 "input": [
227 {
228 "item": "diamond",
229 "count": 7
230 },
231 "prismarine"
232 ]
233}, {
234 "output": "vex_armor_trim_smithing_template",
235 "input": [
236 {
237 "item": "diamond",
238 "count": 7
239 },
240 "cobblestone"
241 ]
242}, {
243 "output": "ward_armor_trim_smithing_template",
244 "input": [
245 {
246 "item": "diamond",
247 "count": 7
248 },
249 "cobbled_deepslate"
250 ]
251}, {
252 "output": "wayfinder_armor_trim_smithing_template",
253 "input": [
254 {
255 "item": "diamond",
256 "count": 7
257 },
258 "terracotta"
259 ]
260}, {
261 "output": "wild_armor_trim_smithing_template",
262 "input": [
263 {
264 "item": "diamond",
265 "count": 7
266 },
267 "mossy_cobblestone"
268 ]
269}, {
270 "output": "water_bucket",
271 "input": [
272 "bucket",
273 "stone" // Pretend this is water
274 ]
275}, {
276 "output": "lava_bucket",
277 "input": [
278 "bucket",
279 "obsidian" // Pretend this is lava
280 ]
281}, {
282 "output": "powder_snow_bucket",
283 "input": [
284 "bucket",
285 "snow"
286 ]
287}, {
288 "output": "milk_bucket",
289 "input": [
290 "bucket",
291 "wheat" // Pretend this is milk
292 ]
293}, {
294 "output": "cod_bucket",
295 "input": [
296 "cod",
297 "bucket"
298 ]
299}, {
300 "output": "pufferfish_bucket",
301 "input": [
302 "pufferfish",
303 "bucket"
304 ]
305}, {
306 "output": "salmon_bucket",
307 "input": [
308 "salmon",
309 "bucket"
310 ]
311}, {
312 "output": "tropical_fish_bucket",
313 "input": [
314 "tropical_fish",
315 "bucket"
316 ]
317}, {
318 "output": "axolotl_bucket",
319 "input": "tropical_fish_bucket"
320}, {
321 "output": "tadpole_bucket",
322 "input": "axolotl_bucket"
323}, {
324 // disc value is the canon
325 "output": {
326 "item": "disc_fragment_5",
327 "count": 9
328 },
329 "input": "music_disc_5"
330}, {
331 "output": "glow_ink_sac",
332 "input": {
333 "item": "ink_sac",
334 "count": 4
335 }
336}, {
337 "output": "filled_map",
338 "input": "map"
339}, {
340 "output": {
341 "item": "poisonous_potato",
342 "count": 2
343 },
344 "input": "potato"
345}, {
346 "output": "rabbit_foot",
347 "input": {
348 "item": "rabbit",
349 "count": 8
350 }
351}, {
352 // leather horse armor takes same amount of leather as leather leggings
353 // so we do a similar exchange for iron, gold, & diamond
354 "output": "iron_horse_armor",
355 "input": "iron_leggings"
356}, {
357 "output": "golden_horse_armor",
358 "input": "golden_leggings"
359}, {
360 "output": "diamond_horse_armor",
361 "input": "diamond_leggings"
362}, {
363 "output": {
364 "item": "trident",
365 "count": 2
366 },
367 "input": {
368 "item": "iron_sword",
369 "count": 3
370 }
371}, {
372 "output": "suspicious_stew",
373 "input": [
374 "bowl",
375 "brown_mushroom",
376 "red_mushroom",
377 "poppy"
378 ]
379}, {
380 "output": "globe_banner_pattern",
381 "input": "creeper_banner_pattern"
382}, {
383 "output": "piglin_banner_pattern",
384 "input": "creeper_banner_pattern"
385}, {
386 "output": "bell",
387 "input": "spyglass"
388}, {
389 "output": "shroomlight",
390 "input": "glowstone"
391}, {
392 "output": "bee_nest",
393 "input": {
394 "item": "honeycomb",
395 "count": 9
396 }
397}, {
398 "output": "gilded_blackstone",
399 "input": [
400 "blackstone",
401 {
402 "item": "gold_nugget",
403 "count": 4
404 }
405 ]
406}, {
407 "output": "ochre_froglight",
408 "input": "magma_cream"
409}, {
410 "output": "pearlescent_froglight",
411 "input": "magma_cream"
412}, {
413 "output": "verdant_froglight",
414 "input": "magma_cream"
415}, {
416 "output": "black_concrete",
417 "input": "black_concrete_powder"
418}, {
419 "output": "blue_concrete",
420 "input": "blue_concrete_powder"
421}, {
422 "output": "brown_concrete",
423 "input": "brown_concrete_powder"
424}, {
425 "output": "cyan_concrete",
426 "input": "cyan_concrete_powder"
427}, {
428 "output": "gray_concrete",
429 "input": "gray_concrete_powder"
430}, {
431 "output": "green_concrete",
432 "input": "green_concrete_powder"
433}, {
434 "output": "light_blue_concrete",
435 "input": "light_blue_concrete_powder"
436}, {
437 "output": "light_gray_concrete",
438 "input": "light_gray_concrete_powder"
439}, {
440 "output": "lime_concrete",
441 "input": "lime_concrete_powder"
442}, {
443 "output": "magenta_concrete",
444 "input": "magenta_concrete_powder"
445}, {
446 "output": "orange_concrete",
447 "input": "orange_concrete_powder"
448}, {
449 "output": "pink_concrete",
450 "input": "pink_concrete_powder"
451}, {
452 "output": "purple_concrete",
453 "input": "purple_concrete_powder"
454}, {
455 "output": "red_concrete",
456 "input": "red_concrete_powder"
457}, {
458 "output": "white_concrete",
459 "input": "white_concrete_powder"
460}, {
461 "output": "yellow_concrete",
462 "input": "yellow_concrete_powder"
463}, {
464 "output": "black_shulker_box",
465 "input": [
466 "shulker_box",
467 "black_dye"
468 ]
469}, {
470 "output": "blue_shulker_box",
471 "input": [
472 "shulker_box",
473 "blue_dye"
474 ]
475}, {
476 "output": "brown_shulker_box",
477 "input": [
478 "shulker_box",
479 "brown_dye"
480 ]
481}, {
482 "output": "cyan_shulker_box",
483 "input": [
484 "shulker_box",
485 "cyan_dye"
486 ]
487}, {
488 "output": "gray_shulker_box",
489 "input": [
490 "shulker_box",
491 "gray_dye"
492 ]
493}, {
494 "output": "green_shulker_box",
495 "input": [
496 "shulker_box",
497 "green_dye"
498 ]
499}, {
500 "output": "light_blue_shulker_box",
501 "input": [
502 "shulker_box",
503 "light_blue_dye"
504 ]
505}, {
506 "output": "light_gray_shulker_box",
507 "input": [
508 "shulker_box",
509 "light_gray_dye"
510 ]
511}, {
512 "output": "lime_shulker_box",
513 "input": [
514 "shulker_box",
515 "lime_dye"
516 ]
517}, {
518 "output": "magenta_shulker_box",
519 "input": [
520 "shulker_box",
521 "magenta_dye"
522 ]
523}, {
524 "output": "orange_shulker_box",
525 "input": [
526 "shulker_box",
527 "orange_dye"
528 ]
529}, {
530 "output": "pink_shulker_box",
531 "input": [
532 "shulker_box",
533 "pink_dye"
534 ]
535}, {
536 "output": "purple_shulker_box",
537 "input": [
538 "shulker_box",
539 "purple_dye"
540 ]
541}, {
542 "output": "red_shulker_box",
543 "input": [
544 "shulker_box",
545 "red_dye"
546 ]
547}, {
548 "output": "white_shulker_box",
549 "input": [
550 "shulker_box",
551 "white_dye"
552 ]
553}, {
554 "output": "yellow_shulker_box",
555 "input": [
556 "shulker_box",
557 "yellow_dye"
558 ]
559}, {
560 "output": "stripped_bamboo_block",
561 "input": "bamboo_block"
562}] \ No newline at end of file
diff --git a/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/minecraft.json b/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/minecraft.json
new file mode 100644
index 0000000..d4066ce
--- /dev/null
+++ b/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/minecraft.json
@@ -0,0 +1,307 @@
1{
2 "minecraft:air": null,
3 "minecraft:allay_spawn_egg": null,
4 "minecraft:amethyst_cluster": null,
5 "minecraft:amethyst_shard": 1024,
6 "minecraft:ancient_debris": null,
7 "minecraft:apple": 128,
8 "minecraft:axolotl_spawn_egg": null,
9 "minecraft:bamboo": 2,
10 "minecraft:barrier": null,
11 "minecraft:bat_spawn_egg": null,
12 "minecraft:bedrock": null,
13 "minecraft:bee_spawn_egg": null,
14 "minecraft:beef": 64,
15 "minecraft:beetroot": 24,
16 "minecraft:beetroot_seeds": 16,
17 "minecraft:big_dripleaf": 1,
18 "minecraft:black_dye": 8,
19 "minecraft:blaze_rod": 1536,
20 "minecraft:blaze_spawn_egg": null,
21 "minecraft:blue_dye": 8,
22 "minecraft:bone": 96,
23 "minecraft:brain_coral": 1.0,
24 "minecraft:brain_coral_block": 1.0,
25 "minecraft:brain_coral_fan": 1.0,
26 "minecraft:brown_dye": 8,
27 "minecraft:brown_mushroom": 32,
28 "minecraft:brown_mushroom_block": null,
29 "minecraft:bubble_coral": 1.0,
30 "minecraft:bubble_coral_block": 1.0,
31 "minecraft:bubble_coral_fan": 1.0,
32 "minecraft:budding_amethyst": null,
33 "minecraft:bundle": null,
34 "minecraft:cactus": 8,
35 "minecraft:calcite": 1,
36 "minecraft:camel_spawn_egg": null,
37 "minecraft:carrot": 24,
38 "minecraft:cat_spawn_egg": null,
39 "minecraft:cave_spider_spawn_egg": null,
40 "minecraft:chain_command_block": null,
41 "minecraft:chicken": 64,
42 "minecraft:chicken_spawn_egg": null,
43 "minecraft:chorus_flower": 32,
44 "minecraft:chorus_fruit": 32,
45 "minecraft:chorus_plant": 24,
46 "minecraft:clay_ball": 64,
47 "minecraft:coal": 128,
48 "minecraft:cobbled_deepslate": 1,
49 "minecraft:cobblestone": 1,
50 "minecraft:cobweb": 12,
51 "minecraft:cocoa_beans": 8,
52 "minecraft:cod_spawn_egg": null,
53 "minecraft:command_block": null,
54 "minecraft:command_block_minecart": null,
55 "minecraft:copper_ingot": 85,
56 "minecraft:cow_spawn_egg": null,
57 "minecraft:creeper_head": 34816,
58 "minecraft:creeper_spawn_egg": null,
59 "minecraft:crimson_fungus": 24,
60 "minecraft:crimson_roots": 1,
61 "minecraft:crying_obsidian": 64,
62 "minecraft:cyan_dye": 8,
63 "minecraft:dead_brain_coral": 1.0,
64 "minecraft:dead_brain_coral_block": 1.0,
65 "minecraft:dead_brain_coral_fan": 1.0,
66 "minecraft:dead_bubble_coral": 1.0,
67 "minecraft:dead_bubble_coral_block": 1.0,
68 "minecraft:dead_bubble_coral_fan": 1.0,
69 "minecraft:dead_bush": 1,
70 "minecraft:dead_fire_coral": 1.0,
71 "minecraft:dead_fire_coral_block": 1.0,
72 "minecraft:dead_fire_coral_fan": 1.0,
73 "minecraft:dead_horn_coral": 1.0,
74 "minecraft:dead_horn_coral_block": 1.0,
75 "minecraft:dead_horn_coral_fan": 1.0,
76 "minecraft:dead_tube_coral": 1.0,
77 "minecraft:dead_tube_coral_block": 1.0,
78 "minecraft:dead_tube_coral_fan": 1.0,
79 "minecraft:debug_stick": null,
80 "minecraft:diamond": 8192,
81 "minecraft:dirt_path": 1,
82 "minecraft:dolphin_spawn_egg": null,
83 "minecraft:donkey_spawn_egg": null,
84 "minecraft:dragon_breath": 34816,
85 "minecraft:dragon_egg": 139264,
86 "minecraft:dragon_head": 34816,
87 "minecraft:drowned_spawn_egg": null,
88 "minecraft:echo_shard": 128,
89 "minecraft:egg": 32,
90 "minecraft:elder_guardian_spawn_egg": null,
91 "minecraft:elytra": 8196,
92 "minecraft:emerald": 1024,
93 "minecraft:enchanted_book": null,
94 "minecraft:end_portal_frame": null,
95 "minecraft:end_stone": 1,
96 "minecraft:ender_dragon_spawn_egg": null,
97 "minecraft:ender_pearl": 1024,
98 "minecraft:enderman_spawn_egg": null,
99 "minecraft:endermite_spawn_egg": null,
100 "minecraft:evoker_spawn_egg": null,
101 "minecraft:experience_bottle": null,
102 "minecraft:farmland": null,
103 "minecraft:feather": 48,
104 "minecraft:fern": 1,
105 "minecraft:fire_coral": 1.0,
106 "minecraft:fire_coral_block": 1.0,
107 "minecraft:fire_coral_fan": 1.0,
108 "minecraft:firework_star": null,
109 "minecraft:flint": 4,
110 "minecraft:fox_spawn_egg": null,
111 "minecraft:frog_spawn_egg": null,
112 "minecraft:frogspawn": null,
113 "minecraft:ghast_spawn_egg": null,
114 "minecraft:ghast_tear": 4096,
115 "minecraft:glow_berries": 8,
116 "minecraft:glow_lichen": 8,
117 "minecraft:glow_squid_spawn_egg": null,
118 "minecraft:glowstone_dust": 384,
119 "minecraft:goat_horn": 32,
120 "minecraft:goat_spawn_egg": null,
121 "minecraft:gold_ingot": 2048,
122 "minecraft:gold_nugget": 227.556,
123 "minecraft:grass": 1,
124 "minecraft:gravel": 4,
125 "minecraft:gray_dye": 8,
126 "minecraft:green_dye": 8,
127 "minecraft:guardian_spawn_egg": null,
128 "minecraft:gunpowder": 192,
129 "minecraft:hanging_roots": 1,
130 "minecraft:heart_of_the_sea": 4096,
131 "minecraft:hoglin_spawn_egg": null,
132 "minecraft:honeycomb": 24,
133 "minecraft:horn_coral": 1.0,
134 "minecraft:horn_coral_block": 1.0,
135 "minecraft:horn_coral_fan": 1.0,
136 "minecraft:horse_spawn_egg": null,
137 "minecraft:husk_spawn_egg": null,
138 "minecraft:ice": 1,
139 "minecraft:infested_chiseled_stone_bricks": null,
140 "minecraft:infested_cobblestone": null,
141 "minecraft:infested_cracked_stone_bricks": null,
142 "minecraft:infested_deepslate": null,
143 "minecraft:infested_mossy_stone_bricks": null,
144 "minecraft:infested_stone": null,
145 "minecraft:infested_stone_bricks": null,
146 "minecraft:ink_sac": 8,
147 "minecraft:iron_golem_spawn_egg": null,
148 "minecraft:iron_ingot": 256,
149 "minecraft:iron_nugget": 28.4444,
150 "minecraft:jigsaw": null,
151 "minecraft:kelp": 32,
152 "minecraft:knowledge_book": null,
153 "minecraft:lapis_lazuli": 864,
154 "minecraft:large_amethyst_bud": null,
155 "minecraft:large_fern": 1,
156 "minecraft:leather": 64,
157 "minecraft:light": null,
158 "minecraft:light_blue_dye": 8,
159 "minecraft:light_gray_dye": 8,
160 "minecraft:lily_pad": 16,
161 "minecraft:lime_dye": 8,
162 "minecraft:lingering_potion": null,
163 "minecraft:llama_spawn_egg": null,
164 "minecraft:magenta_dye": 8,
165 "minecraft:magma_cube_spawn_egg": null,
166 "minecraft:mangrove_roots": 1,
167 "minecraft:medium_amethyst_bud": null,
168 "minecraft:melon_slice": 144,
169 "minecraft:mooshroom_spawn_egg": null,
170 "minecraft:mud": 1,
171 "minecraft:mule_spawn_egg": null,
172 "minecraft:mushroom_stem": null,
173 "minecraft:mutton": 64,
174 "minecraft:name_tag": null,
175 "minecraft:nautilus_shell": 64,
176 "minecraft:nether_quartz_ore": null,
177 "minecraft:nether_sprouts": 1,
178 "minecraft:nether_star": 139264,
179 "minecraft:nether_wart": 24,
180 "minecraft:netherite_scrap": 16384,
181 "minecraft:obsidian": 64,
182 "minecraft:ocelot_spawn_egg": null,
183 "minecraft:orange_dye": 8,
184 "minecraft:panda_spawn_egg": null,
185 "minecraft:parrot_spawn_egg": null,
186 "minecraft:phantom_membrane": 96,
187 "minecraft:phantom_spawn_egg": null,
188 "minecraft:pig_spawn_egg": null,
189 "minecraft:piglin_brute_spawn_egg": null,
190 "minecraft:piglin_head": 34816,
191 "minecraft:piglin_spawn_egg": null,
192 "minecraft:pillager_spawn_egg": null,
193 "minecraft:pink_dye": 8,
194 "minecraft:pitcher_pod": 8,
195 "minecraft:player_head": 34816,
196 "minecraft:pointed_dripstone": 0.25,
197 "minecraft:polar_bear_spawn_egg": null,
198 "minecraft:porkchop": 64,
199 "minecraft:potato": 24,
200 "minecraft:potion": null,
201 "minecraft:prismarine_crystals": 384,
202 "minecraft:prismarine_shard": 0.25,
203 "minecraft:pufferfish_spawn_egg": null,
204 "minecraft:pumpkin": 144,
205 "minecraft:purple_dye": 8,
206 "minecraft:quartz": 64,
207 "minecraft:rabbit": 64,
208 "minecraft:rabbit_hide": 64,
209 "minecraft:rabbit_spawn_egg": null,
210 "minecraft:ravager_spawn_egg": null,
211 "minecraft:raw_copper": null,
212 "minecraft:raw_copper_block": null,
213 "minecraft:raw_gold": null,
214 "minecraft:raw_gold_block": null,
215 "minecraft:raw_iron": null,
216 "minecraft:raw_iron_block": null,
217 "minecraft:red_dye": 8,
218 "minecraft:red_mushroom": 32,
219 "minecraft:red_mushroom_block": null,
220 "minecraft:redstone": 64,
221 "minecraft:reinforced_deepslate": null,
222 "minecraft:repeating_command_block": null,
223 "minecraft:rotten_flesh": 24,
224 "minecraft:saddle": 192,
225 "minecraft:salmon_spawn_egg": null,
226 "minecraft:sculk": 1,
227 "minecraft:sculk_catalyst": 16,
228 "minecraft:sculk_sensor": 32,
229 "minecraft:sculk_shrieker": 16,
230 "minecraft:sculk_vein": 1,
231 "minecraft:scute": 32,
232 "minecraft:sea_pickle": 1,
233 "minecraft:seagrass": 1,
234 "minecraft:sheep_spawn_egg": null,
235 "minecraft:shulker_shell": 256,
236 "minecraft:shulker_spawn_egg": null,
237 "minecraft:silverfish_spawn_egg": null,
238 "minecraft:skeleton_horse_spawn_egg": null,
239 "minecraft:skeleton_skull": 34816,
240 "minecraft:skeleton_spawn_egg": null,
241 "minecraft:slime_ball": 24,
242 "minecraft:slime_spawn_egg": null,
243 "minecraft:small_amethyst_bud": null,
244 "minecraft:small_dripleaf": 1,
245 "minecraft:sniffer_egg": 32,
246 "minecraft:sniffer_spawn_egg": null,
247 "minecraft:snow_golem_spawn_egg": null,
248 "minecraft:snowball": 1,
249 "minecraft:soul_sand": 49,
250 "minecraft:soul_soil": 49,
251 "minecraft:spawner": null,
252 "minecraft:spider_eye": 128,
253 "minecraft:spider_spawn_egg": null,
254 "minecraft:splash_potion": null,
255 "minecraft:sponge": 48,
256 "minecraft:spore_blossom": 1,
257 "minecraft:squid_spawn_egg": null,
258 "minecraft:stick": 4,
259 "minecraft:stray_spawn_egg": null,
260 "minecraft:strider_spawn_egg": null,
261 "minecraft:string": 12,
262 "minecraft:structure_block": null,
263 "minecraft:structure_void": null,
264 "minecraft:sugar_cane": 32,
265 "minecraft:suspicious_gravel": 4,
266 "minecraft:sweet_berries": 8,
267 "minecraft:tadpole_spawn_egg": null,
268 "minecraft:tall_grass": 1,
269 "minecraft:tipped_arrow": null,
270 "minecraft:torchflower_seeds": 8,
271 "minecraft:totem_of_undying": 4096,
272 "minecraft:trader_llama_spawn_egg": null,
273 "minecraft:tropical_fish_spawn_egg": null,
274 "minecraft:tube_coral": 1.0,
275 "minecraft:tube_coral_block": 1.0,
276 "minecraft:tube_coral_fan": 1.0,
277 "minecraft:turtle_egg": 32,
278 "minecraft:turtle_spawn_egg": null,
279 "minecraft:twisting_vines": 8,
280 "minecraft:vex_spawn_egg": null,
281 "minecraft:villager_spawn_egg": null,
282 "minecraft:vindicator_spawn_egg": null,
283 "minecraft:vine": 8,
284 "minecraft:wandering_trader_spawn_egg": null,
285 "minecraft:warden_spawn_egg": null,
286 "minecraft:warped_fungus": 24,
287 "minecraft:warped_roots": 1,
288 "minecraft:warped_wart_block": 1,
289 "minecraft:weeping_vines": 8,
290 "minecraft:wet_sponge": 48,
291 "minecraft:wheat": 24,
292 "minecraft:wheat_seeds": 16,
293 "minecraft:white_dye": 8,
294 "minecraft:witch_spawn_egg": null,
295 "minecraft:wither_skeleton_skull": 34816,
296 "minecraft:wither_skeleton_spawn_egg": null,
297 "minecraft:wither_spawn_egg": null,
298 "minecraft:wolf_spawn_egg": null,
299 "minecraft:written_book": null,
300 "minecraft:yellow_dye": 8,
301 "minecraft:zoglin_spawn_egg": null,
302 "minecraft:zombie_head": 34816,
303 "minecraft:zombie_horse_spawn_egg": null,
304 "minecraft:zombie_spawn_egg": null,
305 "minecraft:zombie_villager_spawn_egg": null,
306 "minecraft:zombified_piglin_spawn_egg": null
307} \ No newline at end of file
diff --git a/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/patchouli.json b/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/patchouli.json
new file mode 100644
index 0000000..6940bdf
--- /dev/null
+++ b/src/main/resources/data/eris_alchemy/eris_alchemy/item_emcs/patchouli.json
@@ -0,0 +1,3 @@
1{
2 "patchouli:guide_book": null
3} \ No newline at end of file
diff --git a/src/main/resources/data/eris_alchemy/eris_alchemy/item_tag_emcs/minecraft.json b/src/main/resources/data/eris_alchemy/eris_alchemy/item_tag_emcs/minecraft.json
new file mode 100644
index 0000000..70e4803
--- /dev/null
+++ b/src/main/resources/data/eris_alchemy/eris_alchemy/item_tag_emcs/minecraft.json
@@ -0,0 +1,20 @@
1{
2 "minecraft:coal_ores": null,
3 "minecraft:copper_ores": null,
4 "minecraft:decorated_pot_sherds": 64,
5 "minecraft:diamond_ores": null,
6 "minecraft:dirt": 1,
7 "minecraft:music_discs": 4096,
8 "minecraft:emerald_ores": null,
9 "minecraft:fishes": 64,
10 "minecraft:flowers": 16,
11 "minecraft:gold_ores": null,
12 "minecraft:iron_ores": null,
13 "minecraft:lapis_ores": null,
14 "minecraft:leaves": 1,
15 "minecraft:logs": 32,
16 "minecraft:redstone_ores": null,
17 "minecraft:sand": 1,
18 "minecraft:saplings": 32,
19 "minecraft:wool": 48
20} \ No newline at end of file
diff --git a/src/main/resources/eris_alchemy.mixins.json b/src/main/resources/eris_alchemy.mixins.json
index fb52b89..0fb729a 100644
--- a/src/main/resources/eris_alchemy.mixins.json
+++ b/src/main/resources/eris_alchemy.mixins.json
@@ -8,10 +8,6 @@
8 ], 8 ],
9 "mixins": [ 9 "mixins": [
10 "ContainerOpenersCounterMixin", 10 "ContainerOpenersCounterMixin",
11 "CoralBlockMixin",
12 "CoralFanBlockMixin",
13 "CoralPlantBlockMixin",
14 "CoralWallFanBlockMixin",
15 "RecipeMixin", 11 "RecipeMixin",
16 "SmithingTransformRecipeMixin" 12 "SmithingTransformRecipeMixin"
17 ], 13 ],