├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build-changes.py │ ├── nightly-build.yml │ ├── pr-comment.yml │ ├── push-to-smithed.py │ ├── pypi.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── beet-release.yaml ├── beet.yaml ├── docs └── smithed-damage │ └── entity │ ├── apply.md │ └── death_messages.md ├── poetry.lock ├── pyproject.toml ├── smithed_libraries ├── __init__.py ├── common.yaml ├── packs │ ├── actionbar │ │ ├── README.md │ │ ├── beet.yaml │ │ ├── data │ │ │ └── smithed.actionbar │ │ │ │ ├── advancements │ │ │ │ └── impl │ │ │ │ │ └── vanilla │ │ │ │ │ ├── bed │ │ │ │ │ ├── clicked_bed.json │ │ │ │ │ └── slept_in_bed.json │ │ │ │ │ └── container │ │ │ │ │ └── clicked_lockable_block.json │ │ │ │ ├── functions │ │ │ │ └── impl │ │ │ │ │ ├── display.mcfunction │ │ │ │ │ ├── message.mcfunction │ │ │ │ │ ├── reset.mcfunction │ │ │ │ │ ├── technical │ │ │ │ │ ├── load.mcfunction │ │ │ │ │ └── tick.mcfunction │ │ │ │ │ └── vanilla │ │ │ │ │ ├── bed │ │ │ │ │ ├── check_sleep_status.mcfunction │ │ │ │ │ ├── clicked_bed.mcfunction │ │ │ │ │ ├── get_server_status.mcfunction │ │ │ │ │ ├── send_sleep_status.mcfunction │ │ │ │ │ ├── show_sleep_percentage.mcfunction │ │ │ │ │ └── track_leave_bed.mcfunction │ │ │ │ │ └── container │ │ │ │ │ ├── check_double_chest_lock.mcfunction │ │ │ │ │ ├── check_double_chest_lock │ │ │ │ │ ├── east.mcfunction │ │ │ │ │ ├── north.mcfunction │ │ │ │ │ ├── south.mcfunction │ │ │ │ │ └── west.mcfunction │ │ │ │ │ ├── check_lock.mcfunction │ │ │ │ │ ├── clicked_lockable_block.mcfunction │ │ │ │ │ ├── raycast.mcfunction │ │ │ │ │ └── send_message.mcfunction │ │ │ │ ├── predicates │ │ │ │ └── impl │ │ │ │ │ └── is_day.json │ │ │ │ └── tags │ │ │ │ ├── blocks │ │ │ │ └── impl │ │ │ │ │ ├── chests.json │ │ │ │ │ └── lockable.json │ │ │ │ └── functions │ │ │ │ └── event │ │ │ │ └── player │ │ │ │ └── on_click_locked_container.json │ │ └── pack.png │ ├── crafter-addon │ │ ├── beet.yaml │ │ ├── data │ │ │ ├── smithed.crafter │ │ │ │ └── tags │ │ │ │ │ └── functions │ │ │ │ │ └── event │ │ │ │ │ ├── query_tags.json │ │ │ │ │ ├── recipes.json │ │ │ │ │ └── shapeless_recipes.json │ │ │ └── smithed.crafter_addon │ │ │ │ ├── functions │ │ │ │ └── impl │ │ │ │ │ ├── recipes │ │ │ │ │ ├── shaped │ │ │ │ │ │ ├── 0_1.mcfunction │ │ │ │ │ │ ├── 0_135.mcfunction │ │ │ │ │ │ ├── 0_16.mcfunction │ │ │ │ │ │ ├── 0_2.mcfunction │ │ │ │ │ │ ├── 0_271.mcfunction │ │ │ │ │ │ ├── 0_33.mcfunction │ │ │ │ │ │ ├── 0_4.mcfunction │ │ │ │ │ │ ├── 0_542.mcfunction │ │ │ │ │ │ ├── 0_67.mcfunction │ │ │ │ │ │ ├── 0_8.mcfunction │ │ │ │ │ │ ├── 100_101.mcfunction │ │ │ │ │ │ ├── 102_103.mcfunction │ │ │ │ │ │ ├── 102_104.mcfunction │ │ │ │ │ │ ├── 102_106.mcfunction │ │ │ │ │ │ ├── 102_110.mcfunction │ │ │ │ │ │ ├── 102_118.mcfunction │ │ │ │ │ │ ├── 102_135.mcfunction │ │ │ │ │ │ ├── 104_104.mcfunction │ │ │ │ │ │ ├── 105_106.mcfunction │ │ │ │ │ │ ├── 107_108.mcfunction │ │ │ │ │ │ ├── 107_110.mcfunction │ │ │ │ │ │ ├── 109_110.mcfunction │ │ │ │ │ │ ├── 111_112.mcfunction │ │ │ │ │ │ ├── 111_114.mcfunction │ │ │ │ │ │ ├── 111_118.mcfunction │ │ │ │ │ │ ├── 113_114.mcfunction │ │ │ │ │ │ ├── 115_116.mcfunction │ │ │ │ │ │ ├── 115_118.mcfunction │ │ │ │ │ │ ├── 117_118.mcfunction │ │ │ │ │ │ ├── 119_120.mcfunction │ │ │ │ │ │ ├── 119_121.mcfunction │ │ │ │ │ │ ├── 119_123.mcfunction │ │ │ │ │ │ ├── 119_127.mcfunction │ │ │ │ │ │ ├── 119_135.mcfunction │ │ │ │ │ │ ├── 11_12.mcfunction │ │ │ │ │ │ ├── 121_121.mcfunction │ │ │ │ │ │ ├── 122_123.mcfunction │ │ │ │ │ │ ├── 124_125.mcfunction │ │ │ │ │ │ ├── 124_127.mcfunction │ │ │ │ │ │ ├── 126_127.mcfunction │ │ │ │ │ │ ├── 128_129.mcfunction │ │ │ │ │ │ ├── 128_131.mcfunction │ │ │ │ │ │ ├── 128_135.mcfunction │ │ │ │ │ │ ├── 130_131.mcfunction │ │ │ │ │ │ ├── 132_133.mcfunction │ │ │ │ │ │ ├── 132_135.mcfunction │ │ │ │ │ │ ├── 134_135.mcfunction │ │ │ │ │ │ ├── 136_137.mcfunction │ │ │ │ │ │ ├── 136_138.mcfunction │ │ │ │ │ │ ├── 136_140.mcfunction │ │ │ │ │ │ ├── 136_144.mcfunction │ │ │ │ │ │ ├── 136_152.mcfunction │ │ │ │ │ │ ├── 136_169.mcfunction │ │ │ │ │ │ ├── 136_203.mcfunction │ │ │ │ │ │ ├── 136_271.mcfunction │ │ │ │ │ │ ├── 138_138.mcfunction │ │ │ │ │ │ ├── 139_140.mcfunction │ │ │ │ │ │ ├── 13_14.mcfunction │ │ │ │ │ │ ├── 13_16.mcfunction │ │ │ │ │ │ ├── 141_142.mcfunction │ │ │ │ │ │ ├── 141_144.mcfunction │ │ │ │ │ │ ├── 143_144.mcfunction │ │ │ │ │ │ ├── 145_146.mcfunction │ │ │ │ │ │ ├── 145_148.mcfunction │ │ │ │ │ │ ├── 145_152.mcfunction │ │ │ │ │ │ ├── 147_148.mcfunction │ │ │ │ │ │ ├── 149_150.mcfunction │ │ │ │ │ │ ├── 149_152.mcfunction │ │ │ │ │ │ ├── 151_152.mcfunction │ │ │ │ │ │ ├── 153_154.mcfunction │ │ │ │ │ │ ├── 153_155.mcfunction │ │ │ │ │ │ ├── 153_157.mcfunction │ │ │ │ │ │ ├── 153_161.mcfunction │ │ │ │ │ │ ├── 153_169.mcfunction │ │ │ │ │ │ ├── 155_155.mcfunction │ │ │ │ │ │ ├── 156_157.mcfunction │ │ │ │ │ │ ├── 158_159.mcfunction │ │ │ │ │ │ ├── 158_161.mcfunction │ │ │ │ │ │ ├── 15_16.mcfunction │ │ │ │ │ │ ├── 160_161.mcfunction │ │ │ │ │ │ ├── 162_163.mcfunction │ │ │ │ │ │ ├── 162_165.mcfunction │ │ │ │ │ │ ├── 162_169.mcfunction │ │ │ │ │ │ ├── 164_165.mcfunction │ │ │ │ │ │ ├── 166_167.mcfunction │ │ │ │ │ │ ├── 166_169.mcfunction │ │ │ │ │ │ ├── 168_169.mcfunction │ │ │ │ │ │ ├── 170_171.mcfunction │ │ │ │ │ │ ├── 170_172.mcfunction │ │ │ │ │ │ ├── 170_174.mcfunction │ │ │ │ │ │ ├── 170_178.mcfunction │ │ │ │ │ │ ├── 170_186.mcfunction │ │ │ │ │ │ ├── 170_203.mcfunction │ │ │ │ │ │ ├── 172_172.mcfunction │ │ │ │ │ │ ├── 173_174.mcfunction │ │ │ │ │ │ ├── 175_176.mcfunction │ │ │ │ │ │ ├── 175_178.mcfunction │ │ │ │ │ │ ├── 177_178.mcfunction │ │ │ │ │ │ ├── 179_180.mcfunction │ │ │ │ │ │ ├── 179_182.mcfunction │ │ │ │ │ │ ├── 179_186.mcfunction │ │ │ │ │ │ ├── 17_18.mcfunction │ │ │ │ │ │ ├── 17_19.mcfunction │ │ │ │ │ │ ├── 17_21.mcfunction │ │ │ │ │ │ ├── 17_25.mcfunction │ │ │ │ │ │ ├── 17_33.mcfunction │ │ │ │ │ │ ├── 181_182.mcfunction │ │ │ │ │ │ ├── 183_184.mcfunction │ │ │ │ │ │ ├── 183_186.mcfunction │ │ │ │ │ │ ├── 185_186.mcfunction │ │ │ │ │ │ ├── 187_188.mcfunction │ │ │ │ │ │ ├── 187_189.mcfunction │ │ │ │ │ │ ├── 187_191.mcfunction │ │ │ │ │ │ ├── 187_195.mcfunction │ │ │ │ │ │ ├── 187_203.mcfunction │ │ │ │ │ │ ├── 189_189.mcfunction │ │ │ │ │ │ ├── 190_191.mcfunction │ │ │ │ │ │ ├── 192_193.mcfunction │ │ │ │ │ │ ├── 192_195.mcfunction │ │ │ │ │ │ ├── 194_195.mcfunction │ │ │ │ │ │ ├── 196_197.mcfunction │ │ │ │ │ │ ├── 196_199.mcfunction │ │ │ │ │ │ ├── 196_203.mcfunction │ │ │ │ │ │ ├── 198_199.mcfunction │ │ │ │ │ │ ├── 19_19.mcfunction │ │ │ │ │ │ ├── 200_201.mcfunction │ │ │ │ │ │ ├── 200_203.mcfunction │ │ │ │ │ │ ├── 202_203.mcfunction │ │ │ │ │ │ ├── 204_205.mcfunction │ │ │ │ │ │ ├── 204_206.mcfunction │ │ │ │ │ │ ├── 204_208.mcfunction │ │ │ │ │ │ ├── 204_212.mcfunction │ │ │ │ │ │ ├── 204_220.mcfunction │ │ │ │ │ │ ├── 204_237.mcfunction │ │ │ │ │ │ ├── 204_271.mcfunction │ │ │ │ │ │ ├── 206_206.mcfunction │ │ │ │ │ │ ├── 207_208.mcfunction │ │ │ │ │ │ ├── 209_210.mcfunction │ │ │ │ │ │ ├── 209_212.mcfunction │ │ │ │ │ │ ├── 20_21.mcfunction │ │ │ │ │ │ ├── 211_212.mcfunction │ │ │ │ │ │ ├── 213_214.mcfunction │ │ │ │ │ │ ├── 213_216.mcfunction │ │ │ │ │ │ ├── 213_220.mcfunction │ │ │ │ │ │ ├── 215_216.mcfunction │ │ │ │ │ │ ├── 217_218.mcfunction │ │ │ │ │ │ ├── 217_220.mcfunction │ │ │ │ │ │ ├── 219_220.mcfunction │ │ │ │ │ │ ├── 221_222.mcfunction │ │ │ │ │ │ ├── 221_223.mcfunction │ │ │ │ │ │ ├── 221_225.mcfunction │ │ │ │ │ │ ├── 221_229.mcfunction │ │ │ │ │ │ ├── 221_237.mcfunction │ │ │ │ │ │ ├── 223_223.mcfunction │ │ │ │ │ │ ├── 224_225.mcfunction │ │ │ │ │ │ ├── 226_227.mcfunction │ │ │ │ │ │ ├── 226_229.mcfunction │ │ │ │ │ │ ├── 228_229.mcfunction │ │ │ │ │ │ ├── 22_23.mcfunction │ │ │ │ │ │ ├── 22_25.mcfunction │ │ │ │ │ │ ├── 230_231.mcfunction │ │ │ │ │ │ ├── 230_233.mcfunction │ │ │ │ │ │ ├── 230_237.mcfunction │ │ │ │ │ │ ├── 232_233.mcfunction │ │ │ │ │ │ ├── 234_235.mcfunction │ │ │ │ │ │ ├── 234_237.mcfunction │ │ │ │ │ │ ├── 236_237.mcfunction │ │ │ │ │ │ ├── 238_239.mcfunction │ │ │ │ │ │ ├── 238_240.mcfunction │ │ │ │ │ │ ├── 238_242.mcfunction │ │ │ │ │ │ ├── 238_246.mcfunction │ │ │ │ │ │ ├── 238_254.mcfunction │ │ │ │ │ │ ├── 238_271.mcfunction │ │ │ │ │ │ ├── 240_240.mcfunction │ │ │ │ │ │ ├── 241_242.mcfunction │ │ │ │ │ │ ├── 243_244.mcfunction │ │ │ │ │ │ ├── 243_246.mcfunction │ │ │ │ │ │ ├── 245_246.mcfunction │ │ │ │ │ │ ├── 247_248.mcfunction │ │ │ │ │ │ ├── 247_250.mcfunction │ │ │ │ │ │ ├── 247_254.mcfunction │ │ │ │ │ │ ├── 249_250.mcfunction │ │ │ │ │ │ ├── 24_25.mcfunction │ │ │ │ │ │ ├── 251_252.mcfunction │ │ │ │ │ │ ├── 251_254.mcfunction │ │ │ │ │ │ ├── 253_254.mcfunction │ │ │ │ │ │ ├── 255_256.mcfunction │ │ │ │ │ │ ├── 255_257.mcfunction │ │ │ │ │ │ ├── 255_259.mcfunction │ │ │ │ │ │ ├── 255_263.mcfunction │ │ │ │ │ │ ├── 255_271.mcfunction │ │ │ │ │ │ ├── 257_257.mcfunction │ │ │ │ │ │ ├── 258_259.mcfunction │ │ │ │ │ │ ├── 260_261.mcfunction │ │ │ │ │ │ ├── 260_263.mcfunction │ │ │ │ │ │ ├── 262_263.mcfunction │ │ │ │ │ │ ├── 264_265.mcfunction │ │ │ │ │ │ ├── 264_267.mcfunction │ │ │ │ │ │ ├── 264_271.mcfunction │ │ │ │ │ │ ├── 266_267.mcfunction │ │ │ │ │ │ ├── 268_269.mcfunction │ │ │ │ │ │ ├── 268_271.mcfunction │ │ │ │ │ │ ├── 26_27.mcfunction │ │ │ │ │ │ ├── 26_29.mcfunction │ │ │ │ │ │ ├── 26_33.mcfunction │ │ │ │ │ │ ├── 270_271.mcfunction │ │ │ │ │ │ ├── 272_273.mcfunction │ │ │ │ │ │ ├── 272_274.mcfunction │ │ │ │ │ │ ├── 272_276.mcfunction │ │ │ │ │ │ ├── 272_280.mcfunction │ │ │ │ │ │ ├── 272_288.mcfunction │ │ │ │ │ │ ├── 272_305.mcfunction │ │ │ │ │ │ ├── 272_339.mcfunction │ │ │ │ │ │ ├── 272_407.mcfunction │ │ │ │ │ │ ├── 272_542.mcfunction │ │ │ │ │ │ ├── 274_274.mcfunction │ │ │ │ │ │ ├── 275_276.mcfunction │ │ │ │ │ │ ├── 277_278.mcfunction │ │ │ │ │ │ ├── 277_280.mcfunction │ │ │ │ │ │ ├── 279_280.mcfunction │ │ │ │ │ │ ├── 281_282.mcfunction │ │ │ │ │ │ ├── 281_284.mcfunction │ │ │ │ │ │ ├── 281_288.mcfunction │ │ │ │ │ │ ├── 283_284.mcfunction │ │ │ │ │ │ ├── 285_286.mcfunction │ │ │ │ │ │ ├── 285_288.mcfunction │ │ │ │ │ │ ├── 287_288.mcfunction │ │ │ │ │ │ ├── 289_290.mcfunction │ │ │ │ │ │ ├── 289_291.mcfunction │ │ │ │ │ │ ├── 289_293.mcfunction │ │ │ │ │ │ ├── 289_297.mcfunction │ │ │ │ │ │ ├── 289_305.mcfunction │ │ │ │ │ │ ├── 28_29.mcfunction │ │ │ │ │ │ ├── 291_291.mcfunction │ │ │ │ │ │ ├── 292_293.mcfunction │ │ │ │ │ │ ├── 294_295.mcfunction │ │ │ │ │ │ ├── 294_297.mcfunction │ │ │ │ │ │ ├── 296_297.mcfunction │ │ │ │ │ │ ├── 298_299.mcfunction │ │ │ │ │ │ ├── 298_301.mcfunction │ │ │ │ │ │ ├── 298_305.mcfunction │ │ │ │ │ │ ├── 2_2.mcfunction │ │ │ │ │ │ ├── 300_301.mcfunction │ │ │ │ │ │ ├── 302_303.mcfunction │ │ │ │ │ │ ├── 302_305.mcfunction │ │ │ │ │ │ ├── 304_305.mcfunction │ │ │ │ │ │ ├── 306_307.mcfunction │ │ │ │ │ │ ├── 306_308.mcfunction │ │ │ │ │ │ ├── 306_310.mcfunction │ │ │ │ │ │ ├── 306_314.mcfunction │ │ │ │ │ │ ├── 306_322.mcfunction │ │ │ │ │ │ ├── 306_339.mcfunction │ │ │ │ │ │ ├── 308_308.mcfunction │ │ │ │ │ │ ├── 309_310.mcfunction │ │ │ │ │ │ ├── 30_31.mcfunction │ │ │ │ │ │ ├── 30_33.mcfunction │ │ │ │ │ │ ├── 311_312.mcfunction │ │ │ │ │ │ ├── 311_314.mcfunction │ │ │ │ │ │ ├── 313_314.mcfunction │ │ │ │ │ │ ├── 315_316.mcfunction │ │ │ │ │ │ ├── 315_318.mcfunction │ │ │ │ │ │ ├── 315_322.mcfunction │ │ │ │ │ │ ├── 317_318.mcfunction │ │ │ │ │ │ ├── 319_320.mcfunction │ │ │ │ │ │ ├── 319_322.mcfunction │ │ │ │ │ │ ├── 321_322.mcfunction │ │ │ │ │ │ ├── 323_324.mcfunction │ │ │ │ │ │ ├── 323_325.mcfunction │ │ │ │ │ │ ├── 323_327.mcfunction │ │ │ │ │ │ ├── 323_331.mcfunction │ │ │ │ │ │ ├── 323_339.mcfunction │ │ │ │ │ │ ├── 325_325.mcfunction │ │ │ │ │ │ ├── 326_327.mcfunction │ │ │ │ │ │ ├── 328_329.mcfunction │ │ │ │ │ │ ├── 328_331.mcfunction │ │ │ │ │ │ ├── 32_33.mcfunction │ │ │ │ │ │ ├── 330_331.mcfunction │ │ │ │ │ │ ├── 332_333.mcfunction │ │ │ │ │ │ ├── 332_335.mcfunction │ │ │ │ │ │ ├── 332_339.mcfunction │ │ │ │ │ │ ├── 334_335.mcfunction │ │ │ │ │ │ ├── 336_337.mcfunction │ │ │ │ │ │ ├── 336_339.mcfunction │ │ │ │ │ │ ├── 338_339.mcfunction │ │ │ │ │ │ ├── 340_341.mcfunction │ │ │ │ │ │ ├── 340_342.mcfunction │ │ │ │ │ │ ├── 340_344.mcfunction │ │ │ │ │ │ ├── 340_348.mcfunction │ │ │ │ │ │ ├── 340_356.mcfunction │ │ │ │ │ │ ├── 340_373.mcfunction │ │ │ │ │ │ ├── 340_407.mcfunction │ │ │ │ │ │ ├── 342_342.mcfunction │ │ │ │ │ │ ├── 343_344.mcfunction │ │ │ │ │ │ ├── 345_346.mcfunction │ │ │ │ │ │ ├── 345_348.mcfunction │ │ │ │ │ │ ├── 347_348.mcfunction │ │ │ │ │ │ ├── 349_350.mcfunction │ │ │ │ │ │ ├── 349_352.mcfunction │ │ │ │ │ │ ├── 349_356.mcfunction │ │ │ │ │ │ ├── 34_35.mcfunction │ │ │ │ │ │ ├── 34_36.mcfunction │ │ │ │ │ │ ├── 34_38.mcfunction │ │ │ │ │ │ ├── 34_42.mcfunction │ │ │ │ │ │ ├── 34_50.mcfunction │ │ │ │ │ │ ├── 34_67.mcfunction │ │ │ │ │ │ ├── 351_352.mcfunction │ │ │ │ │ │ ├── 353_354.mcfunction │ │ │ │ │ │ ├── 353_356.mcfunction │ │ │ │ │ │ ├── 355_356.mcfunction │ │ │ │ │ │ ├── 357_358.mcfunction │ │ │ │ │ │ ├── 357_359.mcfunction │ │ │ │ │ │ ├── 357_361.mcfunction │ │ │ │ │ │ ├── 357_365.mcfunction │ │ │ │ │ │ ├── 357_373.mcfunction │ │ │ │ │ │ ├── 359_359.mcfunction │ │ │ │ │ │ ├── 360_361.mcfunction │ │ │ │ │ │ ├── 362_363.mcfunction │ │ │ │ │ │ ├── 362_365.mcfunction │ │ │ │ │ │ ├── 364_365.mcfunction │ │ │ │ │ │ ├── 366_367.mcfunction │ │ │ │ │ │ ├── 366_369.mcfunction │ │ │ │ │ │ ├── 366_373.mcfunction │ │ │ │ │ │ ├── 368_369.mcfunction │ │ │ │ │ │ ├── 36_36.mcfunction │ │ │ │ │ │ ├── 370_371.mcfunction │ │ │ │ │ │ ├── 370_373.mcfunction │ │ │ │ │ │ ├── 372_373.mcfunction │ │ │ │ │ │ ├── 374_375.mcfunction │ │ │ │ │ │ ├── 374_376.mcfunction │ │ │ │ │ │ ├── 374_378.mcfunction │ │ │ │ │ │ ├── 374_382.mcfunction │ │ │ │ │ │ ├── 374_390.mcfunction │ │ │ │ │ │ ├── 374_407.mcfunction │ │ │ │ │ │ ├── 376_376.mcfunction │ │ │ │ │ │ ├── 377_378.mcfunction │ │ │ │ │ │ ├── 379_380.mcfunction │ │ │ │ │ │ ├── 379_382.mcfunction │ │ │ │ │ │ ├── 37_38.mcfunction │ │ │ │ │ │ ├── 381_382.mcfunction │ │ │ │ │ │ ├── 383_384.mcfunction │ │ │ │ │ │ ├── 383_386.mcfunction │ │ │ │ │ │ ├── 383_390.mcfunction │ │ │ │ │ │ ├── 385_386.mcfunction │ │ │ │ │ │ ├── 387_388.mcfunction │ │ │ │ │ │ ├── 387_390.mcfunction │ │ │ │ │ │ ├── 389_390.mcfunction │ │ │ │ │ │ ├── 391_392.mcfunction │ │ │ │ │ │ ├── 391_393.mcfunction │ │ │ │ │ │ ├── 391_395.mcfunction │ │ │ │ │ │ ├── 391_399.mcfunction │ │ │ │ │ │ ├── 391_407.mcfunction │ │ │ │ │ │ ├── 393_393.mcfunction │ │ │ │ │ │ ├── 394_395.mcfunction │ │ │ │ │ │ ├── 396_397.mcfunction │ │ │ │ │ │ ├── 396_399.mcfunction │ │ │ │ │ │ ├── 398_399.mcfunction │ │ │ │ │ │ ├── 39_40.mcfunction │ │ │ │ │ │ ├── 39_42.mcfunction │ │ │ │ │ │ ├── 3_4.mcfunction │ │ │ │ │ │ ├── 400_401.mcfunction │ │ │ │ │ │ ├── 400_403.mcfunction │ │ │ │ │ │ ├── 400_407.mcfunction │ │ │ │ │ │ ├── 402_403.mcfunction │ │ │ │ │ │ ├── 404_405.mcfunction │ │ │ │ │ │ ├── 404_407.mcfunction │ │ │ │ │ │ ├── 406_407.mcfunction │ │ │ │ │ │ ├── 408_409.mcfunction │ │ │ │ │ │ ├── 408_410.mcfunction │ │ │ │ │ │ ├── 408_412.mcfunction │ │ │ │ │ │ ├── 408_416.mcfunction │ │ │ │ │ │ ├── 408_424.mcfunction │ │ │ │ │ │ ├── 408_441.mcfunction │ │ │ │ │ │ ├── 408_475.mcfunction │ │ │ │ │ │ ├── 408_542.mcfunction │ │ │ │ │ │ ├── 410_410.mcfunction │ │ │ │ │ │ ├── 411_412.mcfunction │ │ │ │ │ │ ├── 413_414.mcfunction │ │ │ │ │ │ ├── 413_416.mcfunction │ │ │ │ │ │ ├── 415_416.mcfunction │ │ │ │ │ │ ├── 417_418.mcfunction │ │ │ │ │ │ ├── 417_420.mcfunction │ │ │ │ │ │ ├── 417_424.mcfunction │ │ │ │ │ │ ├── 419_420.mcfunction │ │ │ │ │ │ ├── 41_42.mcfunction │ │ │ │ │ │ ├── 421_422.mcfunction │ │ │ │ │ │ ├── 421_424.mcfunction │ │ │ │ │ │ ├── 423_424.mcfunction │ │ │ │ │ │ ├── 425_426.mcfunction │ │ │ │ │ │ ├── 425_427.mcfunction │ │ │ │ │ │ ├── 425_429.mcfunction │ │ │ │ │ │ ├── 425_433.mcfunction │ │ │ │ │ │ ├── 425_441.mcfunction │ │ │ │ │ │ ├── 427_427.mcfunction │ │ │ │ │ │ ├── 428_429.mcfunction │ │ │ │ │ │ ├── 430_431.mcfunction │ │ │ │ │ │ ├── 430_433.mcfunction │ │ │ │ │ │ ├── 432_433.mcfunction │ │ │ │ │ │ ├── 434_435.mcfunction │ │ │ │ │ │ ├── 434_437.mcfunction │ │ │ │ │ │ ├── 434_441.mcfunction │ │ │ │ │ │ ├── 436_437.mcfunction │ │ │ │ │ │ ├── 438_439.mcfunction │ │ │ │ │ │ ├── 438_441.mcfunction │ │ │ │ │ │ ├── 43_44.mcfunction │ │ │ │ │ │ ├── 43_46.mcfunction │ │ │ │ │ │ ├── 43_50.mcfunction │ │ │ │ │ │ ├── 440_441.mcfunction │ │ │ │ │ │ ├── 442_443.mcfunction │ │ │ │ │ │ ├── 442_444.mcfunction │ │ │ │ │ │ ├── 442_446.mcfunction │ │ │ │ │ │ ├── 442_450.mcfunction │ │ │ │ │ │ ├── 442_458.mcfunction │ │ │ │ │ │ ├── 442_475.mcfunction │ │ │ │ │ │ ├── 444_444.mcfunction │ │ │ │ │ │ ├── 445_446.mcfunction │ │ │ │ │ │ ├── 447_448.mcfunction │ │ │ │ │ │ ├── 447_450.mcfunction │ │ │ │ │ │ ├── 449_450.mcfunction │ │ │ │ │ │ ├── 451_452.mcfunction │ │ │ │ │ │ ├── 451_454.mcfunction │ │ │ │ │ │ ├── 451_458.mcfunction │ │ │ │ │ │ ├── 453_454.mcfunction │ │ │ │ │ │ ├── 455_456.mcfunction │ │ │ │ │ │ ├── 455_458.mcfunction │ │ │ │ │ │ ├── 457_458.mcfunction │ │ │ │ │ │ ├── 459_460.mcfunction │ │ │ │ │ │ ├── 459_461.mcfunction │ │ │ │ │ │ ├── 459_463.mcfunction │ │ │ │ │ │ ├── 459_467.mcfunction │ │ │ │ │ │ ├── 459_475.mcfunction │ │ │ │ │ │ ├── 45_46.mcfunction │ │ │ │ │ │ ├── 461_461.mcfunction │ │ │ │ │ │ ├── 462_463.mcfunction │ │ │ │ │ │ ├── 464_465.mcfunction │ │ │ │ │ │ ├── 464_467.mcfunction │ │ │ │ │ │ ├── 466_467.mcfunction │ │ │ │ │ │ ├── 468_469.mcfunction │ │ │ │ │ │ ├── 468_471.mcfunction │ │ │ │ │ │ ├── 468_475.mcfunction │ │ │ │ │ │ ├── 470_471.mcfunction │ │ │ │ │ │ ├── 472_473.mcfunction │ │ │ │ │ │ ├── 472_475.mcfunction │ │ │ │ │ │ ├── 474_475.mcfunction │ │ │ │ │ │ ├── 476_477.mcfunction │ │ │ │ │ │ ├── 476_478.mcfunction │ │ │ │ │ │ ├── 476_480.mcfunction │ │ │ │ │ │ ├── 476_484.mcfunction │ │ │ │ │ │ ├── 476_492.mcfunction │ │ │ │ │ │ ├── 476_509.mcfunction │ │ │ │ │ │ ├── 476_542.mcfunction │ │ │ │ │ │ ├── 478_478.mcfunction │ │ │ │ │ │ ├── 479_480.mcfunction │ │ │ │ │ │ ├── 47_48.mcfunction │ │ │ │ │ │ ├── 47_50.mcfunction │ │ │ │ │ │ ├── 481_482.mcfunction │ │ │ │ │ │ ├── 481_484.mcfunction │ │ │ │ │ │ ├── 483_484.mcfunction │ │ │ │ │ │ ├── 485_486.mcfunction │ │ │ │ │ │ ├── 485_488.mcfunction │ │ │ │ │ │ ├── 485_492.mcfunction │ │ │ │ │ │ ├── 487_488.mcfunction │ │ │ │ │ │ ├── 489_490.mcfunction │ │ │ │ │ │ ├── 489_492.mcfunction │ │ │ │ │ │ ├── 491_492.mcfunction │ │ │ │ │ │ ├── 493_494.mcfunction │ │ │ │ │ │ ├── 493_495.mcfunction │ │ │ │ │ │ ├── 493_497.mcfunction │ │ │ │ │ │ ├── 493_501.mcfunction │ │ │ │ │ │ ├── 493_509.mcfunction │ │ │ │ │ │ ├── 495_495.mcfunction │ │ │ │ │ │ ├── 496_497.mcfunction │ │ │ │ │ │ ├── 498_499.mcfunction │ │ │ │ │ │ ├── 498_501.mcfunction │ │ │ │ │ │ ├── 49_50.mcfunction │ │ │ │ │ │ ├── 500_501.mcfunction │ │ │ │ │ │ ├── 502_503.mcfunction │ │ │ │ │ │ ├── 502_505.mcfunction │ │ │ │ │ │ ├── 502_509.mcfunction │ │ │ │ │ │ ├── 504_505.mcfunction │ │ │ │ │ │ ├── 506_507.mcfunction │ │ │ │ │ │ ├── 506_509.mcfunction │ │ │ │ │ │ ├── 508_509.mcfunction │ │ │ │ │ │ ├── 510_511.mcfunction │ │ │ │ │ │ ├── 510_512.mcfunction │ │ │ │ │ │ ├── 510_514.mcfunction │ │ │ │ │ │ ├── 510_518.mcfunction │ │ │ │ │ │ ├── 510_526.mcfunction │ │ │ │ │ │ ├── 510_542.mcfunction │ │ │ │ │ │ ├── 512_512.mcfunction │ │ │ │ │ │ ├── 513_514.mcfunction │ │ │ │ │ │ ├── 515_516.mcfunction │ │ │ │ │ │ ├── 515_518.mcfunction │ │ │ │ │ │ ├── 517_518.mcfunction │ │ │ │ │ │ ├── 519_520.mcfunction │ │ │ │ │ │ ├── 519_522.mcfunction │ │ │ │ │ │ ├── 519_526.mcfunction │ │ │ │ │ │ ├── 51_52.mcfunction │ │ │ │ │ │ ├── 51_53.mcfunction │ │ │ │ │ │ ├── 51_55.mcfunction │ │ │ │ │ │ ├── 51_59.mcfunction │ │ │ │ │ │ ├── 51_67.mcfunction │ │ │ │ │ │ ├── 521_522.mcfunction │ │ │ │ │ │ ├── 523_524.mcfunction │ │ │ │ │ │ ├── 523_526.mcfunction │ │ │ │ │ │ ├── 525_526.mcfunction │ │ │ │ │ │ ├── 527_528.mcfunction │ │ │ │ │ │ ├── 527_530.mcfunction │ │ │ │ │ │ ├── 527_534.mcfunction │ │ │ │ │ │ ├── 527_542.mcfunction │ │ │ │ │ │ ├── 529_530.mcfunction │ │ │ │ │ │ ├── 531_532.mcfunction │ │ │ │ │ │ ├── 531_534.mcfunction │ │ │ │ │ │ ├── 533_534.mcfunction │ │ │ │ │ │ ├── 535_536.mcfunction │ │ │ │ │ │ ├── 535_538.mcfunction │ │ │ │ │ │ ├── 535_542.mcfunction │ │ │ │ │ │ ├── 537_538.mcfunction │ │ │ │ │ │ ├── 539_540.mcfunction │ │ │ │ │ │ ├── 539_542.mcfunction │ │ │ │ │ │ ├── 53_53.mcfunction │ │ │ │ │ │ ├── 541_542.mcfunction │ │ │ │ │ │ ├── 54_55.mcfunction │ │ │ │ │ │ ├── 56_57.mcfunction │ │ │ │ │ │ ├── 56_59.mcfunction │ │ │ │ │ │ ├── 58_59.mcfunction │ │ │ │ │ │ ├── 5_6.mcfunction │ │ │ │ │ │ ├── 5_8.mcfunction │ │ │ │ │ │ ├── 60_61.mcfunction │ │ │ │ │ │ ├── 60_63.mcfunction │ │ │ │ │ │ ├── 60_67.mcfunction │ │ │ │ │ │ ├── 62_63.mcfunction │ │ │ │ │ │ ├── 64_65.mcfunction │ │ │ │ │ │ ├── 64_67.mcfunction │ │ │ │ │ │ ├── 66_67.mcfunction │ │ │ │ │ │ ├── 68_101.mcfunction │ │ │ │ │ │ ├── 68_135.mcfunction │ │ │ │ │ │ ├── 68_69.mcfunction │ │ │ │ │ │ ├── 68_70.mcfunction │ │ │ │ │ │ ├── 68_72.mcfunction │ │ │ │ │ │ ├── 68_76.mcfunction │ │ │ │ │ │ ├── 68_84.mcfunction │ │ │ │ │ │ ├── 70_70.mcfunction │ │ │ │ │ │ ├── 71_72.mcfunction │ │ │ │ │ │ ├── 73_74.mcfunction │ │ │ │ │ │ ├── 73_76.mcfunction │ │ │ │ │ │ ├── 75_76.mcfunction │ │ │ │ │ │ ├── 77_78.mcfunction │ │ │ │ │ │ ├── 77_80.mcfunction │ │ │ │ │ │ ├── 77_84.mcfunction │ │ │ │ │ │ ├── 79_80.mcfunction │ │ │ │ │ │ ├── 7_8.mcfunction │ │ │ │ │ │ ├── 81_82.mcfunction │ │ │ │ │ │ ├── 81_84.mcfunction │ │ │ │ │ │ ├── 83_84.mcfunction │ │ │ │ │ │ ├── 85_101.mcfunction │ │ │ │ │ │ ├── 85_86.mcfunction │ │ │ │ │ │ ├── 85_87.mcfunction │ │ │ │ │ │ ├── 85_89.mcfunction │ │ │ │ │ │ ├── 85_93.mcfunction │ │ │ │ │ │ ├── 87_87.mcfunction │ │ │ │ │ │ ├── 88_89.mcfunction │ │ │ │ │ │ ├── 90_91.mcfunction │ │ │ │ │ │ ├── 90_93.mcfunction │ │ │ │ │ │ ├── 92_93.mcfunction │ │ │ │ │ │ ├── 94_101.mcfunction │ │ │ │ │ │ ├── 94_95.mcfunction │ │ │ │ │ │ ├── 94_97.mcfunction │ │ │ │ │ │ ├── 96_97.mcfunction │ │ │ │ │ │ ├── 98_101.mcfunction │ │ │ │ │ │ ├── 98_99.mcfunction │ │ │ │ │ │ ├── 9_10.mcfunction │ │ │ │ │ │ ├── 9_12.mcfunction │ │ │ │ │ │ └── 9_16.mcfunction │ │ │ │ │ └── shapeless │ │ │ │ │ │ ├── 0_1.mcfunction │ │ │ │ │ │ ├── 0_11.mcfunction │ │ │ │ │ │ ├── 0_182.mcfunction │ │ │ │ │ │ ├── 0_2.mcfunction │ │ │ │ │ │ ├── 0_22.mcfunction │ │ │ │ │ │ ├── 0_45.mcfunction │ │ │ │ │ │ ├── 0_5.mcfunction │ │ │ │ │ │ ├── 0_91.mcfunction │ │ │ │ │ │ ├── 100_100.mcfunction │ │ │ │ │ │ ├── 101_102.mcfunction │ │ │ │ │ │ ├── 101_103.mcfunction │ │ │ │ │ │ ├── 103_103.mcfunction │ │ │ │ │ │ ├── 104_105.mcfunction │ │ │ │ │ │ ├── 104_106.mcfunction │ │ │ │ │ │ ├── 104_109.mcfunction │ │ │ │ │ │ ├── 104_114.mcfunction │ │ │ │ │ │ ├── 106_106.mcfunction │ │ │ │ │ │ ├── 107_108.mcfunction │ │ │ │ │ │ ├── 107_109.mcfunction │ │ │ │ │ │ ├── 109_109.mcfunction │ │ │ │ │ │ ├── 110_111.mcfunction │ │ │ │ │ │ ├── 110_112.mcfunction │ │ │ │ │ │ ├── 110_114.mcfunction │ │ │ │ │ │ ├── 112_112.mcfunction │ │ │ │ │ │ ├── 113_114.mcfunction │ │ │ │ │ │ ├── 115_116.mcfunction │ │ │ │ │ │ ├── 115_117.mcfunction │ │ │ │ │ │ ├── 115_120.mcfunction │ │ │ │ │ │ ├── 115_126.mcfunction │ │ │ │ │ │ ├── 115_137.mcfunction │ │ │ │ │ │ ├── 117_117.mcfunction │ │ │ │ │ │ ├── 118_119.mcfunction │ │ │ │ │ │ ├── 118_120.mcfunction │ │ │ │ │ │ ├── 11_11.mcfunction │ │ │ │ │ │ ├── 120_120.mcfunction │ │ │ │ │ │ ├── 121_122.mcfunction │ │ │ │ │ │ ├── 121_123.mcfunction │ │ │ │ │ │ ├── 121_126.mcfunction │ │ │ │ │ │ ├── 123_123.mcfunction │ │ │ │ │ │ ├── 124_125.mcfunction │ │ │ │ │ │ ├── 124_126.mcfunction │ │ │ │ │ │ ├── 126_126.mcfunction │ │ │ │ │ │ ├── 127_128.mcfunction │ │ │ │ │ │ ├── 127_129.mcfunction │ │ │ │ │ │ ├── 127_132.mcfunction │ │ │ │ │ │ ├── 127_137.mcfunction │ │ │ │ │ │ ├── 129_129.mcfunction │ │ │ │ │ │ ├── 12_13.mcfunction │ │ │ │ │ │ ├── 12_14.mcfunction │ │ │ │ │ │ ├── 12_17.mcfunction │ │ │ │ │ │ ├── 12_22.mcfunction │ │ │ │ │ │ ├── 130_131.mcfunction │ │ │ │ │ │ ├── 130_132.mcfunction │ │ │ │ │ │ ├── 132_132.mcfunction │ │ │ │ │ │ ├── 133_134.mcfunction │ │ │ │ │ │ ├── 133_135.mcfunction │ │ │ │ │ │ ├── 133_137.mcfunction │ │ │ │ │ │ ├── 135_135.mcfunction │ │ │ │ │ │ ├── 136_137.mcfunction │ │ │ │ │ │ ├── 138_139.mcfunction │ │ │ │ │ │ ├── 138_140.mcfunction │ │ │ │ │ │ ├── 138_143.mcfunction │ │ │ │ │ │ ├── 138_149.mcfunction │ │ │ │ │ │ ├── 138_160.mcfunction │ │ │ │ │ │ ├── 138_182.mcfunction │ │ │ │ │ │ ├── 140_140.mcfunction │ │ │ │ │ │ ├── 141_142.mcfunction │ │ │ │ │ │ ├── 141_143.mcfunction │ │ │ │ │ │ ├── 143_143.mcfunction │ │ │ │ │ │ ├── 144_145.mcfunction │ │ │ │ │ │ ├── 144_146.mcfunction │ │ │ │ │ │ ├── 144_149.mcfunction │ │ │ │ │ │ ├── 146_146.mcfunction │ │ │ │ │ │ ├── 147_148.mcfunction │ │ │ │ │ │ ├── 147_149.mcfunction │ │ │ │ │ │ ├── 149_149.mcfunction │ │ │ │ │ │ ├── 14_14.mcfunction │ │ │ │ │ │ ├── 150_151.mcfunction │ │ │ │ │ │ ├── 150_152.mcfunction │ │ │ │ │ │ ├── 150_155.mcfunction │ │ │ │ │ │ ├── 150_160.mcfunction │ │ │ │ │ │ ├── 152_152.mcfunction │ │ │ │ │ │ ├── 153_154.mcfunction │ │ │ │ │ │ ├── 153_155.mcfunction │ │ │ │ │ │ ├── 155_155.mcfunction │ │ │ │ │ │ ├── 156_157.mcfunction │ │ │ │ │ │ ├── 156_158.mcfunction │ │ │ │ │ │ ├── 156_160.mcfunction │ │ │ │ │ │ ├── 158_158.mcfunction │ │ │ │ │ │ ├── 159_160.mcfunction │ │ │ │ │ │ ├── 15_16.mcfunction │ │ │ │ │ │ ├── 15_17.mcfunction │ │ │ │ │ │ ├── 161_162.mcfunction │ │ │ │ │ │ ├── 161_163.mcfunction │ │ │ │ │ │ ├── 161_166.mcfunction │ │ │ │ │ │ ├── 161_171.mcfunction │ │ │ │ │ │ ├── 161_182.mcfunction │ │ │ │ │ │ ├── 163_163.mcfunction │ │ │ │ │ │ ├── 164_165.mcfunction │ │ │ │ │ │ ├── 164_166.mcfunction │ │ │ │ │ │ ├── 166_166.mcfunction │ │ │ │ │ │ ├── 167_168.mcfunction │ │ │ │ │ │ ├── 167_169.mcfunction │ │ │ │ │ │ ├── 167_171.mcfunction │ │ │ │ │ │ ├── 169_169.mcfunction │ │ │ │ │ │ ├── 170_171.mcfunction │ │ │ │ │ │ ├── 172_173.mcfunction │ │ │ │ │ │ ├── 172_174.mcfunction │ │ │ │ │ │ ├── 172_177.mcfunction │ │ │ │ │ │ ├── 172_182.mcfunction │ │ │ │ │ │ ├── 174_174.mcfunction │ │ │ │ │ │ ├── 175_176.mcfunction │ │ │ │ │ │ ├── 175_177.mcfunction │ │ │ │ │ │ ├── 177_177.mcfunction │ │ │ │ │ │ ├── 178_179.mcfunction │ │ │ │ │ │ ├── 178_180.mcfunction │ │ │ │ │ │ ├── 178_182.mcfunction │ │ │ │ │ │ ├── 17_17.mcfunction │ │ │ │ │ │ ├── 180_180.mcfunction │ │ │ │ │ │ ├── 181_182.mcfunction │ │ │ │ │ │ ├── 18_19.mcfunction │ │ │ │ │ │ ├── 18_20.mcfunction │ │ │ │ │ │ ├── 18_22.mcfunction │ │ │ │ │ │ ├── 20_20.mcfunction │ │ │ │ │ │ ├── 21_22.mcfunction │ │ │ │ │ │ ├── 23_24.mcfunction │ │ │ │ │ │ ├── 23_25.mcfunction │ │ │ │ │ │ ├── 23_28.mcfunction │ │ │ │ │ │ ├── 23_34.mcfunction │ │ │ │ │ │ ├── 23_45.mcfunction │ │ │ │ │ │ ├── 25_25.mcfunction │ │ │ │ │ │ ├── 26_27.mcfunction │ │ │ │ │ │ ├── 26_28.mcfunction │ │ │ │ │ │ ├── 28_28.mcfunction │ │ │ │ │ │ ├── 29_30.mcfunction │ │ │ │ │ │ ├── 29_31.mcfunction │ │ │ │ │ │ ├── 29_34.mcfunction │ │ │ │ │ │ ├── 2_2.mcfunction │ │ │ │ │ │ ├── 31_31.mcfunction │ │ │ │ │ │ ├── 32_33.mcfunction │ │ │ │ │ │ ├── 32_34.mcfunction │ │ │ │ │ │ ├── 34_34.mcfunction │ │ │ │ │ │ ├── 35_36.mcfunction │ │ │ │ │ │ ├── 35_37.mcfunction │ │ │ │ │ │ ├── 35_40.mcfunction │ │ │ │ │ │ ├── 35_45.mcfunction │ │ │ │ │ │ ├── 37_37.mcfunction │ │ │ │ │ │ ├── 38_39.mcfunction │ │ │ │ │ │ ├── 38_40.mcfunction │ │ │ │ │ │ ├── 3_4.mcfunction │ │ │ │ │ │ ├── 3_5.mcfunction │ │ │ │ │ │ ├── 40_40.mcfunction │ │ │ │ │ │ ├── 41_42.mcfunction │ │ │ │ │ │ ├── 41_43.mcfunction │ │ │ │ │ │ ├── 41_45.mcfunction │ │ │ │ │ │ ├── 43_43.mcfunction │ │ │ │ │ │ ├── 44_45.mcfunction │ │ │ │ │ │ ├── 46_47.mcfunction │ │ │ │ │ │ ├── 46_48.mcfunction │ │ │ │ │ │ ├── 46_51.mcfunction │ │ │ │ │ │ ├── 46_57.mcfunction │ │ │ │ │ │ ├── 46_68.mcfunction │ │ │ │ │ │ ├── 46_91.mcfunction │ │ │ │ │ │ ├── 48_48.mcfunction │ │ │ │ │ │ ├── 49_50.mcfunction │ │ │ │ │ │ ├── 49_51.mcfunction │ │ │ │ │ │ ├── 51_51.mcfunction │ │ │ │ │ │ ├── 52_53.mcfunction │ │ │ │ │ │ ├── 52_54.mcfunction │ │ │ │ │ │ ├── 52_57.mcfunction │ │ │ │ │ │ ├── 54_54.mcfunction │ │ │ │ │ │ ├── 55_56.mcfunction │ │ │ │ │ │ ├── 55_57.mcfunction │ │ │ │ │ │ ├── 57_57.mcfunction │ │ │ │ │ │ ├── 58_59.mcfunction │ │ │ │ │ │ ├── 58_60.mcfunction │ │ │ │ │ │ ├── 58_63.mcfunction │ │ │ │ │ │ ├── 58_68.mcfunction │ │ │ │ │ │ ├── 5_5.mcfunction │ │ │ │ │ │ ├── 60_60.mcfunction │ │ │ │ │ │ ├── 61_62.mcfunction │ │ │ │ │ │ ├── 61_63.mcfunction │ │ │ │ │ │ ├── 63_63.mcfunction │ │ │ │ │ │ ├── 64_65.mcfunction │ │ │ │ │ │ ├── 64_66.mcfunction │ │ │ │ │ │ ├── 64_68.mcfunction │ │ │ │ │ │ ├── 66_66.mcfunction │ │ │ │ │ │ ├── 67_68.mcfunction │ │ │ │ │ │ ├── 69_70.mcfunction │ │ │ │ │ │ ├── 69_71.mcfunction │ │ │ │ │ │ ├── 69_74.mcfunction │ │ │ │ │ │ ├── 69_80.mcfunction │ │ │ │ │ │ ├── 69_91.mcfunction │ │ │ │ │ │ ├── 6_11.mcfunction │ │ │ │ │ │ ├── 6_7.mcfunction │ │ │ │ │ │ ├── 6_8.mcfunction │ │ │ │ │ │ ├── 71_71.mcfunction │ │ │ │ │ │ ├── 72_73.mcfunction │ │ │ │ │ │ ├── 72_74.mcfunction │ │ │ │ │ │ ├── 74_74.mcfunction │ │ │ │ │ │ ├── 75_76.mcfunction │ │ │ │ │ │ ├── 75_77.mcfunction │ │ │ │ │ │ ├── 75_80.mcfunction │ │ │ │ │ │ ├── 77_77.mcfunction │ │ │ │ │ │ ├── 78_79.mcfunction │ │ │ │ │ │ ├── 78_80.mcfunction │ │ │ │ │ │ ├── 80_80.mcfunction │ │ │ │ │ │ ├── 81_82.mcfunction │ │ │ │ │ │ ├── 81_83.mcfunction │ │ │ │ │ │ ├── 81_86.mcfunction │ │ │ │ │ │ ├── 81_91.mcfunction │ │ │ │ │ │ ├── 83_83.mcfunction │ │ │ │ │ │ ├── 84_85.mcfunction │ │ │ │ │ │ ├── 84_86.mcfunction │ │ │ │ │ │ ├── 86_86.mcfunction │ │ │ │ │ │ ├── 87_88.mcfunction │ │ │ │ │ │ ├── 87_89.mcfunction │ │ │ │ │ │ ├── 87_91.mcfunction │ │ │ │ │ │ ├── 89_89.mcfunction │ │ │ │ │ │ ├── 8_8.mcfunction │ │ │ │ │ │ ├── 90_91.mcfunction │ │ │ │ │ │ ├── 92_103.mcfunction │ │ │ │ │ │ ├── 92_114.mcfunction │ │ │ │ │ │ ├── 92_137.mcfunction │ │ │ │ │ │ ├── 92_182.mcfunction │ │ │ │ │ │ ├── 92_93.mcfunction │ │ │ │ │ │ ├── 92_94.mcfunction │ │ │ │ │ │ ├── 92_97.mcfunction │ │ │ │ │ │ ├── 94_94.mcfunction │ │ │ │ │ │ ├── 95_96.mcfunction │ │ │ │ │ │ ├── 95_97.mcfunction │ │ │ │ │ │ ├── 97_97.mcfunction │ │ │ │ │ │ ├── 98_100.mcfunction │ │ │ │ │ │ ├── 98_103.mcfunction │ │ │ │ │ │ ├── 98_99.mcfunction │ │ │ │ │ │ ├── 9_10.mcfunction │ │ │ │ │ │ └── 9_11.mcfunction │ │ │ │ │ └── tags │ │ │ │ │ └── query.mcfunction │ │ │ │ └── predicates │ │ │ │ └── recipes │ │ │ │ ├── coal_charcoal.json │ │ │ │ ├── purpur_decoration.json │ │ │ │ ├── quartz_decoration.json │ │ │ │ ├── red_sandstone.json │ │ │ │ ├── red_sandstone_and_cut.json │ │ │ │ ├── sand_and_red_sand.json │ │ │ │ ├── sandstone.json │ │ │ │ └── sandstone_and_cut.json │ │ └── pack.png │ ├── crafter │ │ ├── README.md │ │ ├── assets │ │ │ └── smithed.crafter │ │ │ │ ├── font │ │ │ │ └── gui.json │ │ │ │ ├── items │ │ │ │ └── table.json │ │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ │ ├── models │ │ │ │ └── item │ │ │ │ │ └── table.json │ │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── heavy_workbench.png │ │ │ │ ├── table_front.png │ │ │ │ ├── table_legacy.png │ │ │ │ ├── table_side.png │ │ │ │ └── table_top.png │ │ │ │ └── gui │ │ │ │ ├── negative_space.png │ │ │ │ └── table.png │ │ ├── beet.yaml │ │ ├── data │ │ │ ├── smithed.crafter │ │ │ │ ├── advancement │ │ │ │ │ └── technical │ │ │ │ │ │ └── enter_gui.json │ │ │ │ ├── function │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ ├── place.mcfunction │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ ├── break.mcfunction │ │ │ │ │ │ │ │ ├── break │ │ │ │ │ │ │ │ ├── delete_output.mcfunction │ │ │ │ │ │ │ │ └── drop_item.mcfunction │ │ │ │ │ │ │ │ ├── crafting │ │ │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ │ │ ├── handle_tags.mcfunction │ │ │ │ │ │ │ │ │ ├── mirror.mcfunction │ │ │ │ │ │ │ │ │ ├── process.mcfunction │ │ │ │ │ │ │ │ │ ├── query_tags.mcfunction │ │ │ │ │ │ │ │ │ └── read_barrel.mcfunction │ │ │ │ │ │ │ │ ├── manage_invalids │ │ │ │ │ │ │ │ │ ├── export.mcfunction │ │ │ │ │ │ │ │ │ ├── export_output.mcfunction │ │ │ │ │ │ │ │ │ ├── move.mcfunction │ │ │ │ │ │ │ │ │ └── spawn_loop.mcfunction │ │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ │ │ ├── check.mcfunction │ │ │ │ │ │ │ │ │ ├── clear_input.mcfunction │ │ │ │ │ │ │ │ │ ├── clear_input │ │ │ │ │ │ │ │ │ │ ├── advanced.mcfunction │ │ │ │ │ │ │ │ │ │ ├── advanced │ │ │ │ │ │ │ │ │ │ │ └── buckets.mcfunction │ │ │ │ │ │ │ │ │ │ ├── delete_tool.mcfunction │ │ │ │ │ │ │ │ │ │ ├── delete_tool │ │ │ │ │ │ │ │ │ │ │ ├── sub.mcfunction │ │ │ │ │ │ │ │ │ │ │ └── vanilla.mcfunction │ │ │ │ │ │ │ │ │ │ ├── handle_tools.mcfunction │ │ │ │ │ │ │ │ │ │ └── test.mcfunction │ │ │ │ │ │ │ │ │ ├── cursor_check │ │ │ │ │ │ │ │ │ │ ├── loop.mcfunction │ │ │ │ │ │ │ │ │ │ └── main.mcfunction │ │ │ │ │ │ │ │ │ └── shift_click │ │ │ │ │ │ │ │ │ │ ├── calculate_extras.mcfunction │ │ │ │ │ │ │ │ │ │ ├── main.mcfunction │ │ │ │ │ │ │ │ │ │ └── spawn_extra_items.mcfunction │ │ │ │ │ │ │ │ ├── recipes.mcfunction │ │ │ │ │ │ │ │ ├── shapeless_recipes.mcfunction │ │ │ │ │ │ │ │ └── shapeless_recipes │ │ │ │ │ │ │ │ │ ├── append.mcfunction │ │ │ │ │ │ │ │ │ ├── checks │ │ │ │ │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ │ │ │ │ ├── 5.mcfunction │ │ │ │ │ │ │ │ │ ├── 6.mcfunction │ │ │ │ │ │ │ │ │ ├── 7.mcfunction │ │ │ │ │ │ │ │ │ └── 8.mcfunction │ │ │ │ │ │ │ │ │ ├── loop.mcfunction │ │ │ │ │ │ │ │ │ ├── main.mcfunction │ │ │ │ │ │ │ │ │ └── simplify.mcfunction │ │ │ │ │ │ │ │ ├── interact │ │ │ │ │ │ │ │ └── enter_gui.mcfunction │ │ │ │ │ │ │ │ ├── open_tick.mcfunction │ │ │ │ │ │ │ │ ├── place.mcfunction │ │ │ │ │ │ │ │ ├── reset.mcfunction │ │ │ │ │ │ │ │ └── tick.mcfunction │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ └── player │ │ │ │ │ │ │ │ └── slow_tick.mcfunction │ │ │ │ │ │ ├── recipes │ │ │ │ │ │ │ └── shaped.mcfunction │ │ │ │ │ │ └── technical │ │ │ │ │ │ │ ├── armor_stand.mcfunction │ │ │ │ │ │ │ ├── load.mcfunction │ │ │ │ │ │ │ ├── slow_tick.mcfunction │ │ │ │ │ │ │ └── tick.mcfunction │ │ │ │ │ └── zint │ │ │ │ │ │ └── technical │ │ │ │ │ │ └── enter_gui.mcfunction │ │ │ │ ├── item_modifier │ │ │ │ │ └── impl │ │ │ │ │ │ ├── remove_one.json │ │ │ │ │ │ └── set_count_from_score.json │ │ │ │ ├── loot_table │ │ │ │ │ └── blocks │ │ │ │ │ │ └── table.json │ │ │ │ ├── predicate │ │ │ │ │ └── block │ │ │ │ │ │ └── table │ │ │ │ │ │ ├── invalid_items.json │ │ │ │ │ │ └── special_clear │ │ │ │ │ │ └── buckets.json │ │ │ │ ├── recipe │ │ │ │ │ └── table.json │ │ │ │ └── tags │ │ │ │ │ └── function │ │ │ │ │ └── event │ │ │ │ │ ├── advanced_remove.json │ │ │ │ │ ├── break.json │ │ │ │ │ ├── query_tags.json │ │ │ │ │ ├── recipes.json │ │ │ │ │ └── shapeless_recipes.json │ │ │ └── smithed.custom_block │ │ │ │ └── tags │ │ │ │ └── function │ │ │ │ └── event │ │ │ │ └── on_place.json │ │ └── pack.png │ ├── custom-block │ │ ├── README.md │ │ ├── beet.yaml │ │ ├── data │ │ │ └── smithed.custom_block │ │ │ │ ├── advancement │ │ │ │ └── impl │ │ │ │ │ └── technical │ │ │ │ │ └── place_custom_block.json │ │ │ │ ├── function │ │ │ │ └── impl │ │ │ │ │ ├── place.mcfunction │ │ │ │ │ ├── place │ │ │ │ │ ├── block_unchanged.mcfunction │ │ │ │ │ ├── found.mcfunction │ │ │ │ │ ├── layer.mcfunction │ │ │ │ │ └── throw_warning.mcfunction │ │ │ │ │ └── technical │ │ │ │ │ ├── def_const.mcfunction │ │ │ │ │ └── load.mcfunction │ │ │ │ └── tags │ │ │ │ └── block │ │ │ │ └── placeable.json │ │ └── pack.png │ ├── damage │ │ ├── README.md │ │ ├── beet.yaml │ │ ├── data │ │ │ └── smithed.damage │ │ │ │ ├── advancements │ │ │ │ └── impl │ │ │ │ │ └── player │ │ │ │ │ └── event.json │ │ │ │ ├── functions │ │ │ │ └── impl │ │ │ │ │ ├── entity │ │ │ │ │ ├── apply.mcfunction │ │ │ │ │ ├── apply │ │ │ │ │ │ ├── armor.mcfunction │ │ │ │ │ │ ├── explosion.mcfunction │ │ │ │ │ │ └── projectile.mcfunction │ │ │ │ │ ├── armor │ │ │ │ │ │ ├── blast_protection.mcfunction │ │ │ │ │ │ ├── proj_protection.mcfunction │ │ │ │ │ │ ├── protection.mcfunction │ │ │ │ │ │ ├── resistance.mcfunction │ │ │ │ │ │ └── toughness.mcfunction │ │ │ │ │ ├── attributes │ │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ │ ├── 1024.mcfunction │ │ │ │ │ │ ├── 128.mcfunction │ │ │ │ │ │ ├── 16.mcfunction │ │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ │ ├── 256.mcfunction │ │ │ │ │ │ ├── 32.mcfunction │ │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ │ ├── 512.mcfunction │ │ │ │ │ │ ├── 64.mcfunction │ │ │ │ │ │ ├── 8.mcfunction │ │ │ │ │ │ ├── give.mcfunction │ │ │ │ │ │ ├── remove.mcfunction │ │ │ │ │ │ └── schedule.mcfunction │ │ │ │ │ ├── death_message.mcfunction │ │ │ │ │ ├── health │ │ │ │ │ │ ├── calculate_modifier.mcfunction │ │ │ │ │ │ ├── get_entity_health.mcfunction │ │ │ │ │ │ ├── update.mcfunction │ │ │ │ │ │ ├── update_entity.mcfunction │ │ │ │ │ │ └── update_player.mcfunction │ │ │ │ │ └── on_death.mcfunction │ │ │ │ │ ├── player │ │ │ │ │ └── event.mcfunction │ │ │ │ │ └── technical │ │ │ │ │ ├── def_const.mcfunction │ │ │ │ │ └── load.mcfunction │ │ │ │ └── tags │ │ │ │ ├── entity_types │ │ │ │ └── undead.json │ │ │ │ └── functions │ │ │ │ └── event │ │ │ │ ├── entity │ │ │ │ └── on_death.json │ │ │ │ └── player │ │ │ │ ├── on_damage.json │ │ │ │ └── on_death_message.json │ │ └── pack.png │ ├── enchanter │ │ ├── assets │ │ │ └── smithed.enchanter │ │ │ │ ├── font │ │ │ │ └── gui.json │ │ │ │ ├── lang │ │ │ │ └── en_us.json │ │ │ │ └── textures │ │ │ │ └── gui │ │ │ │ └── table.png │ │ ├── beet.yaml │ │ └── data │ │ │ └── smithed.enchanter │ │ │ ├── advancements │ │ │ └── impl │ │ │ │ └── test.json │ │ │ └── functions │ │ │ └── impl │ │ │ ├── block │ │ │ └── enchanter │ │ │ │ ├── get_bookshelves.mcfunction │ │ │ │ ├── get_levels.mcfunction │ │ │ │ ├── get_modified_level.mcfunction │ │ │ │ ├── place.mcfunction │ │ │ │ └── tick.mcfunction │ │ │ ├── technical │ │ │ ├── binomial_random.mcfunction │ │ │ ├── load.mcfunction │ │ │ ├── path.mcfunction │ │ │ ├── tick.mcfunction │ │ │ └── uniform_random.mcfunction │ │ │ └── test.mcfunction │ ├── item │ │ ├── README.md │ │ ├── beet.yaml │ │ ├── data │ │ │ └── smithed.item │ │ │ │ ├── advancements │ │ │ │ └── impl │ │ │ │ │ └── technical │ │ │ │ │ └── inventory_changed.json │ │ │ │ ├── functions │ │ │ │ └── impl │ │ │ │ │ ├── durability │ │ │ │ │ ├── calc_durability.mcfunction │ │ │ │ │ ├── calc_mending.mcfunction │ │ │ │ │ ├── calc_mending │ │ │ │ │ │ ├── clamp.mcfunction │ │ │ │ │ │ └── return_overflow.mcfunction │ │ │ │ │ ├── damage.mcfunction │ │ │ │ │ ├── damage │ │ │ │ │ │ ├── boots.mcfunction │ │ │ │ │ │ ├── chestplate.mcfunction │ │ │ │ │ │ ├── force.mcfunction │ │ │ │ │ │ ├── force │ │ │ │ │ │ │ └── sub.mcfunction │ │ │ │ │ │ ├── helmet.mcfunction │ │ │ │ │ │ ├── leggings.mcfunction │ │ │ │ │ │ ├── mainhand.mcfunction │ │ │ │ │ │ └── offhand.mcfunction │ │ │ │ │ ├── detect.mcfunction │ │ │ │ │ ├── get_max.mcfunction │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ └── process │ │ │ │ │ │ ├── boots.mcfunction │ │ │ │ │ │ ├── chestplate.mcfunction │ │ │ │ │ │ ├── handle.mcfunction │ │ │ │ │ │ ├── helmet.mcfunction │ │ │ │ │ │ ├── leggings.mcfunction │ │ │ │ │ │ ├── mainhand.mcfunction │ │ │ │ │ │ └── offhand.mcfunction │ │ │ │ │ ├── lore │ │ │ │ │ ├── attributes.mcfunction │ │ │ │ │ ├── base_attributes.mcfunction │ │ │ │ │ ├── build.mcfunction │ │ │ │ │ ├── custom.mcfunction │ │ │ │ │ ├── durability.mcfunction │ │ │ │ │ ├── enchantments.mcfunction │ │ │ │ │ └── update_inventory.mcfunction │ │ │ │ │ └── technical │ │ │ │ │ ├── load.mcfunction │ │ │ │ │ ├── player.mcfunction │ │ │ │ │ └── tick.mcfunction │ │ │ │ ├── item_modifiers │ │ │ │ └── update_nbt.json │ │ │ │ ├── predicates │ │ │ │ └── chance │ │ │ │ │ ├── 10.json │ │ │ │ │ ├── 11.json │ │ │ │ │ ├── 12.json │ │ │ │ │ ├── 14.json │ │ │ │ │ ├── 16.json │ │ │ │ │ ├── 20.json │ │ │ │ │ ├── 25.json │ │ │ │ │ ├── 33.json │ │ │ │ │ ├── 50.json │ │ │ │ │ └── 9.json │ │ │ │ └── tags │ │ │ │ └── functions │ │ │ │ └── event │ │ │ │ └── build_custom.json │ │ └── pack.png │ └── prevent-aggression │ │ ├── README.md │ │ ├── beet.yaml │ │ ├── data │ │ └── smithed.prevent_aggression │ │ │ ├── functions │ │ │ └── impl │ │ │ │ └── technical │ │ │ │ ├── 10_tick.mcfunction │ │ │ │ └── load.mcfunction │ │ │ └── tags │ │ │ └── entity_types │ │ │ └── mobs.json │ │ └── pack.png └── plugins │ ├── __init__.py │ ├── companion_mod.py │ ├── crafter.py │ ├── documentation.py │ ├── manifest.py │ ├── misc.py │ ├── nbt_literals.py │ └── versioning │ ├── README.md │ ├── __init__.py │ ├── api.py │ ├── load.py │ ├── models.py │ ├── plugin.py │ ├── types.py │ └── utils.py └── template ├── README.md ├── beet.yaml ├── data └── smithed.id │ └── functions │ └── impl │ └── technical │ ├── load.mcfunction │ └── tick.mcfunction └── pack.png /.gitignore: -------------------------------------------------------------------------------- 1 | .beet_cache 2 | .vscode 3 | out 4 | __pycache__ 5 | .DS_Store 6 | pack.mcmeta 7 | dist/ 8 | docs/ 9 | *.zip 10 | .venv/ -------------------------------------------------------------------------------- /beet.yaml: -------------------------------------------------------------------------------- 1 | broadcast: smithed_libraries/packs/* 2 | extend: beet.yaml 3 | 4 | output: ../../../dist 5 | -------------------------------------------------------------------------------- /smithed_libraries/packs/actionbar/beet.yaml: -------------------------------------------------------------------------------- 1 | extend: "@smithed_libraries/common.yaml" 2 | 3 | id: smithed.actionbar 4 | name: Smithed Actionbar 5 | version: "0.6.3" 6 | description: Native Actionbar Library for Smithed 7 | 8 | data_pack: 9 | name: Smithed Actionbar 10 | load: . 11 | 12 | require: 13 | - bolt 14 | -------------------------------------------------------------------------------- /smithed_libraries/packs/actionbar/data/smithed.actionbar/tags/blocks/impl/chests.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:chest", 4 | "minecraft:trapped_chest" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/actionbar/data/smithed.actionbar/tags/functions/event/player/on_click_locked_container.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/actionbar/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/actionbar/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter/tags/functions/event/query_tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "smithed.crafter_addon:impl/tags/query" 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter/tags/functions/event/recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "smithed.crafter_addon:impl/recipes/shaped/0_542" 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter/tags/functions/event/shapeless_recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "smithed.crafter_addon:impl/recipes/shapeless/0_182" 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_67 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_8 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/9_16 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_1 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/2_2 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_135 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_16 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/17_33 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_4.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_2 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/3_4 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_271 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_33 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_67 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/0_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/0_4 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/5_8 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/102_104.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_103 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/104_104 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/102_106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_104 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/105_106 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/102_110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_106 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/107_110 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/102_118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_110 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/111_118 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/102_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_118 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/119_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/107_110.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/107_108 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/109_110 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/111_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/111_112 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/113_114 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/111_118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/111_114 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/115_118 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/115_118.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/115_116 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/117_118 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/119_121.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/119_120 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/121_121 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/119_123.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/119_121 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/122_123 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/119_127.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/119_123 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/124_127 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/119_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/119_127 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/128_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/124_127.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/124_125 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/126_127 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/128_131.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/128_129 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/130_131 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/128_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/128_131 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/132_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/132_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/132_133 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/134_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_138.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_137 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/138_138 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_138 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/139_140 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_144.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_140 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/141_144 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_152.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_144 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/145_152 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_152 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/153_169 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_169 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_203 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/136_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/136_203 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/13_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/13_14 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/15_16 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/141_144.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/141_142 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/143_144 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/145_148.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/145_146 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/147_148 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/145_152.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/145_148 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/149_152 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/149_152.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/149_150 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/151_152 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/153_155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/153_154 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/155_155 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/153_157.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/153_155 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/156_157 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/153_161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/153_157 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/158_161 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/153_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/153_161 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/162_169 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/158_161.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/158_159 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/160_161 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/162_165.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/162_163 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/164_165 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/162_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/162_165 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/166_169 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/166_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/166_167 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/168_169 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/170_172.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_171 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/172_172 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/170_174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_172 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/173_174 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/170_178.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_174 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/175_178 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/170_186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_178 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/179_186 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/170_203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/170_186 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/187_203 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/175_178.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/175_176 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/177_178 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/179_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/179_180 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/181_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/179_186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/179_182 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/183_186 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/17_19.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/17_18 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/19_19 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/17_21.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/17_19 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/20_21 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/17_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/17_21 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/22_25 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/17_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/17_25 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/26_33 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/183_186.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/183_184 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/185_186 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/187_189.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/187_188 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/189_189 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/187_191.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/187_189 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/190_191 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/187_195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/187_191 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/192_195 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/187_203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/187_195 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/196_203 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/192_195.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/192_193 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/194_195 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/196_199.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/196_197 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/198_199 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/196_203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/196_199 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/200_203 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/200_203.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/200_201 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/202_203 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_206.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_205 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/206_206 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_208.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_206 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/207_208 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_212.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_208 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/209_212 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_220.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_212 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/213_220 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_220 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/221_237 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/204_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/204_237 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/209_212.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/209_210 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/211_212 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/213_216.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/213_214 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/215_216 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/213_220.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/213_216 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/217_220 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/217_220.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/217_218 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/219_220 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/221_223.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/221_222 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/223_223 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/221_225.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/221_223 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/224_225 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/221_229.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/221_225 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/226_229 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/221_237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/221_229 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/230_237 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/226_229.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/226_227 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/228_229 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/22_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/22_23 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/24_25 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/230_233.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/230_231 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/232_233 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/230_237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/230_233 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/234_237 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/234_237.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/234_235 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/236_237 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/238_240.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_239 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/240_240 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/238_242.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_240 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/241_242 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/238_246.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_242 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/243_246 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/238_254.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_246 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/247_254 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/238_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/238_254 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/255_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/243_246.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/243_244 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/245_246 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/247_250.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/247_248 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/249_250 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/247_254.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/247_250 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/251_254 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/251_254.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/251_252 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/253_254 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/255_257.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/255_256 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/257_257 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/255_259.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/255_257 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/258_259 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/255_263.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/255_259 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/260_263 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/255_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/255_263 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/264_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/260_263.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/260_261 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/262_263 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/264_267.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/264_265 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/266_267 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/264_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/264_267 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/268_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/268_271.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/268_269 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/270_271 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/26_29.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/26_27 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/28_29 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/26_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/26_29 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/30_33 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_274.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_273 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/274_274 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_276.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_274 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/275_276 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_280.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_276 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/277_280 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_288.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_280 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/281_288 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_305.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_288 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/289_305 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_339.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_305 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_339 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_339 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/272_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/272_407 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/277_280.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/277_278 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/279_280 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/281_284.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/281_282 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/283_284 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/281_288.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/281_284 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/285_288 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/285_288.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/285_286 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/287_288 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/289_291.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/289_290 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/291_291 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/289_293.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/289_291 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/292_293 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/289_297.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/289_293 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/294_297 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/289_305.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/289_297 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/298_305 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/294_297.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/294_295 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/296_297 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/298_301.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/298_299 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/300_301 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/298_305.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/298_301 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/302_305 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/302_305.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/302_303 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/304_305 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/306_308.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_307 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/308_308 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/306_310.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_308 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/309_310 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/306_314.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_310 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/311_314 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/306_322.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_314 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/315_322 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/306_339.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/306_322 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/323_339 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/30_33.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/30_31 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/32_33 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/311_314.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/311_312 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/313_314 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/315_318.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/315_316 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/317_318 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/315_322.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/315_318 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/319_322 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/319_322.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/319_320 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/321_322 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/323_325.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/323_324 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/325_325 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/323_327.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/323_325 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/326_327 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/323_331.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/323_327 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/328_331 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/323_339.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/323_331 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/332_339 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/328_331.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/328_329 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/330_331 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/332_335.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/332_333 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/334_335 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/332_339.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/332_335 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/336_339 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/336_339.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/336_337 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/338_339 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_342.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_341 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/342_342 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_344.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_342 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/343_344 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_348.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_344 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/345_348 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_356.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_348 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/349_356 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_373.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_356 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/357_373 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/340_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/340_373 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/345_348.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/345_346 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/347_348 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/349_352.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/349_350 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/351_352 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/349_356.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/349_352 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/353_356 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/34_36.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_35 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/36_36 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/34_38.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_36 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/37_38 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/34_42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_38 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/39_42 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/34_50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_42 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/43_50 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/34_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/34_50 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/51_67 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/353_356.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/353_354 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/355_356 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/357_359.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/357_358 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/359_359 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/357_361.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/357_359 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/360_361 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/357_365.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/357_361 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/362_365 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/357_373.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/357_365 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/366_373 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/362_365.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/362_363 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/364_365 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/366_369.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/366_367 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/368_369 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/366_373.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/366_369 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/370_373 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/370_373.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/370_371 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/372_373 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/374_376.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_375 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/376_376 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/374_378.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_376 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/377_378 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/374_382.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_378 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/379_382 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/374_390.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_382 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/383_390 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/374_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/374_390 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/391_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/379_382.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/379_380 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/381_382 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/383_386.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/383_384 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/385_386 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/383_390.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/383_386 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/387_390 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/387_390.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/387_388 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/389_390 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/391_393.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/391_392 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/393_393 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/391_395.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/391_393 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/394_395 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/391_399.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/391_395 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/396_399 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/391_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/391_399 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/400_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/396_399.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/396_397 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/398_399 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/39_42.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/39_40 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/41_42 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/400_403.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/400_401 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/402_403 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/400_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/400_403 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/404_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/404_407.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/404_405 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/406_407 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_410.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_409 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/410_410 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_412.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_410 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/411_412 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_416.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_412 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/413_416 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_424.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_416 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/417_424 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_441.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_424 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/425_441 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_475.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_441 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_475 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/408_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/408_475 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/413_416.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/413_414 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/415_416 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/417_420.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/417_418 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/419_420 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/417_424.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/417_420 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/421_424 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/421_424.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/421_422 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/423_424 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/425_427.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/425_426 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/427_427 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/425_429.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/425_427 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/428_429 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/425_433.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/425_429 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/430_433 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/425_441.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/425_433 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/434_441 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/430_433.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/430_431 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/432_433 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/434_437.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/434_435 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/436_437 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/434_441.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/434_437 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/438_441 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/438_441.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/438_439 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/440_441 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/43_46.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/43_44 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/45_46 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/43_50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/43_46 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/47_50 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/442_444.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_443 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/444_444 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/442_446.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_444 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/445_446 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/442_450.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_446 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/447_450 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/442_458.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_450 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/451_458 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/442_475.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/442_458 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/459_475 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/447_450.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/447_448 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/449_450 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/451_454.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/451_452 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/453_454 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/451_458.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/451_454 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/455_458 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/455_458.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/455_456 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/457_458 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/459_461.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/459_460 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/461_461 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/459_463.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/459_461 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/462_463 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/459_467.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/459_463 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/464_467 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/459_475.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/459_467 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/468_475 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/464_467.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/464_465 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/466_467 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/468_471.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/468_469 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/470_471 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/468_475.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/468_471 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/472_475 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/472_475.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/472_473 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/474_475 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_478.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_477 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/478_478 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_480.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_478 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/479_480 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_484.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_480 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/481_484 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_492.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_484 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/485_492 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_509.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_492 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/493_509 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/476_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/476_509 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/47_50.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/47_48 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/49_50 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/481_484.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/481_482 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/483_484 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/485_488.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/485_486 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/487_488 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/485_492.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/485_488 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/489_492 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/489_492.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/489_490 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/491_492 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/493_495.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/493_494 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/495_495 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/493_497.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/493_495 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/496_497 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/493_501.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/493_497 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/498_501 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/493_509.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/493_501 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/502_509 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/498_501.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/498_499 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/500_501 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/502_505.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/502_503 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/504_505 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/502_509.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/502_505 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/506_509 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/506_509.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/506_507 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/508_509 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/510_512.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_511 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/512_512 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/510_514.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_512 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/513_514 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/510_518.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_514 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/515_518 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/510_526.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_518 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/519_526 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/510_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/510_526 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/527_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/515_518.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/515_516 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/517_518 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/519_522.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/519_520 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/521_522 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/519_526.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/519_522 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/523_526 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/51_53.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/51_52 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/53_53 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/51_55.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/51_53 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/54_55 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/51_59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/51_55 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/56_59 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/51_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/51_59 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/60_67 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/523_526.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/523_524 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/525_526 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/527_530.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/527_528 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/529_530 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/527_534.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/527_530 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/531_534 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/527_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/527_534 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/535_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/531_534.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/531_532 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/533_534 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/535_538.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/535_536 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/537_538 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/535_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/535_538 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/539_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/539_542.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/539_540 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/541_542 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/56_59.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/56_57 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/58_59 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/5_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/5_6 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/7_8 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/60_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/60_61 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/62_63 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/60_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/60_63 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/64_67 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/64_67.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/64_65 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/66_67 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_84 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/85_101 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_101 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/102_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_70.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_69 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/70_70 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_72.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_70 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/71_72 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_72 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/73_76 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/68_84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/68_76 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/77_84 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/73_76.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/73_74 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/75_76 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/77_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/77_78 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/79_80 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/77_84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/77_80 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/81_84 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/81_84.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/81_82 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/83_84 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/85_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/85_93 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/94_101 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/85_87.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/85_86 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/87_87 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/85_89.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/85_87 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/88_89 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/85_93.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/85_89 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/90_93 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/90_93.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/90_91 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/92_93 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/94_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/94_97 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/98_101 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/94_97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/94_95 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/96_97 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/98_101.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/98_99 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/100_101 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/9_12.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/9_10 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/11_12 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shaped/9_16.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/9_12 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shaped/13_16 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_5 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/6_11 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_91 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_2.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_1 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/2_2 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_11 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/12_22 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_22 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/23_45 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_2 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/3_5 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/0_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/0_45 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_91 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/101_103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/101_102 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/103_103 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/104_106.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/104_105 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/106_106 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/104_109.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/104_106 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/107_109 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/104_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/104_109 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/110_114 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/107_109.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/107_108 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/109_109 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/110_112.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/110_111 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/112_112 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/110_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/110_112 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/113_114 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/115_117.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/115_116 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/117_117 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/115_120.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/115_117 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/118_120 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/115_126.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/115_120 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/121_126 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/115_137.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/115_126 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/127_137 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/118_120.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/118_119 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/120_120 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/120_120.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:pink_tulip"}]} run item replace block ~ ~ ~ container.16 with minecraft:pink_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/121_123.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/121_122 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/123_123 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/121_126.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/121_123 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/124_126 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/124_126.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/124_125 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/126_126 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/127_129.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/127_128 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/129_129 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/127_132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/127_129 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/130_132 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/127_137.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/127_132 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/133_137 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/12_14.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/12_13 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/14_14 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/12_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/12_14 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/15_17 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/12_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/12_17 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/18_22 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/130_132.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/130_131 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/132_132 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/133_135.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/133_134 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/135_135 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/133_137.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/133_135 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/136_137 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/138_140.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_139 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/140_140 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/138_143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_140 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/141_143 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/138_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_143 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/144_149 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/138_160.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_149 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/150_160 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/138_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_160 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/161_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/140_140.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:beetroot"}]} run item replace block ~ ~ ~ container.16 with minecraft:red_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/141_143.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/141_142 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/143_143 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/143_143.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:red_tulip"}]} run item replace block ~ ~ ~ container.16 with minecraft:red_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/144_146.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/144_145 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/146_146 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/144_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/144_146 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/147_149 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/146_146.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:slime_block"}]} run item replace block ~ ~ ~ container.16 with minecraft:slime_ball 9 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/147_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/147_148 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/149_149 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/149_149.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:stone"}]} run item replace block ~ ~ ~ container.16 with minecraft:stone_button 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/150_152.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/150_151 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/152_152 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/150_155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/150_152 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/153_155 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/150_160.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/150_155 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/156_160 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/153_155.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/153_154 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/155_155 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/156_158.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/156_157 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/158_158 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/156_160.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/156_158 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/159_160 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/15_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/15_16 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/17_17 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/161_163.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/161_162 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/163_163 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/161_166.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/161_163 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/164_166 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/161_171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/161_166 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/167_171 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/161_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/161_171 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/172_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/164_166.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/164_165 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/166_166 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/167_169.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/167_168 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/169_169 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/167_171.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/167_169 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/170_171 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/172_174.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/172_173 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/174_174 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/172_177.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/172_174 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/175_177 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/172_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/172_177 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/178_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/174_174.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:bone_meal"}]} run item replace block ~ ~ ~ container.16 with minecraft:white_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/175_177.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/175_176 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/177_177 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/178_180.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/178_179 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/180_180 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/178_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/178_180 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/181_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/17_17.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:cornflower"}]} run item replace block ~ ~ ~ container.16 with minecraft:blue_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/180_180.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:dandelion"}]} run item replace block ~ ~ ~ container.16 with minecraft:yellow_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/18_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/18_19 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/20_20 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/18_22.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/18_20 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/21_22 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/20_20.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:bone_block"}]} run item replace block ~ ~ ~ container.16 with minecraft:bone_meal 9 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/23_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/23_24 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/25_25 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/23_28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/23_25 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/26_28 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/23_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/23_28 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/29_34 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/23_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/23_34 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/35_45 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/25_25.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:cocoa_beans"}]} run item replace block ~ ~ ~ container.16 with minecraft:brown_dye 1 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/26_28.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/26_27 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/28_28 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/29_31.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/29_30 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/31_31 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/29_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/29_31 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/32_34 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/32_34.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/32_33 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/34_34 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/35_37.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/35_36 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/37_37 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/35_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/35_37 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/38_40 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/35_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/35_40 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/41_45 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/38_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/38_39 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/40_40 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/3_5.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/3_4 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/5_5 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/40_40.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:diamond_block"}]} run item replace block ~ ~ ~ container.16 with minecraft:diamond 9 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/41_43.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/41_42 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/43_43 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/41_45.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/41_43 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/44_45 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/46_48.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_47 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/48_48 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/46_51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_48 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/49_51 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/46_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_51 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/52_57 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/46_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_57 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/58_68 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/46_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/46_68 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/69_91 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/49_51.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/49_50 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/51_51 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/52_54.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/52_53 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/54_54 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/52_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/52_54 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/55_57 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/55_57.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/55_56 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/57_57 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/58_60.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/58_59 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/60_60 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/58_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/58_60 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/61_63 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/58_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/58_63 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/64_68 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/61_63.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/61_62 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/63_63 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/64_66.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/64_65 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/66_66 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/64_68.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/64_66 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/67_68 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/69_71.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/69_70 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/71_71 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/69_74.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/69_71 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/72_74 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/69_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/69_74 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/75_80 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/69_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/69_80 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/81_91 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/6_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/6_8 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/9_11 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/6_8.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/6_7 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/8_8 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/72_74.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/72_73 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/74_74 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/75_77.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/75_76 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/77_77 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/75_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/75_77 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/78_80 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/78_80.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/78_79 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/80_80 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/81_83.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/81_82 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/83_83 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/81_86.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/81_83 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/84_86 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/81_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/81_86 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/87_91 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/84_86.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/84_85 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/86_86 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/87_89.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/87_88 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/89_89 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/87_91.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/87_89 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/90_91 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_97 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/98_103 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_114.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_103 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/104_114 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_137.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_114 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/115_137 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_182.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_137 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/138_182 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_94.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_93 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/94_94 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/92_97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/92_94 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/95_97 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/94_94.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score @s smithed.data if entity @s[scores={smithed.data=0}] if score count smithed.data matches 1 if data storage smithed.crafter:main root.temp{shapeless_crafting_input:[{id:"minecraft:lilac"}]} run item replace block ~ ~ ~ container.16 with minecraft:magenta_dye 2 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/95_97.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/95_96 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/97_97 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/98_100.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/98_99 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/100_100 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/98_103.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/98_100 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/101_103 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/data/smithed.crafter_addon/functions/impl/recipes/shapeless/9_11.mcfunction: -------------------------------------------------------------------------------- 1 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/9_10 2 | execute if score @s smithed.data matches 0 run function smithed.crafter_addon:impl/recipes/shapeless/11_11 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter-addon/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter-addon/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | **Smithed Crafter** serves as the end users all in one crafting table! No more having 89 different crafting blocks in your base! 6 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/items/table.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "model", 4 | "model": "smithed.crafter:item/table" 5 | } 6 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.smithed.crafter":"Heavy Workbench", 3 | "block.smithed.crafter.gui":"\uc000 \uc002\uc001%s" 4 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/heavy_workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/heavy_workbench.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_front.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_legacy.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_side.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/block/table_top.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/gui/negative_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/gui/negative_space.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/assets/smithed.crafter/textures/gui/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/assets/smithed.crafter/textures/gui/table.png -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/place.mcfunction: -------------------------------------------------------------------------------- 1 | # @public 2 | 3 | execute if data storage smithed.custom_block:main {blockApi:{id:"smithed:crafter"}} run function smithed.crafter:impl/block/table/place 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/break/drop_item.mcfunction: -------------------------------------------------------------------------------- 1 | kill @e[type=item,nbt={Item:{id:"minecraft:barrel",count:1}},limit=1,sort=nearest,distance=..3] 2 | execute if entity @s[tag=smithed.default] run loot spawn ~ ~ ~ loot smithed.crafter:blocks/table 3 | execute if entity @s[tag=!smithed.default] run function #smithed.crafter:event/break -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/crafting/output/clear_input/advanced/buckets.mcfunction: -------------------------------------------------------------------------------- 1 | playsound minecraft:item.bucket.empty block @a[distance=..7, tag=smithed.inside_crafter] ~ ~ ~ 2 | data modify entity @s equipment.mainhand.id set value "minecraft:bucket" 3 | scoreboard players set $temp smithed.data 1 -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/crafting/output/clear_input/delete_tool/sub.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players set $temp smithed.data 0 2 | playsound entity.item.break block @a[distance=..7,tag=smithed.inside_crafter] ~ ~ ~ -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/crafting/shapeless_recipes/append.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage smithed.crafter:main root.temp.simplified append from storage smithed.crafter:main root.temp.a 2 | data modify storage smithed.crafter:main root.temp.simplified[-1].count set value 1 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/interact/enter_gui.mcfunction: -------------------------------------------------------------------------------- 1 | # @public 2 | 3 | ## Add Tag 4 | tag @s add smithed.inside_crafter 5 | ## Revoke Advancement 6 | advancement revoke @s only smithed.crafter:technical/enter_gui 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/block/table/reset.mcfunction: -------------------------------------------------------------------------------- 1 | tag @s remove smithed.open 2 | item replace block ~ ~ ~ container.16 with air -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/entity/player/slow_tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute if entity @s[tag=smithed.inside_crafter] unless entity @e[tag=smithed.crafter,distance=..6,type=armor_stand] run tag @s remove smithed.inside_crafter -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/technical/armor_stand.mcfunction: -------------------------------------------------------------------------------- 1 | # @public 2 | 3 | execute if entity @s[tag=smithed.crafter] run function smithed.crafter:impl/block/table/tick 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/technical/load.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add smithed.inv_change dummy 2 | 3 | data modify storage smithed.crafter:input flags set value [] 4 | schedule function smithed.crafter:impl/technical/slow_tick 5t replace 5 | schedule function smithed.crafter:impl/technical/tick 1t replace 6 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/technical/slow_tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @a at @s run function smithed.crafter:impl/entity/player/slow_tick 2 | 3 | schedule function smithed.crafter:impl/technical/slow_tick 5t replace -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/impl/technical/tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @e[tag=smithed.crafter] at @s run function smithed.crafter:impl/block/table/tick 2 | 3 | schedule function smithed.crafter:impl/technical/tick 1t replace 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/function/zint/technical/enter_gui.mcfunction: -------------------------------------------------------------------------------- 1 | function #smithed.crafter:block/table/interact/enter_gui 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/item_modifier/impl/remove_one.json: -------------------------------------------------------------------------------- 1 | { 2 | "function": "minecraft:set_count", 3 | "count": -1, 4 | "add": true 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/tags/function/event/advanced_remove.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/tags/function/event/break.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/tags/function/event/query_tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/tags/function/event/recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "#smithed.crafter:recipes/shaped" 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.crafter/tags/function/event/shapeless_recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/data/smithed.custom_block/tags/function/event/on_place.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | "#smithed.crafter:block/place" 4 | ] 5 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/crafter/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/crafter/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/custom-block/data/smithed.custom_block/function/impl/place/block_unchanged.mcfunction: -------------------------------------------------------------------------------- 1 | execute store success score $temp smithed.data run data modify storage smithed.custom_block:main blockApi.__data set from block ~ ~ ~ 2 | 3 | execute if score $temp smithed.data matches 0 run function smithed.custom_block:impl/place/throw_warning 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/custom-block/data/smithed.custom_block/function/impl/place/throw_warning.mcfunction: -------------------------------------------------------------------------------- 1 | data merge storage smithed.logging:main {message:'{"text":"No pack updated the custom block!"}', type:'WARNING'} 2 | function #smithed.logging:print 3 | 4 | particle cloud ~ ~ ~ 0 0 0 0 10 force @a 5 | setblock ~ ~ ~ air -------------------------------------------------------------------------------- /smithed_libraries/packs/custom-block/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/custom-block/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/beet.yaml: -------------------------------------------------------------------------------- 1 | extend: "@smithed_libraries/common.yaml" 2 | 3 | id: smithed.damage 4 | name: Smithed Damage 5 | version: "0.2.0" 6 | description: Native Damage Library for Smithed 7 | 8 | data_pack: 9 | name: Smithed Damage 10 | load: . 11 | 12 | require: 13 | - bolt 14 | 15 | pipeline: 16 | - mecha 17 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/1.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 1 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa30 custom -1 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/1024.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 1024 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa3a custom -1024 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/128.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 128 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa37 custom -128 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/16.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 16 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa34 custom -16 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/2.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 2 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa31 custom -2 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/256.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 256 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa38 custom -256 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/32.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 32 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa35 custom -32 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/4.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 4 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa32 custom -4 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/512.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 512 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa39 custom -512 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/64.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 64 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa36 custom -64 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/8.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players remove @s smithed.damage 8 2 | raw attribute @s generic.max_health modifier add 8b138417-eccd-429b-a080-4beb98b7aa33 custom -8 add 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/attributes/schedule.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @a[tag=smithed.damage.applied_damage] run function smithed.damage:impl/entity/attributes/remove 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/health/get_entity_health.mcfunction: -------------------------------------------------------------------------------- 1 | execute store result score $maximumHealth smithed.damage run data get entity @s Health 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/health/update.mcfunction: -------------------------------------------------------------------------------- 1 | execute if entity @s[type=player] run function smithed.damage:impl/entity/health/update_player 2 | execute if entity @s[type=!player] run function smithed.damage:impl/entity/health/update_entity 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/entity/health/update_player.mcfunction: -------------------------------------------------------------------------------- 1 | function smithed.damage:impl/entity/attributes/give 2 | effect give @s instant_health 1 24 true 3 | schedule function smithed.damage:impl/entity/attributes/schedule 2t 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/functions/impl/technical/load.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add smithed.damage dummy 2 | scoreboard objectives add smithed.const dummy 3 | 4 | function smithed.damage:impl/technical/def_const 5 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/tags/functions/event/entity/on_death.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/tags/functions/event/player/on_damage.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/data/smithed.damage/tags/functions/event/player/on_death_message.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/damage/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/damage/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/enchanter/assets/smithed.enchanter/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.smithed.enchanter":"Enchant", 3 | "block.smithed.enchanter.gui":"\uc000 \uc002\uc001%s" 4 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/enchanter/assets/smithed.enchanter/textures/gui/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/enchanter/assets/smithed.enchanter/textures/gui/table.png -------------------------------------------------------------------------------- /smithed_libraries/packs/enchanter/data/smithed.enchanter/functions/impl/block/enchanter/tick.mcfunction: -------------------------------------------------------------------------------- 1 | unless block ~ ~ ~ minecraft:barrel kill @s 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/enchanter/data/smithed.enchanter/functions/impl/technical/path.mcfunction: -------------------------------------------------------------------------------- 1 | def path(path): 2 | return generate_path(path).replace('__version__', ctx.project_version) 3 | -------------------------------------------------------------------------------- /smithed_libraries/packs/enchanter/data/smithed.enchanter/functions/impl/technical/tick.mcfunction: -------------------------------------------------------------------------------- 1 | as @e[type=minecraft:armor_stand, tag=smithed.enchanter] at @s function ../block/enchanter/tick 2 | 3 | schedule function ./tick 1t replace -------------------------------------------------------------------------------- /smithed_libraries/packs/item/README.md: -------------------------------------------------------------------------------- 1 | # Item 2 | 3 | ## Downloading 4 | You can download it from [here](https://smithed.dev/thenuclearnexus/smithed.item)
5 | or
6 | You can build it from source using the [beet](https://github.com/mcbeet/beet) 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/durability/calc_mending/return_overflow.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation $xp.temp1 smithed.data -= $temp3 smithed.data 2 | scoreboard players operation $temp1 smithed.data -= $xp.temp1 smithed.data 3 | scoreboard players operation $xp.temp smithed.data -= $xp.temp1 smithed.data 4 | 5 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/durability/init.mcfunction: -------------------------------------------------------------------------------- 1 | data modify storage smithed.item:main item.tag.smithed.durability.dur set from storage smithed.item:main item.tag.smithed.durability.max 2 | data modify storage smithed.item:main item.tag.smithed.durability.damage set value 0 -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/lore/update_inventory.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/item/data/smithed.item/functions/impl/lore/update_inventory.mcfunction -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/technical/load.mcfunction: -------------------------------------------------------------------------------- 1 | forceload add -30000000 1600 2 | setblock -30000000 0 1603 oak_sign 3 | scoreboard objectives add smithed.data dummy 4 | 5 | schedule function smithed.item:impl/technical/tick 1t replace -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/technical/player.mcfunction: -------------------------------------------------------------------------------- 1 | execute if data entity @s Inventory[].tag.smithed.durability run function smithed.item:impl/durability/detect 2 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/functions/impl/technical/tick.mcfunction: -------------------------------------------------------------------------------- 1 | execute as @a run function smithed.item:impl/technical/player 2 | 3 | schedule function smithed.item:impl/technical/tick 1t replace -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/10.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.1 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/11.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.111111111 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/12.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.125 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/14.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.14285714 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/16.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.166666667 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/20.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.25 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/25.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.25 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/33.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.333333333 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/50.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.5 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/predicates/chance/9.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "condition": "minecraft:random_chance", 4 | "chance": 0.0909090909 5 | } 6 | ] 7 | -------------------------------------------------------------------------------- /smithed_libraries/packs/item/data/smithed.item/tags/functions/event/build_custom.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /smithed_libraries/packs/item/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/item/pack.png -------------------------------------------------------------------------------- /smithed_libraries/packs/prevent-aggression/README.md: -------------------------------------------------------------------------------- 1 | # PreventAggression -------------------------------------------------------------------------------- /smithed_libraries/packs/prevent-aggression/beet.yaml: -------------------------------------------------------------------------------- 1 | extend: "@smithed_libraries/common.yaml" 2 | 3 | id: smithed.prevent_aggression 4 | name: Smithed Prevent Aggression 5 | description: Stop mobs from targetting your custom mobs 6 | version: "0.3.0" 7 | 8 | data_pack: 9 | name: Smithed Prevent Aggression 10 | load: . 11 | 12 | pipeline: 13 | - mecha 14 | -------------------------------------------------------------------------------- /smithed_libraries/packs/prevent-aggression/data/smithed.prevent_aggression/functions/impl/technical/load.mcfunction: -------------------------------------------------------------------------------- 1 | team add smithed.prevent_aggression 2 | team modify smithed.prevent_aggression friendlyFire false 3 | 4 | schedule function smithed.prevent_aggression:impl/technical/10_tick 10t replace 5 | -------------------------------------------------------------------------------- /smithed_libraries/packs/prevent-aggression/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/packs/prevent-aggression/pack.png -------------------------------------------------------------------------------- /smithed_libraries/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/smithed_libraries/plugins/__init__.py -------------------------------------------------------------------------------- /smithed_libraries/plugins/versioning/README.md: -------------------------------------------------------------------------------- 1 | # smithed.versioning 2 | This doc will serve as an explanation on how to serve a fully versionable library with APIs. 3 | 4 | > Coming soon 5 | -------------------------------------------------------------------------------- /smithed_libraries/plugins/versioning/__init__.py: -------------------------------------------------------------------------------- 1 | from .plugin import beet_default 2 | 3 | __all__ = ["beet_default"] 4 | -------------------------------------------------------------------------------- /smithed_libraries/plugins/versioning/types.py: -------------------------------------------------------------------------------- 1 | JsonType = str | int | float | bool | list["JsonType"] | dict[str, "JsonType"] 2 | JsonDict = dict[str, "JsonType"] 3 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- 1 | # Template for Smithed Libraries 2 | 3 | ## Instructions 4 | 1. Make a copy of this folder in the `smithed_libraries/packs` folder 5 | 2. Open `beet.yaml` and edit anything within `<>` 6 | 3. Change the `smithed.id` folders in `data` and `assets` to match the pack you are making 7 | 4. Open the functions `smithed.id:impl/load` and `smithed.id:impl/tick` and fix `smithed.id` 8 | -------------------------------------------------------------------------------- /template/data/smithed.id/functions/impl/technical/load.mcfunction: -------------------------------------------------------------------------------- 1 | schedule function smithed.id:impl/technical/tick 1 2 | -------------------------------------------------------------------------------- /template/data/smithed.id/functions/impl/technical/tick.mcfunction: -------------------------------------------------------------------------------- 1 | schedule function smithed.id:impl/technical/tick 1t replace -------------------------------------------------------------------------------- /template/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smithed-MC/Libraries/578196cf901a148b3b537aeda888d673ef274345/template/pack.png --------------------------------------------------------------------------------