You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1aa59858-3544-4f25-93b2-f975c409e64f.json 89 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495
  1. {
  2. "minecraft:recipes/decorations/crafting_table": {
  3. "criteria": {
  4. "unlock_right_away": "2024-06-14 23:29:32 +0900"
  5. },
  6. "done": true
  7. },
  8. "minecraft:adventure/adventuring_time": {
  9. "criteria": {
  10. "minecraft:cold_ocean": "2024-06-15 15:41:49 +0900",
  11. "minecraft:flower_forest": "2024-06-14 23:51:57 +0900",
  12. "minecraft:beach": "2024-06-15 15:42:52 +0900",
  13. "minecraft:forest": "2024-06-15 15:43:32 +0900",
  14. "minecraft:deep_ocean": "2024-06-15 22:42:52 +0900",
  15. "minecraft:river": "2024-06-14 23:51:53 +0900",
  16. "minecraft:stony_shore": "2024-06-14 23:29:33 +0900",
  17. "minecraft:deep_dark": "2024-06-15 15:16:26 +0900",
  18. "minecraft:ocean": "2024-06-15 00:12:49 +0900",
  19. "minecraft:cherry_grove": "2024-06-14 23:31:19 +0900",
  20. "minecraft:sunflower_plains": "2024-06-14 23:29:44 +0900",
  21. "minecraft:meadow": "2024-06-14 23:53:22 +0900",
  22. "minecraft:plains": "2024-06-15 15:41:13 +0900"
  23. },
  24. "done": false
  25. },
  26. "minecraft:recipes/misc/charcoal": {
  27. "criteria": {
  28. "has_log": "2024-06-14 23:30:25 +0900"
  29. },
  30. "done": true
  31. },
  32. "minecraft:recipes/building_blocks/oak_planks": {
  33. "criteria": {
  34. "has_logs": "2024-06-14 23:30:25 +0900"
  35. },
  36. "done": true
  37. },
  38. "minecraft:recipes/building_blocks/oak_wood": {
  39. "criteria": {
  40. "has_log": "2024-06-14 23:30:25 +0900"
  41. },
  42. "done": true
  43. },
  44. "minecraft:recipes/building_blocks/oak_slab": {
  45. "criteria": {
  46. "has_planks": "2024-06-14 23:30:59 +0900"
  47. },
  48. "done": true
  49. },
  50. "minecraft:recipes/decorations/oak_sign": {
  51. "criteria": {
  52. "has_planks": "2024-06-14 23:30:59 +0900"
  53. },
  54. "done": true
  55. },
  56. "minecraft:recipes/redstone/oak_trapdoor": {
  57. "criteria": {
  58. "has_planks": "2024-06-14 23:30:59 +0900"
  59. },
  60. "done": true
  61. },
  62. "minecraft:recipes/redstone/oak_fence_gate": {
  63. "criteria": {
  64. "has_planks": "2024-06-14 23:30:59 +0900"
  65. },
  66. "done": true
  67. },
  68. "minecraft:recipes/redstone/oak_pressure_plate": {
  69. "criteria": {
  70. "has_planks": "2024-06-14 23:30:59 +0900"
  71. },
  72. "done": true
  73. },
  74. "minecraft:recipes/redstone/oak_door": {
  75. "criteria": {
  76. "has_planks": "2024-06-14 23:30:59 +0900"
  77. },
  78. "done": true
  79. },
  80. "minecraft:recipes/misc/stick": {
  81. "criteria": {
  82. "has_planks": "2024-06-14 23:30:59 +0900"
  83. },
  84. "done": true
  85. },
  86. "minecraft:recipes/building_blocks/oak_stairs": {
  87. "criteria": {
  88. "has_planks": "2024-06-14 23:30:59 +0900"
  89. },
  90. "done": true
  91. },
  92. "minecraft:recipes/decorations/oak_fence": {
  93. "criteria": {
  94. "has_planks": "2024-06-14 23:30:59 +0900"
  95. },
  96. "done": true
  97. },
  98. "minecraft:recipes/decorations/barrel": {
  99. "criteria": {
  100. "has_planks": "2024-06-14 23:30:59 +0900"
  101. },
  102. "done": true
  103. },
  104. "minecraft:recipes/redstone/oak_button": {
  105. "criteria": {
  106. "has_planks": "2024-06-14 23:30:59 +0900"
  107. },
  108. "done": true
  109. },
  110. "minecraft:recipes/decorations/ladder": {
  111. "criteria": {
  112. "has_stick": "2024-06-14 23:31:02 +0900"
  113. },
  114. "done": true
  115. },
  116. "minecraft:recipes/decorations/campfire": {
  117. "criteria": {
  118. "has_stick": "2024-06-14 23:31:02 +0900"
  119. },
  120. "done": true
  121. },
  122. "minecraft:recipes/tools/wooden_hoe": {
  123. "criteria": {
  124. "has_stick": "2024-06-14 23:31:02 +0900"
  125. },
  126. "done": true
  127. },
  128. "minecraft:recipes/tools/wooden_pickaxe": {
  129. "criteria": {
  130. "has_stick": "2024-06-14 23:31:02 +0900"
  131. },
  132. "done": true
  133. },
  134. "minecraft:recipes/tools/wooden_axe": {
  135. "criteria": {
  136. "has_stick": "2024-06-14 23:31:02 +0900"
  137. },
  138. "done": true
  139. },
  140. "minecraft:recipes/tools/wooden_shovel": {
  141. "criteria": {
  142. "has_stick": "2024-06-14 23:31:02 +0900"
  143. },
  144. "done": true
  145. },
  146. "minecraft:recipes/combat/wooden_sword": {
  147. "criteria": {
  148. "has_stick": "2024-06-14 23:31:02 +0900"
  149. },
  150. "done": true
  151. },
  152. "minecraft:recipes/building_blocks/cherry_planks": {
  153. "criteria": {
  154. "has_log": "2024-06-14 23:31:23 +0900"
  155. },
  156. "done": true
  157. },
  158. "minecraft:recipes/building_blocks/cherry_wood": {
  159. "criteria": {
  160. "has_log": "2024-06-14 23:31:23 +0900"
  161. },
  162. "done": true
  163. },
  164. "minecraft:recipes/misc/pink_dye_from_pink_petals": {
  165. "criteria": {
  166. "has_pink_petals": "2024-06-14 23:31:38 +0900"
  167. },
  168. "done": true
  169. },
  170. "minecraft:adventure/root": {
  171. "criteria": {
  172. "killed_something": "2024-06-14 23:32:15 +0900"
  173. },
  174. "done": true
  175. },
  176. "minecraft:recipes/building_blocks/cherry_slab": {
  177. "criteria": {
  178. "has_planks": "2024-06-14 23:32:31 +0900"
  179. },
  180. "done": true
  181. },
  182. "minecraft:recipes/redstone/cherry_fence_gate": {
  183. "criteria": {
  184. "has_planks": "2024-06-14 23:32:31 +0900"
  185. },
  186. "done": true
  187. },
  188. "minecraft:recipes/decorations/cherry_sign": {
  189. "criteria": {
  190. "has_planks": "2024-06-14 23:32:31 +0900"
  191. },
  192. "done": true
  193. },
  194. "minecraft:recipes/redstone/cherry_pressure_plate": {
  195. "criteria": {
  196. "has_planks": "2024-06-14 23:32:31 +0900"
  197. },
  198. "done": true
  199. },
  200. "minecraft:recipes/decorations/cherry_fence": {
  201. "criteria": {
  202. "has_planks": "2024-06-14 23:32:31 +0900"
  203. },
  204. "done": true
  205. },
  206. "minecraft:recipes/building_blocks/cherry_stairs": {
  207. "criteria": {
  208. "has_planks": "2024-06-14 23:32:31 +0900"
  209. },
  210. "done": true
  211. },
  212. "minecraft:recipes/redstone/cherry_trapdoor": {
  213. "criteria": {
  214. "has_planks": "2024-06-14 23:32:31 +0900"
  215. },
  216. "done": true
  217. },
  218. "minecraft:recipes/redstone/cherry_button": {
  219. "criteria": {
  220. "has_planks": "2024-06-14 23:32:31 +0900"
  221. },
  222. "done": true
  223. },
  224. "minecraft:recipes/redstone/cherry_door": {
  225. "criteria": {
  226. "has_planks": "2024-06-14 23:32:31 +0900"
  227. },
  228. "done": true
  229. },
  230. "minecraft:story/root": {
  231. "criteria": {
  232. "crafting_table": "2024-06-14 23:32:34 +0900"
  233. },
  234. "done": true
  235. },
  236. "minecraft:recipes/redstone/lever": {
  237. "criteria": {
  238. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  239. },
  240. "done": true
  241. },
  242. "minecraft:recipes/combat/stone_sword": {
  243. "criteria": {
  244. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  245. },
  246. "done": true
  247. },
  248. "minecraft:recipes/decorations/cobblestone_wall": {
  249. "criteria": {
  250. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  251. },
  252. "done": true
  253. },
  254. "minecraft:recipes/tools/stone_pickaxe": {
  255. "criteria": {
  256. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  257. },
  258. "done": true
  259. },
  260. "minecraft:recipes/tools/stone_axe": {
  261. "criteria": {
  262. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  263. },
  264. "done": true
  265. },
  266. "minecraft:story/mine_stone": {
  267. "criteria": {
  268. "get_stone": "2024-06-14 23:33:29 +0900"
  269. },
  270. "done": true
  271. },
  272. "minecraft:recipes/decorations/furnace": {
  273. "criteria": {
  274. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  275. },
  276. "done": true
  277. },
  278. "minecraft:recipes/building_blocks/cobblestone_slab": {
  279. "criteria": {
  280. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  281. },
  282. "done": true
  283. },
  284. "minecraft:recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting": {
  285. "criteria": {
  286. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  287. },
  288. "done": true
  289. },
  290. "minecraft:recipes/building_blocks/stone": {
  291. "criteria": {
  292. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  293. },
  294. "done": true
  295. },
  296. "minecraft:recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting": {
  297. "criteria": {
  298. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  299. },
  300. "done": true
  301. },
  302. "minecraft:recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting": {
  303. "criteria": {
  304. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  305. },
  306. "done": true
  307. },
  308. "minecraft:recipes/building_blocks/cobblestone_stairs": {
  309. "criteria": {
  310. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  311. },
  312. "done": true
  313. },
  314. "minecraft:recipes/tools/stone_hoe": {
  315. "criteria": {
  316. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  317. },
  318. "done": true
  319. },
  320. "minecraft:recipes/tools/stone_shovel": {
  321. "criteria": {
  322. "has_cobblestone": "2024-06-14 23:33:29 +0900"
  323. },
  324. "done": true
  325. },
  326. "minecraft:recipes/building_blocks/coal_block": {
  327. "criteria": {
  328. "has_coal": "2024-06-14 23:33:50 +0900"
  329. },
  330. "done": true
  331. },
  332. "minecraft:recipes/decorations/chest": {
  333. "criteria": {
  334. "has_lots_of_items": "2024-06-14 23:34:49 +0900"
  335. },
  336. "done": true
  337. },
  338. "minecraft:recipes/decorations/torch": {
  339. "criteria": {
  340. "has_stone_pickaxe": "2024-06-14 23:34:51 +0900"
  341. },
  342. "done": true
  343. },
  344. "minecraft:story/upgrade_tools": {
  345. "criteria": {
  346. "stone_pickaxe": "2024-06-14 23:34:51 +0900"
  347. },
  348. "done": true
  349. },
  350. "minecraft:recipes/misc/yellow_dye_from_sunflower": {
  351. "criteria": {
  352. "has_sunflower": "2024-06-14 23:35:22 +0900"
  353. },
  354. "done": true
  355. },
  356. "minecraft:recipes/transportation/mangrove_boat": {
  357. "criteria": {
  358. "in_water": "2024-06-14 23:35:51 +0900"
  359. },
  360. "done": true
  361. },
  362. "minecraft:recipes/transportation/acacia_boat": {
  363. "criteria": {
  364. "in_water": "2024-06-14 23:35:51 +0900"
  365. },
  366. "done": true
  367. },
  368. "minecraft:recipes/transportation/cherry_boat": {
  369. "criteria": {
  370. "in_water": "2024-06-14 23:35:51 +0900"
  371. },
  372. "done": true
  373. },
  374. "minecraft:recipes/transportation/bamboo_raft": {
  375. "criteria": {
  376. "in_water": "2024-06-14 23:35:51 +0900"
  377. },
  378. "done": true
  379. },
  380. "minecraft:recipes/transportation/spruce_boat": {
  381. "criteria": {
  382. "in_water": "2024-06-14 23:35:51 +0900"
  383. },
  384. "done": true
  385. },
  386. "minecraft:recipes/transportation/birch_boat": {
  387. "criteria": {
  388. "in_water": "2024-06-14 23:35:51 +0900"
  389. },
  390. "done": true
  391. },
  392. "minecraft:recipes/transportation/oak_boat": {
  393. "criteria": {
  394. "in_water": "2024-06-14 23:35:51 +0900"
  395. },
  396. "done": true
  397. },
  398. "minecraft:recipes/transportation/jungle_boat": {
  399. "criteria": {
  400. "in_water": "2024-06-14 23:35:51 +0900"
  401. },
  402. "done": true
  403. },
  404. "minecraft:recipes/transportation/dark_oak_boat": {
  405. "criteria": {
  406. "in_water": "2024-06-14 23:35:51 +0900"
  407. },
  408. "done": true
  409. },
  410. "minecraft:recipes/food/cooked_beef_from_smoking": {
  411. "criteria": {
  412. "has_beef": "2024-06-14 23:38:15 +0900"
  413. },
  414. "done": true
  415. },
  416. "minecraft:recipes/food/cooked_beef": {
  417. "criteria": {
  418. "has_beef": "2024-06-14 23:38:15 +0900"
  419. },
  420. "done": true
  421. },
  422. "minecraft:recipes/food/cooked_beef_from_campfire_cooking": {
  423. "criteria": {
  424. "has_beef": "2024-06-14 23:38:15 +0900"
  425. },
  426. "done": true
  427. },
  428. "minecraft:recipes/decorations/gray_bed": {
  429. "criteria": {
  430. "has_gray_wool": "2024-06-14 23:38:17 +0900"
  431. },
  432. "done": true
  433. },
  434. "minecraft:recipes/food/cooked_mutton_from_smoking": {
  435. "criteria": {
  436. "has_mutton": "2024-06-14 23:38:17 +0900"
  437. },
  438. "done": true
  439. },
  440. "minecraft:recipes/food/cooked_mutton": {
  441. "criteria": {
  442. "has_mutton": "2024-06-14 23:38:17 +0900"
  443. },
  444. "done": true
  445. },
  446. "minecraft:recipes/decorations/painting": {
  447. "criteria": {
  448. "has_wool": "2024-06-14 23:38:17 +0900"
  449. },
  450. "done": true
  451. },
  452. "minecraft:recipes/food/cooked_mutton_from_campfire_cooking": {
  453. "criteria": {
  454. "has_mutton": "2024-06-14 23:38:17 +0900"
  455. },
  456. "done": true
  457. },
  458. "minecraft:recipes/decorations/gray_banner": {
  459. "criteria": {
  460. "has_gray_wool": "2024-06-14 23:38:17 +0900"
  461. },
  462. "done": true
  463. },
  464. "minecraft:recipes/decorations/gray_carpet": {
  465. "criteria": {
  466. "has_gray_wool": "2024-06-14 23:38:17 +0900"
  467. },
  468. "done": true
  469. },
  470. "minecraft:husbandry/balanced_diet": {
  471. "criteria": {
  472. "cooked_porkchop": "2024-06-15 19:45:48 +0900",
  473. "mutton": "2024-06-14 23:39:48 +0900",
  474. "chicken": "2024-06-14 23:42:36 +0900",
  475. "bread": "2024-06-15 01:35:33 +0900",
  476. "cooked_chicken": "2024-06-20 22:01:48 +0900",
  477. "rotten_flesh": "2024-06-14 23:44:10 +0900",
  478. "cooked_mutton": "2024-06-14 23:45:55 +0900",
  479. "cooked_beef": "2024-06-14 23:45:12 +0900",
  480. "chorus_fruit": "2024-06-23 00:59:44 +0900",
  481. "beef": "2024-06-14 23:38:24 +0900",
  482. "baked_potato": "2024-06-15 16:04:15 +0900",
  483. "porkchop": "2024-06-14 23:41:16 +0900"
  484. },
  485. "done": false
  486. },
  487. "minecraft:husbandry/root": {
  488. "criteria": {
  489. "consumed_item": "2024-06-14 23:38:24 +0900"
  490. },
  491. "done": true
  492. },
  493. "minecraft:recipes/food/cooked_porkchop": {
  494. "criteria": {
  495. "has_porkchop": "2024-06-14 23:39:19 +0900"
  496. },
  497. "done": true
  498. },
  499. "minecraft:recipes/food/cooked_porkchop_from_campfire_cooking": {
  500. "criteria": {
  501. "has_porkchop": "2024-06-14 23:39:19 +0900"
  502. },
  503. "done": true
  504. },
  505. "minecraft:recipes/food/cooked_porkchop_from_smoking": {
  506. "criteria": {
  507. "has_porkchop": "2024-06-14 23:39:19 +0900"
  508. },
  509. "done": true
  510. },
  511. "minecraft:adventure/kill_all_mobs": {
  512. "criteria": {
  513. "minecraft:blaze": "2024-06-15 17:08:55 +0900",
  514. "minecraft:skeleton": "2024-06-14 23:59:38 +0900",
  515. "minecraft:piglin": "2024-06-15 16:15:53 +0900",
  516. "minecraft:enderman": "2024-06-15 21:10:33 +0900",
  517. "minecraft:silverfish": "2024-06-15 22:53:24 +0900",
  518. "minecraft:magma_cube": "2024-06-16 01:43:13 +0900",
  519. "minecraft:spider": "2024-06-14 23:39:43 +0900",
  520. "minecraft:wither_skeleton": "2024-06-15 20:59:04 +0900",
  521. "minecraft:zombie": "2024-06-14 23:41:04 +0900",
  522. "minecraft:ghast": "2024-06-22 22:02:27 +0900",
  523. "minecraft:hoglin": "2024-06-15 16:23:05 +0900",
  524. "minecraft:shulker": "2024-06-22 23:11:54 +0900"
  525. },
  526. "done": false
  527. },
  528. "minecraft:adventure/kill_a_mob": {
  529. "criteria": {
  530. "minecraft:spider": "2024-06-14 23:39:43 +0900"
  531. },
  532. "done": true
  533. },
  534. "minecraft:recipes/decorations/white_banner": {
  535. "criteria": {
  536. "has_white_wool": "2024-06-14 23:39:45 +0900"
  537. },
  538. "done": true
  539. },
  540. "minecraft:recipes/decorations/white_bed": {
  541. "criteria": {
  542. "has_white_wool": "2024-06-14 23:39:45 +0900"
  543. },
  544. "done": true
  545. },
  546. "minecraft:recipes/decorations/white_carpet": {
  547. "criteria": {
  548. "has_white_wool": "2024-06-14 23:39:45 +0900"
  549. },
  550. "done": true
  551. },
  552. "minecraft:recipes/food/cake": {
  553. "criteria": {
  554. "has_egg": "2024-06-14 23:40:01 +0900"
  555. },
  556. "done": true
  557. },
  558. "minecraft:recipes/food/cooked_chicken_from_campfire_cooking": {
  559. "criteria": {
  560. "has_chicken": "2024-06-14 23:40:19 +0900"
  561. },
  562. "done": true
  563. },
  564. "minecraft:recipes/food/cooked_chicken": {
  565. "criteria": {
  566. "has_chicken": "2024-06-14 23:40:19 +0900"
  567. },
  568. "done": true
  569. },
  570. "minecraft:recipes/food/cooked_chicken_from_smoking": {
  571. "criteria": {
  572. "has_chicken": "2024-06-14 23:40:19 +0900"
  573. },
  574. "done": true
  575. },
  576. "minecraft:recipes/combat/arrow": {
  577. "criteria": {
  578. "has_feather": "2024-06-14 23:40:19 +0900"
  579. },
  580. "done": true
  581. },
  582. "minecraft:recipes/combat/leather_helmet": {
  583. "criteria": {
  584. "has_leather": "2024-06-14 23:43:16 +0900"
  585. },
  586. "done": true
  587. },
  588. "minecraft:recipes/combat/leather_leggings": {
  589. "criteria": {
  590. "has_leather": "2024-06-14 23:43:16 +0900"
  591. },
  592. "done": true
  593. },
  594. "minecraft:recipes/decorations/item_frame": {
  595. "criteria": {
  596. "has_leather": "2024-06-14 23:43:16 +0900"
  597. },
  598. "done": true
  599. },
  600. "minecraft:recipes/combat/leather_chestplate": {
  601. "criteria": {
  602. "has_leather": "2024-06-14 23:43:16 +0900"
  603. },
  604. "done": true
  605. },
  606. "minecraft:recipes/combat/leather_boots": {
  607. "criteria": {
  608. "has_leather": "2024-06-14 23:43:16 +0900"
  609. },
  610. "done": true
  611. },
  612. "minecraft:recipes/misc/leather_horse_armor": {
  613. "criteria": {
  614. "has_leather": "2024-06-14 23:43:16 +0900"
  615. },
  616. "done": true
  617. },
  618. "minecraft:recipes/decorations/smoker": {
  619. "criteria": {
  620. "has_furnace": "2024-06-14 23:43:47 +0900"
  621. },
  622. "done": true
  623. },
  624. "minecraft:recipes/misc/bone_meal": {
  625. "criteria": {
  626. "has_bone": "2024-06-14 23:44:05 +0900"
  627. },
  628. "done": true
  629. },
  630. "minecraft:recipes/misc/flower_banner_pattern": {
  631. "criteria": {
  632. "has_oxeye_daisy": "2024-06-14 23:46:37 +0900"
  633. },
  634. "done": true
  635. },
  636. "minecraft:recipes/misc/light_gray_dye_from_oxeye_daisy": {
  637. "criteria": {
  638. "has_oxeye_daisy": "2024-06-14 23:46:37 +0900"
  639. },
  640. "done": true
  641. },
  642. "minecraft:recipes/misc/iron_ingot_from_smelting_raw_iron": {
  643. "criteria": {
  644. "has_raw_iron": "2024-06-14 23:58:06 +0900"
  645. },
  646. "done": true
  647. },
  648. "minecraft:recipes/building_blocks/raw_iron_block": {
  649. "criteria": {
  650. "has_raw_iron": "2024-06-14 23:58:06 +0900"
  651. },
  652. "done": true
  653. },
  654. "minecraft:recipes/misc/iron_ingot_from_blasting_raw_iron": {
  655. "criteria": {
  656. "has_raw_iron": "2024-06-14 23:58:06 +0900"
  657. },
  658. "done": true
  659. },
  660. "minecraft:recipes/redstone/dispenser": {
  661. "criteria": {
  662. "has_bow": "2024-06-14 23:59:39 +0900"
  663. },
  664. "done": true
  665. },
  666. "minecraft:recipes/combat/bow": {
  667. "criteria": {
  668. "has_string": "2024-06-15 00:00:19 +0900"
  669. },
  670. "done": true
  671. },
  672. "minecraft:recipes/tools/fishing_rod": {
  673. "criteria": {
  674. "has_string": "2024-06-15 00:00:19 +0900"
  675. },
  676. "done": true
  677. },
  678. "minecraft:recipes/building_blocks/white_wool_from_string": {
  679. "criteria": {
  680. "has_string": "2024-06-15 00:00:19 +0900"
  681. },
  682. "done": true
  683. },
  684. "minecraft:recipes/redstone/tripwire_hook": {
  685. "criteria": {
  686. "has_string": "2024-06-15 00:00:19 +0900"
  687. },
  688. "done": true
  689. },
  690. "minecraft:recipes/combat/crossbow": {
  691. "criteria": {
  692. "has_string": "2024-06-15 00:00:19 +0900"
  693. },
  694. "done": true
  695. },
  696. "minecraft:recipes/decorations/candle": {
  697. "criteria": {
  698. "has_string": "2024-06-15 00:00:19 +0900"
  699. },
  700. "done": true
  701. },
  702. "minecraft:recipes/decorations/loom": {
  703. "criteria": {
  704. "has_string": "2024-06-15 00:00:19 +0900"
  705. },
  706. "done": true
  707. },
  708. "minecraft:recipes/brewing/fermented_spider_eye": {
  709. "criteria": {
  710. "has_spider_eye": "2024-06-15 00:00:21 +0900"
  711. },
  712. "done": true
  713. },
  714. "minecraft:recipes/misc/orange_dye_from_red_yellow": {
  715. "criteria": {
  716. "has_yellow_dye": "2024-06-15 00:01:29 +0900"
  717. },
  718. "done": true
  719. },
  720. "minecraft:recipes/decorations/yellow_candle": {
  721. "criteria": {
  722. "has_yellow_dye": "2024-06-15 00:01:29 +0900"
  723. },
  724. "done": true
  725. },
  726. "minecraft:recipes/building_blocks/dye_yellow_carpet": {
  727. "criteria": {
  728. "has_needed_dye": "2024-06-15 00:01:29 +0900"
  729. },
  730. "done": true
  731. },
  732. "minecraft:recipes/decorations/yellow_stained_glass_pane_from_glass_pane": {
  733. "criteria": {
  734. "has_yellow_dye": "2024-06-15 00:01:29 +0900"
  735. },
  736. "done": true
  737. },
  738. "minecraft:recipes/building_blocks/dye_yellow_wool": {
  739. "criteria": {
  740. "has_needed_dye": "2024-06-15 00:01:29 +0900"
  741. },
  742. "done": true
  743. },
  744. "minecraft:recipes/building_blocks/dye_yellow_bed": {
  745. "criteria": {
  746. "has_needed_dye": "2024-06-15 00:01:29 +0900"
  747. },
  748. "done": true
  749. },
  750. "minecraft:recipes/decorations/yellow_banner": {
  751. "criteria": {
  752. "has_yellow_wool": "2024-06-15 00:01:44 +0900"
  753. },
  754. "done": true
  755. },
  756. "minecraft:recipes/decorations/yellow_bed": {
  757. "criteria": {
  758. "has_yellow_wool": "2024-06-15 00:01:44 +0900"
  759. },
  760. "done": true
  761. },
  762. "minecraft:recipes/decorations/yellow_carpet": {
  763. "criteria": {
  764. "has_yellow_wool": "2024-06-15 00:01:44 +0900"
  765. },
  766. "done": true
  767. },
  768. "minecraft:adventure/sleep_in_bed": {
  769. "criteria": {
  770. "slept_in_bed": "2024-06-15 00:01:55 +0900"
  771. },
  772. "done": true
  773. },
  774. "minecraft:recipes/combat/iron_sword": {
  775. "criteria": {
  776. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  777. },
  778. "done": true
  779. },
  780. "minecraft:recipes/tools/iron_pickaxe": {
  781. "criteria": {
  782. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  783. },
  784. "done": true
  785. },
  786. "minecraft:recipes/combat/iron_leggings": {
  787. "criteria": {
  788. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  789. },
  790. "done": true
  791. },
  792. "minecraft:recipes/combat/shield": {
  793. "criteria": {
  794. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  795. },
  796. "done": true
  797. },
  798. "minecraft:recipes/redstone/hopper": {
  799. "criteria": {
  800. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  801. },
  802. "done": true
  803. },
  804. "minecraft:recipes/decorations/iron_bars": {
  805. "criteria": {
  806. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  807. },
  808. "done": true
  809. },
  810. "minecraft:recipes/combat/iron_boots": {
  811. "criteria": {
  812. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  813. },
  814. "done": true
  815. },
  816. "minecraft:recipes/combat/iron_chestplate": {
  817. "criteria": {
  818. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  819. },
  820. "done": true
  821. },
  822. "minecraft:recipes/decorations/lantern": {
  823. "criteria": {
  824. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  825. },
  826. "done": true
  827. },
  828. "minecraft:recipes/misc/iron_nugget": {
  829. "criteria": {
  830. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  831. },
  832. "done": true
  833. },
  834. "minecraft:recipes/misc/bucket": {
  835. "criteria": {
  836. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  837. },
  838. "done": true
  839. },
  840. "minecraft:recipes/combat/iron_helmet": {
  841. "criteria": {
  842. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  843. },
  844. "done": true
  845. },
  846. "minecraft:recipes/transportation/minecart": {
  847. "criteria": {
  848. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  849. },
  850. "done": true
  851. },
  852. "minecraft:recipes/tools/iron_hoe": {
  853. "criteria": {
  854. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  855. },
  856. "done": true
  857. },
  858. "minecraft:recipes/tools/iron_shovel": {
  859. "criteria": {
  860. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  861. },
  862. "done": true
  863. },
  864. "minecraft:story/smelt_iron": {
  865. "criteria": {
  866. "iron": "2024-06-15 00:06:26 +0900"
  867. },
  868. "done": true
  869. },
  870. "minecraft:recipes/tools/shears": {
  871. "criteria": {
  872. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  873. },
  874. "done": true
  875. },
  876. "minecraft:recipes/redstone/iron_trapdoor": {
  877. "criteria": {
  878. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  879. },
  880. "done": true
  881. },
  882. "minecraft:recipes/decorations/chain": {
  883. "criteria": {
  884. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  885. },
  886. "done": true
  887. },
  888. "minecraft:recipes/building_blocks/iron_block": {
  889. "criteria": {
  890. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  891. },
  892. "done": true
  893. },
  894. "minecraft:recipes/tools/iron_axe": {
  895. "criteria": {
  896. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  897. },
  898. "done": true
  899. },
  900. "minecraft:recipes/decorations/smithing_table": {
  901. "criteria": {
  902. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  903. },
  904. "done": true
  905. },
  906. "minecraft:recipes/redstone/iron_door": {
  907. "criteria": {
  908. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  909. },
  910. "done": true
  911. },
  912. "minecraft:recipes/redstone/heavy_weighted_pressure_plate": {
  913. "criteria": {
  914. "has_iron_ingot": "2024-06-15 00:06:26 +0900"
  915. },
  916. "done": true
  917. },
  918. "minecraft:recipes/misc/iron_nugget_from_smelting": {
  919. "criteria": {
  920. "has_iron_pickaxe": "2024-06-15 00:07:09 +0900"
  921. },
  922. "done": true
  923. },
  924. "minecraft:story/iron_tools": {
  925. "criteria": {
  926. "iron_pickaxe": "2024-06-15 00:07:09 +0900"
  927. },
  928. "done": true
  929. },
  930. "minecraft:recipes/misc/iron_nugget_from_blasting": {
  931. "criteria": {
  932. "has_iron_pickaxe": "2024-06-15 00:07:09 +0900"
  933. },
  934. "done": true
  935. },
  936. "minecraft:recipes/building_blocks/lime_concrete_powder": {
  937. "criteria": {
  938. "has_sand": "2024-06-15 00:08:14 +0900"
  939. },
  940. "done": true
  941. },
  942. "minecraft:recipes/building_blocks/light_gray_concrete_powder": {
  943. "criteria": {
  944. "has_sand": "2024-06-15 00:08:14 +0900"
  945. },
  946. "done": true
  947. },
  948. "minecraft:recipes/building_blocks/pink_concrete_powder": {
  949. "criteria": {
  950. "has_sand": "2024-06-15 00:08:14 +0900"
  951. },
  952. "done": true
  953. },
  954. "minecraft:recipes/building_blocks/orange_concrete_powder": {
  955. "criteria": {
  956. "has_sand": "2024-06-15 00:08:14 +0900"
  957. },
  958. "done": true
  959. },
  960. "minecraft:recipes/building_blocks/red_concrete_powder": {
  961. "criteria": {
  962. "has_sand": "2024-06-15 00:08:14 +0900"
  963. },
  964. "done": true
  965. },
  966. "minecraft:recipes/building_blocks/magenta_concrete_powder": {
  967. "criteria": {
  968. "has_sand": "2024-06-15 00:08:14 +0900"
  969. },
  970. "done": true
  971. },
  972. "minecraft:recipes/building_blocks/brown_concrete_powder": {
  973. "criteria": {
  974. "has_sand": "2024-06-15 00:08:14 +0900"
  975. },
  976. "done": true
  977. },
  978. "minecraft:recipes/building_blocks/light_blue_concrete_powder": {
  979. "criteria": {
  980. "has_sand": "2024-06-15 00:08:14 +0900"
  981. },
  982. "done": true
  983. },
  984. "minecraft:recipes/building_blocks/glass": {
  985. "criteria": {
  986. "has_smelts_to_glass": "2024-06-15 00:08:14 +0900"
  987. },
  988. "done": true
  989. },
  990. "minecraft:recipes/building_blocks/green_concrete_powder": {
  991. "criteria": {
  992. "has_sand": "2024-06-15 00:08:14 +0900"
  993. },
  994. "done": true
  995. },
  996. "minecraft:recipes/building_blocks/blue_concrete_powder": {
  997. "criteria": {
  998. "has_sand": "2024-06-15 00:08:14 +0900"
  999. },
  1000. "done": true
  1001. },
  1002. "minecraft:recipes/building_blocks/yellow_concrete_powder": {
  1003. "criteria": {
  1004. "has_sand": "2024-06-15 00:08:14 +0900"
  1005. },
  1006. "done": true
  1007. },
  1008. "minecraft:recipes/building_blocks/sandstone": {
  1009. "criteria": {
  1010. "has_sand": "2024-06-15 00:08:14 +0900"
  1011. },
  1012. "done": true
  1013. },
  1014. "minecraft:recipes/building_blocks/white_concrete_powder": {
  1015. "criteria": {
  1016. "has_sand": "2024-06-15 00:08:14 +0900"
  1017. },
  1018. "done": true
  1019. },
  1020. "minecraft:recipes/building_blocks/gray_concrete_powder": {
  1021. "criteria": {
  1022. "has_sand": "2024-06-15 00:08:14 +0900"
  1023. },
  1024. "done": true
  1025. },
  1026. "minecraft:recipes/building_blocks/black_concrete_powder": {
  1027. "criteria": {
  1028. "has_sand": "2024-06-15 00:08:14 +0900"
  1029. },
  1030. "done": true
  1031. },
  1032. "minecraft:recipes/building_blocks/purple_concrete_powder": {
  1033. "criteria": {
  1034. "has_sand": "2024-06-15 00:08:14 +0900"
  1035. },
  1036. "done": true
  1037. },
  1038. "minecraft:recipes/building_blocks/cyan_concrete_powder": {
  1039. "criteria": {
  1040. "has_sand": "2024-06-15 00:08:14 +0900"
  1041. },
  1042. "done": true
  1043. },
  1044. "minecraft:recipes/building_blocks/stone_bricks": {
  1045. "criteria": {
  1046. "has_stone": "2024-06-15 00:10:34 +0900"
  1047. },
  1048. "done": true
  1049. },
  1050. "minecraft:recipes/building_blocks/stone_brick_slab_from_stone_stonecutting": {
  1051. "criteria": {
  1052. "has_stone": "2024-06-15 00:10:34 +0900"
  1053. },
  1054. "done": true
  1055. },
  1056. "minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting": {
  1057. "criteria": {
  1058. "has_stone": "2024-06-15 00:10:34 +0900"
  1059. },
  1060. "done": true
  1061. },
  1062. "minecraft:recipes/building_blocks/stone_slab_from_stone_stonecutting": {
  1063. "criteria": {
  1064. "has_stone": "2024-06-15 00:10:34 +0900"
  1065. },
  1066. "done": true
  1067. },
  1068. "minecraft:recipes/building_blocks/stone_bricks_from_stone_stonecutting": {
  1069. "criteria": {
  1070. "has_stone": "2024-06-15 00:10:34 +0900"
  1071. },
  1072. "done": true
  1073. },
  1074. "minecraft:recipes/building_blocks/stone_slab": {
  1075. "criteria": {
  1076. "has_stone": "2024-06-15 00:10:34 +0900"
  1077. },
  1078. "done": true
  1079. },
  1080. "minecraft:recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting": {
  1081. "criteria": {
  1082. "has_stone": "2024-06-15 00:10:34 +0900"
  1083. },
  1084. "done": true
  1085. },
  1086. "minecraft:recipes/building_blocks/stone_stairs_from_stone_stonecutting": {
  1087. "criteria": {
  1088. "has_stone": "2024-06-15 00:10:34 +0900"
  1089. },
  1090. "done": true
  1091. },
  1092. "minecraft:recipes/redstone/stone_button": {
  1093. "criteria": {
  1094. "has_stone": "2024-06-15 00:10:34 +0900"
  1095. },
  1096. "done": true
  1097. },
  1098. "minecraft:recipes/decorations/stonecutter": {
  1099. "criteria": {
  1100. "has_stone": "2024-06-15 00:10:34 +0900"
  1101. },
  1102. "done": true
  1103. },
  1104. "minecraft:recipes/redstone/stone_pressure_plate": {
  1105. "criteria": {
  1106. "has_stone": "2024-06-15 00:10:34 +0900"
  1107. },
  1108. "done": true
  1109. },
  1110. "minecraft:recipes/building_blocks/smooth_stone": {
  1111. "criteria": {
  1112. "has_stone": "2024-06-15 00:10:34 +0900"
  1113. },
  1114. "done": true
  1115. },
  1116. "minecraft:recipes/decorations/stone_brick_walls_from_stone_stonecutting": {
  1117. "criteria": {
  1118. "has_stone": "2024-06-15 00:10:34 +0900"
  1119. },
  1120. "done": true
  1121. },
  1122. "minecraft:recipes/building_blocks/stone_stairs": {
  1123. "criteria": {
  1124. "has_stone": "2024-06-15 00:10:34 +0900"
  1125. },
  1126. "done": true
  1127. },
  1128. "minecraft:recipes/decorations/grindstone": {
  1129. "criteria": {
  1130. "has_stone_slab": "2024-06-15 00:14:29 +0900"
  1131. },
  1132. "done": true
  1133. },
  1134. "minecraft:recipes/decorations/glow_item_frame": {
  1135. "criteria": {
  1136. "has_item_frame": "2024-06-15 00:25:45 +0900"
  1137. },
  1138. "done": true
  1139. },
  1140. "minecraft:recipes/decorations/composter": {
  1141. "criteria": {
  1142. "has_wood_slab": "2024-06-15 00:29:04 +0900"
  1143. },
  1144. "done": true
  1145. },
  1146. "minecraft:recipes/building_blocks/red_stained_glass": {
  1147. "criteria": {
  1148. "has_glass": "2024-06-15 00:33:27 +0900"
  1149. },
  1150. "done": true
  1151. },
  1152. "minecraft:recipes/building_blocks/light_blue_stained_glass": {
  1153. "criteria": {
  1154. "has_glass": "2024-06-15 00:33:27 +0900"
  1155. },
  1156. "done": true
  1157. },
  1158. "minecraft:recipes/brewing/glass_bottle": {
  1159. "criteria": {
  1160. "has_glass": "2024-06-15 00:33:27 +0900"
  1161. },
  1162. "done": true
  1163. },
  1164. "minecraft:recipes/building_blocks/green_stained_glass": {
  1165. "criteria": {
  1166. "has_glass": "2024-06-15 00:33:27 +0900"
  1167. },
  1168. "done": true
  1169. },
  1170. "minecraft:recipes/building_blocks/brown_stained_glass": {
  1171. "criteria": {
  1172. "has_glass": "2024-06-15 00:33:27 +0900"
  1173. },
  1174. "done": true
  1175. },
  1176. "minecraft:recipes/building_blocks/light_gray_stained_glass": {
  1177. "criteria": {
  1178. "has_glass": "2024-06-15 00:33:27 +0900"
  1179. },
  1180. "done": true
  1181. },
  1182. "minecraft:recipes/building_blocks/blue_stained_glass": {
  1183. "criteria": {
  1184. "has_glass": "2024-06-15 00:33:27 +0900"
  1185. },
  1186. "done": true
  1187. },
  1188. "minecraft:recipes/building_blocks/orange_stained_glass": {
  1189. "criteria": {
  1190. "has_glass": "2024-06-15 00:33:27 +0900"
  1191. },
  1192. "done": true
  1193. },
  1194. "minecraft:recipes/building_blocks/cyan_stained_glass": {
  1195. "criteria": {
  1196. "has_glass": "2024-06-15 00:33:27 +0900"
  1197. },
  1198. "done": true
  1199. },
  1200. "minecraft:recipes/building_blocks/pink_stained_glass": {
  1201. "criteria": {
  1202. "has_glass": "2024-06-15 00:33:27 +0900"
  1203. },
  1204. "done": true
  1205. },
  1206. "minecraft:recipes/building_blocks/black_stained_glass": {
  1207. "criteria": {
  1208. "has_glass": "2024-06-15 00:33:27 +0900"
  1209. },
  1210. "done": true
  1211. },
  1212. "minecraft:recipes/building_blocks/gray_stained_glass": {
  1213. "criteria": {
  1214. "has_glass": "2024-06-15 00:33:27 +0900"
  1215. },
  1216. "done": true
  1217. },
  1218. "minecraft:recipes/building_blocks/purple_stained_glass": {
  1219. "criteria": {
  1220. "has_glass": "2024-06-15 00:33:27 +0900"
  1221. },
  1222. "done": true
  1223. },
  1224. "minecraft:recipes/building_blocks/yellow_stained_glass": {
  1225. "criteria": {
  1226. "has_glass": "2024-06-15 00:33:27 +0900"
  1227. },
  1228. "done": true
  1229. },
  1230. "minecraft:recipes/building_blocks/lime_stained_glass": {
  1231. "criteria": {
  1232. "has_glass": "2024-06-15 00:33:27 +0900"
  1233. },
  1234. "done": true
  1235. },
  1236. "minecraft:recipes/decorations/glass_pane": {
  1237. "criteria": {
  1238. "has_glass": "2024-06-15 00:33:27 +0900"
  1239. },
  1240. "done": true
  1241. },
  1242. "minecraft:recipes/building_blocks/magenta_stained_glass": {
  1243. "criteria": {
  1244. "has_glass": "2024-06-15 00:33:27 +0900"
  1245. },
  1246. "done": true
  1247. },
  1248. "minecraft:recipes/building_blocks/white_stained_glass": {
  1249. "criteria": {
  1250. "has_glass": "2024-06-15 00:33:27 +0900"
  1251. },
  1252. "done": true
  1253. },
  1254. "minecraft:recipes/decorations/lime_stained_glass_pane_from_glass_pane": {
  1255. "criteria": {
  1256. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1257. },
  1258. "done": true
  1259. },
  1260. "minecraft:recipes/decorations/purple_stained_glass_pane_from_glass_pane": {
  1261. "criteria": {
  1262. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1263. },
  1264. "done": true
  1265. },
  1266. "minecraft:recipes/decorations/blue_stained_glass_pane_from_glass_pane": {
  1267. "criteria": {
  1268. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1269. },
  1270. "done": true
  1271. },
  1272. "minecraft:recipes/decorations/black_stained_glass_pane_from_glass_pane": {
  1273. "criteria": {
  1274. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1275. },
  1276. "done": true
  1277. },
  1278. "minecraft:recipes/decorations/light_gray_stained_glass_pane_from_glass_pane": {
  1279. "criteria": {
  1280. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1281. },
  1282. "done": true
  1283. },
  1284. "minecraft:recipes/decorations/brown_stained_glass_pane_from_glass_pane": {
  1285. "criteria": {
  1286. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1287. },
  1288. "done": true
  1289. },
  1290. "minecraft:recipes/decorations/red_stained_glass_pane_from_glass_pane": {
  1291. "criteria": {
  1292. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1293. },
  1294. "done": true
  1295. },
  1296. "minecraft:recipes/decorations/magenta_stained_glass_pane_from_glass_pane": {
  1297. "criteria": {
  1298. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1299. },
  1300. "done": true
  1301. },
  1302. "minecraft:recipes/decorations/cyan_stained_glass_pane_from_glass_pane": {
  1303. "criteria": {
  1304. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1305. },
  1306. "done": true
  1307. },
  1308. "minecraft:recipes/decorations/orange_stained_glass_pane_from_glass_pane": {
  1309. "criteria": {
  1310. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1311. },
  1312. "done": true
  1313. },
  1314. "minecraft:recipes/decorations/light_blue_stained_glass_pane_from_glass_pane": {
  1315. "criteria": {
  1316. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1317. },
  1318. "done": true
  1319. },
  1320. "minecraft:recipes/decorations/green_stained_glass_pane_from_glass_pane": {
  1321. "criteria": {
  1322. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1323. },
  1324. "done": true
  1325. },
  1326. "minecraft:recipes/decorations/pink_stained_glass_pane_from_glass_pane": {
  1327. "criteria": {
  1328. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1329. },
  1330. "done": true
  1331. },
  1332. "minecraft:recipes/decorations/white_stained_glass_pane_from_glass_pane": {
  1333. "criteria": {
  1334. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1335. },
  1336. "done": true
  1337. },
  1338. "minecraft:recipes/decorations/gray_stained_glass_pane_from_glass_pane": {
  1339. "criteria": {
  1340. "has_glass_pane": "2024-06-15 00:33:33 +0900"
  1341. },
  1342. "done": true
  1343. },
  1344. "minecraft:recipes/misc/yellow_dye_from_dandelion": {
  1345. "criteria": {
  1346. "has_dandelion": "2024-06-15 00:40:01 +0900"
  1347. },
  1348. "done": true
  1349. },
  1350. "minecraft:recipes/misc/blue_dye": {
  1351. "criteria": {
  1352. "has_lapis_lazuli": "2024-06-15 00:42:29 +0900"
  1353. },
  1354. "done": true
  1355. },
  1356. "minecraft:recipes/building_blocks/lapis_block": {
  1357. "criteria": {
  1358. "has_lapis_lazuli": "2024-06-15 00:42:29 +0900"
  1359. },
  1360. "done": true
  1361. },
  1362. "minecraft:recipes/building_blocks/dye_blue_wool": {
  1363. "criteria": {
  1364. "has_needed_dye": "2024-06-15 00:42:33 +0900"
  1365. },
  1366. "done": true
  1367. },
  1368. "minecraft:recipes/misc/light_blue_dye_from_blue_white_dye": {
  1369. "criteria": {
  1370. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1371. },
  1372. "done": true
  1373. },
  1374. "minecraft:recipes/misc/cyan_dye": {
  1375. "criteria": {
  1376. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1377. },
  1378. "done": true
  1379. },
  1380. "minecraft:recipes/building_blocks/dye_blue_carpet": {
  1381. "criteria": {
  1382. "has_needed_dye": "2024-06-15 00:42:33 +0900"
  1383. },
  1384. "done": true
  1385. },
  1386. "minecraft:recipes/misc/purple_dye": {
  1387. "criteria": {
  1388. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1389. },
  1390. "done": true
  1391. },
  1392. "minecraft:recipes/decorations/blue_candle": {
  1393. "criteria": {
  1394. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1395. },
  1396. "done": true
  1397. },
  1398. "minecraft:recipes/misc/magenta_dye_from_blue_red_pink": {
  1399. "criteria": {
  1400. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1401. },
  1402. "done": true
  1403. },
  1404. "minecraft:recipes/building_blocks/dye_blue_bed": {
  1405. "criteria": {
  1406. "has_needed_dye": "2024-06-15 00:42:33 +0900"
  1407. },
  1408. "done": true
  1409. },
  1410. "minecraft:recipes/misc/magenta_dye_from_blue_red_white_dye": {
  1411. "criteria": {
  1412. "has_blue_dye": "2024-06-15 00:42:33 +0900"
  1413. },
  1414. "done": true
  1415. },
  1416. "minecraft:recipes/decorations/blue_bed": {
  1417. "criteria": {
  1418. "has_blue_wool": "2024-06-15 00:42:42 +0900"
  1419. },
  1420. "done": true
  1421. },
  1422. "minecraft:recipes/decorations/blue_carpet": {
  1423. "criteria": {
  1424. "has_blue_wool": "2024-06-15 00:42:42 +0900"
  1425. },
  1426. "done": true
  1427. },
  1428. "minecraft:recipes/decorations/blue_banner": {
  1429. "criteria": {
  1430. "has_blue_wool": "2024-06-15 00:42:42 +0900"
  1431. },
  1432. "done": true
  1433. },
  1434. "minecraft:recipes/decorations/blast_furnace": {
  1435. "criteria": {
  1436. "has_smooth_stone": "2024-06-15 00:46:57 +0900"
  1437. },
  1438. "done": true
  1439. },
  1440. "minecraft:recipes/building_blocks/smooth_stone_slab": {
  1441. "criteria": {
  1442. "has_smooth_stone": "2024-06-15 00:46:57 +0900"
  1443. },
  1444. "done": true
  1445. },
  1446. "minecraft:recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting": {
  1447. "criteria": {
  1448. "has_smooth_stone": "2024-06-15 00:46:57 +0900"
  1449. },
  1450. "done": true
  1451. },
  1452. "minecraft:recipes/decorations/armor_stand": {
  1453. "criteria": {
  1454. "has_stone_slab": "2024-06-15 00:47:01 +0900"
  1455. },
  1456. "done": true
  1457. },
  1458. "minecraft:recipes/misc/white_dye": {
  1459. "criteria": {
  1460. "has_bone_meal": "2024-06-15 00:48:15 +0900"
  1461. },
  1462. "done": true
  1463. },
  1464. "minecraft:recipes/building_blocks/bone_block": {
  1465. "criteria": {
  1466. "has_bone_meal": "2024-06-15 00:48:15 +0900"
  1467. },
  1468. "done": true
  1469. },
  1470. "minecraft:recipes/misc/lime_dye": {
  1471. "criteria": {
  1472. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1473. },
  1474. "done": true
  1475. },
  1476. "minecraft:recipes/misc/light_gray_dye_from_gray_white_dye": {
  1477. "criteria": {
  1478. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1479. },
  1480. "done": true
  1481. },
  1482. "minecraft:recipes/building_blocks/dye_white_carpet": {
  1483. "criteria": {
  1484. "has_needed_dye": "2024-06-15 00:48:40 +0900"
  1485. },
  1486. "done": true
  1487. },
  1488. "minecraft:recipes/building_blocks/dye_white_wool": {
  1489. "criteria": {
  1490. "has_needed_dye": "2024-06-15 00:48:40 +0900"
  1491. },
  1492. "done": true
  1493. },
  1494. "minecraft:recipes/decorations/white_candle": {
  1495. "criteria": {
  1496. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1497. },
  1498. "done": true
  1499. },
  1500. "minecraft:recipes/misc/pink_dye_from_red_white_dye": {
  1501. "criteria": {
  1502. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1503. },
  1504. "done": true
  1505. },
  1506. "minecraft:recipes/misc/gray_dye": {
  1507. "criteria": {
  1508. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1509. },
  1510. "done": true
  1511. },
  1512. "minecraft:recipes/misc/light_gray_dye_from_black_white_dye": {
  1513. "criteria": {
  1514. "has_white_dye": "2024-06-15 00:48:40 +0900"
  1515. },
  1516. "done": true
  1517. },
  1518. "minecraft:recipes/building_blocks/dye_white_bed": {
  1519. "criteria": {
  1520. "has_needed_dye": "2024-06-15 00:48:40 +0900"
  1521. },
  1522. "done": true
  1523. },
  1524. "minecraft:recipes/building_blocks/dye_light_blue_wool": {
  1525. "criteria": {
  1526. "has_needed_dye": "2024-06-15 00:48:43 +0900"
  1527. },
  1528. "done": true
  1529. },
  1530. "minecraft:recipes/building_blocks/dye_light_blue_bed": {
  1531. "criteria": {
  1532. "has_needed_dye": "2024-06-15 00:48:43 +0900"
  1533. },
  1534. "done": true
  1535. },
  1536. "minecraft:recipes/building_blocks/dye_light_blue_carpet": {
  1537. "criteria": {
  1538. "has_needed_dye": "2024-06-15 00:48:43 +0900"
  1539. },
  1540. "done": true
  1541. },
  1542. "minecraft:recipes/decorations/light_blue_candle": {
  1543. "criteria": {
  1544. "has_light_blue_dye": "2024-06-15 00:48:43 +0900"
  1545. },
  1546. "done": true
  1547. },
  1548. "minecraft:recipes/decorations/light_blue_bed": {
  1549. "criteria": {
  1550. "has_light_blue_wool": "2024-06-15 00:48:49 +0900"
  1551. },
  1552. "done": true
  1553. },
  1554. "minecraft:recipes/decorations/light_blue_carpet": {
  1555. "criteria": {
  1556. "has_light_blue_wool": "2024-06-15 00:48:49 +0900"
  1557. },
  1558. "done": true
  1559. },
  1560. "minecraft:recipes/decorations/light_blue_banner": {
  1561. "criteria": {
  1562. "has_light_blue_wool": "2024-06-15 00:48:49 +0900"
  1563. },
  1564. "done": true
  1565. },
  1566. "minecraft:recipes/misc/light_gray_dye_from_azure_bluet": {
  1567. "criteria": {
  1568. "has_azure_bluet": "2024-06-15 01:10:21 +0900"
  1569. },
  1570. "done": true
  1571. },
  1572. "minecraft:husbandry/plant_seed": {
  1573. "criteria": {
  1574. "wheat": "2024-06-15 01:12:02 +0900"
  1575. },
  1576. "done": true
  1577. },
  1578. "minecraft:recipes/decorations/pink_candle": {
  1579. "criteria": {
  1580. "has_pink_dye": "2024-06-15 01:15:35 +0900"
  1581. },
  1582. "done": true
  1583. },
  1584. "minecraft:recipes/building_blocks/dye_pink_wool": {
  1585. "criteria": {
  1586. "has_needed_dye": "2024-06-15 01:15:35 +0900"
  1587. },
  1588. "done": true
  1589. },
  1590. "minecraft:recipes/building_blocks/dye_pink_bed": {
  1591. "criteria": {
  1592. "has_needed_dye": "2024-06-15 01:15:35 +0900"
  1593. },
  1594. "done": true
  1595. },
  1596. "minecraft:recipes/misc/magenta_dye_from_purple_and_pink": {
  1597. "criteria": {
  1598. "has_pink_dye": "2024-06-15 01:15:35 +0900"
  1599. },
  1600. "done": true
  1601. },
  1602. "minecraft:recipes/building_blocks/dye_pink_carpet": {
  1603. "criteria": {
  1604. "has_needed_dye": "2024-06-15 01:15:35 +0900"
  1605. },
  1606. "done": true
  1607. },
  1608. "minecraft:recipes/food/dried_kelp_from_smoking": {
  1609. "criteria": {
  1610. "has_kelp": "2024-06-15 01:24:17 +0900"
  1611. },
  1612. "done": true
  1613. },
  1614. "minecraft:recipes/food/dried_kelp_from_smelting": {
  1615. "criteria": {
  1616. "has_kelp": "2024-06-15 01:24:17 +0900"
  1617. },
  1618. "done": true
  1619. },
  1620. "minecraft:recipes/food/dried_kelp_from_campfire_cooking": {
  1621. "criteria": {
  1622. "has_kelp": "2024-06-15 01:24:17 +0900"
  1623. },
  1624. "done": true
  1625. },
  1626. "minecraft:recipes/food/bread": {
  1627. "criteria": {
  1628. "has_wheat": "2024-06-15 01:30:38 +0900"
  1629. },
  1630. "done": true
  1631. },
  1632. "minecraft:recipes/building_blocks/hay_block": {
  1633. "criteria": {
  1634. "has_wheat": "2024-06-15 01:30:38 +0900"
  1635. },
  1636. "done": true
  1637. },
  1638. "minecraft:adventure/honey_block_slide": {
  1639. "criteria": {
  1640. "honey_block_slide": "2024-06-15 01:33:19 +0900"
  1641. },
  1642. "done": true
  1643. },
  1644. "minecraft:story/obtain_armor": {
  1645. "criteria": {
  1646. "iron_helmet": "2024-06-15 15:05:04 +0900"
  1647. },
  1648. "done": true
  1649. },
  1650. "minecraft:recipes/food/baked_potato_from_campfire_cooking": {
  1651. "criteria": {
  1652. "has_potato": "2024-06-15 15:07:47 +0900"
  1653. },
  1654. "done": true
  1655. },
  1656. "minecraft:recipes/food/baked_potato_from_smoking": {
  1657. "criteria": {
  1658. "has_potato": "2024-06-15 15:07:47 +0900"
  1659. },
  1660. "done": true
  1661. },
  1662. "minecraft:recipes/food/baked_potato": {
  1663. "criteria": {
  1664. "has_potato": "2024-06-15 15:07:47 +0900"
  1665. },
  1666. "done": true
  1667. },
  1668. "minecraft:recipes/building_blocks/polished_deepslate": {
  1669. "criteria": {
  1670. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1671. },
  1672. "done": true
  1673. },
  1674. "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting": {
  1675. "criteria": {
  1676. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1677. },
  1678. "done": true
  1679. },
  1680. "minecraft:recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting": {
  1681. "criteria": {
  1682. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1683. },
  1684. "done": true
  1685. },
  1686. "minecraft:recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting": {
  1687. "criteria": {
  1688. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1689. },
  1690. "done": true
  1691. },
  1692. "minecraft:recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting": {
  1693. "criteria": {
  1694. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1695. },
  1696. "done": true
  1697. },
  1698. "minecraft:recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting": {
  1699. "criteria": {
  1700. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1701. },
  1702. "done": true
  1703. },
  1704. "minecraft:recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting": {
  1705. "criteria": {
  1706. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1707. },
  1708. "done": true
  1709. },
  1710. "minecraft:recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting": {
  1711. "criteria": {
  1712. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1713. },
  1714. "done": true
  1715. },
  1716. "minecraft:recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting": {
  1717. "criteria": {
  1718. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1719. },
  1720. "done": true
  1721. },
  1722. "minecraft:recipes/building_blocks/cobbled_deepslate_stairs": {
  1723. "criteria": {
  1724. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1725. },
  1726. "done": true
  1727. },
  1728. "minecraft:recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting": {
  1729. "criteria": {
  1730. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1731. },
  1732. "done": true
  1733. },
  1734. "minecraft:recipes/building_blocks/cobbled_deepslate_slab": {
  1735. "criteria": {
  1736. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1737. },
  1738. "done": true
  1739. },
  1740. "minecraft:recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting": {
  1741. "criteria": {
  1742. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1743. },
  1744. "done": true
  1745. },
  1746. "minecraft:recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting": {
  1747. "criteria": {
  1748. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1749. },
  1750. "done": true
  1751. },
  1752. "minecraft:recipes/decorations/cobbled_deepslate_wall": {
  1753. "criteria": {
  1754. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1755. },
  1756. "done": true
  1757. },
  1758. "minecraft:recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting": {
  1759. "criteria": {
  1760. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1761. },
  1762. "done": true
  1763. },
  1764. "minecraft:recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting": {
  1765. "criteria": {
  1766. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1767. },
  1768. "done": true
  1769. },
  1770. "minecraft:recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting": {
  1771. "criteria": {
  1772. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1773. },
  1774. "done": true
  1775. },
  1776. "minecraft:recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting": {
  1777. "criteria": {
  1778. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1779. },
  1780. "done": true
  1781. },
  1782. "minecraft:recipes/building_blocks/deepslate": {
  1783. "criteria": {
  1784. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1785. },
  1786. "done": true
  1787. },
  1788. "minecraft:recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting": {
  1789. "criteria": {
  1790. "has_cobbled_deepslate": "2024-06-15 15:15:16 +0900"
  1791. },
  1792. "done": true
  1793. },
  1794. "minecraft:recipes/combat/diamond_leggings": {
  1795. "criteria": {
  1796. "has_diamond": "2024-06-15 15:17:22 +0900"
  1797. },
  1798. "done": true
  1799. },
  1800. "minecraft:recipes/combat/diamond_sword": {
  1801. "criteria": {
  1802. "has_diamond": "2024-06-15 15:17:22 +0900"
  1803. },
  1804. "done": true
  1805. },
  1806. "minecraft:recipes/decorations/jukebox": {
  1807. "criteria": {
  1808. "has_diamond": "2024-06-15 15:17:22 +0900"
  1809. },
  1810. "done": true
  1811. },
  1812. "minecraft:recipes/combat/diamond_chestplate": {
  1813. "criteria": {
  1814. "has_diamond": "2024-06-15 15:17:22 +0900"
  1815. },
  1816. "done": true
  1817. },
  1818. "minecraft:recipes/combat/diamond_helmet": {
  1819. "criteria": {
  1820. "has_diamond": "2024-06-15 15:17:22 +0900"
  1821. },
  1822. "done": true
  1823. },
  1824. "minecraft:recipes/tools/diamond_pickaxe": {
  1825. "criteria": {
  1826. "has_diamond": "2024-06-15 15:17:22 +0900"
  1827. },
  1828. "done": true
  1829. },
  1830. "minecraft:recipes/building_blocks/diamond_block": {
  1831. "criteria": {
  1832. "has_diamond": "2024-06-15 15:17:22 +0900"
  1833. },
  1834. "done": true
  1835. },
  1836. "minecraft:recipes/tools/diamond_hoe": {
  1837. "criteria": {
  1838. "has_diamond": "2024-06-15 15:17:22 +0900"
  1839. },
  1840. "done": true
  1841. },
  1842. "minecraft:recipes/tools/diamond_shovel": {
  1843. "criteria": {
  1844. "has_diamond": "2024-06-15 15:17:22 +0900"
  1845. },
  1846. "done": true
  1847. },
  1848. "minecraft:story/mine_diamond": {
  1849. "criteria": {
  1850. "diamond": "2024-06-15 15:17:22 +0900"
  1851. },
  1852. "done": true
  1853. },
  1854. "minecraft:recipes/tools/diamond_axe": {
  1855. "criteria": {
  1856. "has_diamond": "2024-06-15 15:17:22 +0900"
  1857. },
  1858. "done": true
  1859. },
  1860. "minecraft:recipes/combat/diamond_boots": {
  1861. "criteria": {
  1862. "has_diamond": "2024-06-15 15:17:22 +0900"
  1863. },
  1864. "done": true
  1865. },
  1866. "minecraft:recipes/building_blocks/coarse_dirt": {
  1867. "criteria": {
  1868. "has_gravel": "2024-06-15 15:20:50 +0900"
  1869. },
  1870. "done": true
  1871. },
  1872. "minecraft:story/deflect_arrow": {
  1873. "criteria": {
  1874. "deflected_projectile": "2024-06-15 15:23:47 +0900"
  1875. },
  1876. "done": true
  1877. },
  1878. "minecraft:recipes/transportation/carrot_on_a_stick": {
  1879. "criteria": {
  1880. "has_carrot": "2024-06-15 15:28:59 +0900"
  1881. },
  1882. "done": true
  1883. },
  1884. "minecraft:recipes/building_blocks/granite_stairs": {
  1885. "criteria": {
  1886. "has_granite": "2024-06-15 15:33:26 +0900"
  1887. },
  1888. "done": true
  1889. },
  1890. "minecraft:recipes/building_blocks/granite_stairs_from_granite_stonecutting": {
  1891. "criteria": {
  1892. "has_granite": "2024-06-15 15:33:26 +0900"
  1893. },
  1894. "done": true
  1895. },
  1896. "minecraft:recipes/decorations/granite_wall": {
  1897. "criteria": {
  1898. "has_granite": "2024-06-15 15:33:26 +0900"
  1899. },
  1900. "done": true
  1901. },
  1902. "minecraft:recipes/building_blocks/polished_granite_slab_from_granite_stonecutting": {
  1903. "criteria": {
  1904. "has_granite": "2024-06-15 15:33:26 +0900"
  1905. },
  1906. "done": true
  1907. },
  1908. "minecraft:recipes/building_blocks/granite_slab_from_granite_stonecutting": {
  1909. "criteria": {
  1910. "has_granite": "2024-06-15 15:33:26 +0900"
  1911. },
  1912. "done": true
  1913. },
  1914. "minecraft:recipes/building_blocks/polished_granite": {
  1915. "criteria": {
  1916. "has_granite": "2024-06-15 15:33:26 +0900"
  1917. },
  1918. "done": true
  1919. },
  1920. "minecraft:recipes/decorations/granite_wall_from_granite_stonecutting": {
  1921. "criteria": {
  1922. "has_granite": "2024-06-15 15:33:26 +0900"
  1923. },
  1924. "done": true
  1925. },
  1926. "minecraft:recipes/building_blocks/polished_granite_from_granite_stonecutting": {
  1927. "criteria": {
  1928. "has_granite": "2024-06-15 15:33:26 +0900"
  1929. },
  1930. "done": true
  1931. },
  1932. "minecraft:recipes/building_blocks/granite_slab": {
  1933. "criteria": {
  1934. "has_granite": "2024-06-15 15:33:26 +0900"
  1935. },
  1936. "done": true
  1937. },
  1938. "minecraft:recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting": {
  1939. "criteria": {
  1940. "has_granite": "2024-06-15 15:33:26 +0900"
  1941. },
  1942. "done": true
  1943. },
  1944. "minecraft:recipes/building_blocks/diorite_stairs_from_diorite_stonecutting": {
  1945. "criteria": {
  1946. "has_diorite": "2024-06-15 15:33:30 +0900"
  1947. },
  1948. "done": true
  1949. },
  1950. "minecraft:recipes/building_blocks/polished_diorite": {
  1951. "criteria": {
  1952. "has_diorite": "2024-06-15 15:33:30 +0900"
  1953. },
  1954. "done": true
  1955. },
  1956. "minecraft:recipes/building_blocks/diorite_slab": {
  1957. "criteria": {
  1958. "has_diorite": "2024-06-15 15:33:30 +0900"
  1959. },
  1960. "done": true
  1961. },
  1962. "minecraft:recipes/decorations/diorite_wall_from_diorite_stonecutting": {
  1963. "criteria": {
  1964. "has_diorite": "2024-06-15 15:33:30 +0900"
  1965. },
  1966. "done": true
  1967. },
  1968. "minecraft:recipes/building_blocks/andesite": {
  1969. "criteria": {
  1970. "has_stone": "2024-06-15 15:33:30 +0900"
  1971. },
  1972. "done": true
  1973. },
  1974. "minecraft:recipes/building_blocks/polished_diorite_from_diorite_stonecutting": {
  1975. "criteria": {
  1976. "has_diorite": "2024-06-15 15:33:30 +0900"
  1977. },
  1978. "done": true
  1979. },
  1980. "minecraft:recipes/decorations/diorite_wall": {
  1981. "criteria": {
  1982. "has_diorite": "2024-06-15 15:33:30 +0900"
  1983. },
  1984. "done": true
  1985. },
  1986. "minecraft:recipes/building_blocks/diorite_slab_from_diorite_stonecutting": {
  1987. "criteria": {
  1988. "has_diorite": "2024-06-15 15:33:30 +0900"
  1989. },
  1990. "done": true
  1991. },
  1992. "minecraft:recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting": {
  1993. "criteria": {
  1994. "has_diorite": "2024-06-15 15:33:30 +0900"
  1995. },
  1996. "done": true
  1997. },
  1998. "minecraft:recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting": {
  1999. "criteria": {
  2000. "has_diorite": "2024-06-15 15:33:30 +0900"
  2001. },
  2002. "done": true
  2003. },
  2004. "minecraft:recipes/building_blocks/diorite_stairs": {
  2005. "criteria": {
  2006. "has_diorite": "2024-06-15 15:33:30 +0900"
  2007. },
  2008. "done": true
  2009. },
  2010. "minecraft:recipes/building_blocks/andesite_stairs_from_andesite_stonecutting": {
  2011. "criteria": {
  2012. "has_andesite": "2024-06-15 15:34:07 +0900"
  2013. },
  2014. "done": true
  2015. },
  2016. "minecraft:recipes/building_blocks/andesite_stairs": {
  2017. "criteria": {
  2018. "has_andesite": "2024-06-15 15:34:07 +0900"
  2019. },
  2020. "done": true
  2021. },
  2022. "minecraft:recipes/building_blocks/polished_andesite_from_andesite_stonecutting": {
  2023. "criteria": {
  2024. "has_andesite": "2024-06-15 15:34:07 +0900"
  2025. },
  2026. "done": true
  2027. },
  2028. "minecraft:recipes/building_blocks/polished_andesite": {
  2029. "criteria": {
  2030. "has_andesite": "2024-06-15 15:34:07 +0900"
  2031. },
  2032. "done": true
  2033. },
  2034. "minecraft:recipes/decorations/andesite_wall_from_andesite_stonecutting": {
  2035. "criteria": {
  2036. "has_andesite": "2024-06-15 15:34:07 +0900"
  2037. },
  2038. "done": true
  2039. },
  2040. "minecraft:recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting": {
  2041. "criteria": {
  2042. "has_andesite": "2024-06-15 15:34:07 +0900"
  2043. },
  2044. "done": true
  2045. },
  2046. "minecraft:recipes/decorations/andesite_wall": {
  2047. "criteria": {
  2048. "has_andesite": "2024-06-15 15:34:07 +0900"
  2049. },
  2050. "done": true
  2051. },
  2052. "minecraft:recipes/building_blocks/andesite_slab": {
  2053. "criteria": {
  2054. "has_andesite": "2024-06-15 15:34:07 +0900"
  2055. },
  2056. "done": true
  2057. },
  2058. "minecraft:recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting": {
  2059. "criteria": {
  2060. "has_andesite": "2024-06-15 15:34:07 +0900"
  2061. },
  2062. "done": true
  2063. },
  2064. "minecraft:recipes/building_blocks/andesite_slab_from_andesite_stonecutting": {
  2065. "criteria": {
  2066. "has_andesite": "2024-06-15 15:34:07 +0900"
  2067. },
  2068. "done": true
  2069. },
  2070. "minecraft:recipes/misc/copper_ingot_from_blasting_raw_copper": {
  2071. "criteria": {
  2072. "has_raw_copper": "2024-06-15 15:35:36 +0900"
  2073. },
  2074. "done": true
  2075. },
  2076. "minecraft:recipes/building_blocks/raw_copper_block": {
  2077. "criteria": {
  2078. "has_raw_copper": "2024-06-15 15:35:36 +0900"
  2079. },
  2080. "done": true
  2081. },
  2082. "minecraft:recipes/misc/copper_ingot_from_smelting_raw_copper": {
  2083. "criteria": {
  2084. "has_raw_copper": "2024-06-15 15:35:36 +0900"
  2085. },
  2086. "done": true
  2087. },
  2088. "minecraft:recipes/transportation/dark_oak_chest_boat": {
  2089. "criteria": {
  2090. "has_boat": "2024-06-15 15:40:27 +0900"
  2091. },
  2092. "done": true
  2093. },
  2094. "minecraft:recipes/transportation/bamboo_chest_raft": {
  2095. "criteria": {
  2096. "has_boat": "2024-06-15 15:40:27 +0900"
  2097. },
  2098. "done": true
  2099. },
  2100. "minecraft:recipes/transportation/spruce_chest_boat": {
  2101. "criteria": {
  2102. "has_boat": "2024-06-15 15:40:27 +0900"
  2103. },
  2104. "done": true
  2105. },
  2106. "minecraft:recipes/transportation/jungle_chest_boat": {
  2107. "criteria": {
  2108. "has_boat": "2024-06-15 15:40:27 +0900"
  2109. },
  2110. "done": true
  2111. },
  2112. "minecraft:recipes/transportation/acacia_chest_boat": {
  2113. "criteria": {
  2114. "has_boat": "2024-06-15 15:40:27 +0900"
  2115. },
  2116. "done": true
  2117. },
  2118. "minecraft:recipes/transportation/mangrove_chest_boat": {
  2119. "criteria": {
  2120. "has_boat": "2024-06-15 15:40:27 +0900"
  2121. },
  2122. "done": true
  2123. },
  2124. "minecraft:recipes/transportation/oak_chest_boat": {
  2125. "criteria": {
  2126. "has_boat": "2024-06-15 15:40:27 +0900"
  2127. },
  2128. "done": true
  2129. },
  2130. "minecraft:recipes/transportation/cherry_chest_boat": {
  2131. "criteria": {
  2132. "has_boat": "2024-06-15 15:40:27 +0900"
  2133. },
  2134. "done": true
  2135. },
  2136. "minecraft:recipes/transportation/birch_chest_boat": {
  2137. "criteria": {
  2138. "has_boat": "2024-06-15 15:40:27 +0900"
  2139. },
  2140. "done": true
  2141. },
  2142. "minecraft:recipes/redstone/redstone_torch": {
  2143. "criteria": {
  2144. "has_redstone": "2024-06-15 15:51:49 +0900"
  2145. },
  2146. "done": true
  2147. },
  2148. "minecraft:recipes/tools/clock": {
  2149. "criteria": {
  2150. "has_redstone": "2024-06-15 15:51:49 +0900"
  2151. },
  2152. "done": true
  2153. },
  2154. "minecraft:recipes/redstone/dropper": {
  2155. "criteria": {
  2156. "has_redstone": "2024-06-15 15:51:49 +0900"
  2157. },
  2158. "done": true
  2159. },
  2160. "minecraft:recipes/redstone/redstone_block": {
  2161. "criteria": {
  2162. "has_redstone": "2024-06-15 15:51:49 +0900"
  2163. },
  2164. "done": true
  2165. },
  2166. "minecraft:recipes/redstone/note_block": {
  2167. "criteria": {
  2168. "has_redstone": "2024-06-15 15:51:49 +0900"
  2169. },
  2170. "done": true
  2171. },
  2172. "minecraft:recipes/redstone/target": {
  2173. "criteria": {
  2174. "has_redstone": "2024-06-15 15:51:49 +0900"
  2175. },
  2176. "done": true
  2177. },
  2178. "minecraft:recipes/tools/compass": {
  2179. "criteria": {
  2180. "has_redstone": "2024-06-15 15:51:49 +0900"
  2181. },
  2182. "done": true
  2183. },
  2184. "minecraft:recipes/redstone/piston": {
  2185. "criteria": {
  2186. "has_redstone": "2024-06-15 15:51:49 +0900"
  2187. },
  2188. "done": true
  2189. },
  2190. "minecraft:husbandry/tame_an_animal": {
  2191. "criteria": {
  2192. "tamed_animal": "2024-06-15 15:57:30 +0900"
  2193. },
  2194. "done": true
  2195. },
  2196. "minecraft:recipes/misc/map": {
  2197. "criteria": {
  2198. "has_compass": "2024-06-15 16:01:59 +0900"
  2199. },
  2200. "done": true
  2201. },
  2202. "minecraft:recipes/brewing/cauldron": {
  2203. "criteria": {
  2204. "has_water_bucket": "2024-06-15 16:03:15 +0900"
  2205. },
  2206. "done": true
  2207. },
  2208. "minecraft:recipes/tools/flint_and_steel": {
  2209. "criteria": {
  2210. "has_obsidian": "2024-06-15 16:05:58 +0900"
  2211. },
  2212. "done": true
  2213. },
  2214. "minecraft:story/form_obsidian": {
  2215. "criteria": {
  2216. "obsidian": "2024-06-15 16:05:58 +0900"
  2217. },
  2218. "done": true
  2219. },
  2220. "minecraft:recipes/decorations/enchanting_table": {
  2221. "criteria": {
  2222. "has_obsidian": "2024-06-15 16:05:58 +0900"
  2223. },
  2224. "done": true
  2225. },
  2226. "minecraft:nether/root": {
  2227. "criteria": {
  2228. "entered_nether": "2024-06-15 16:07:33 +0900"
  2229. },
  2230. "done": true
  2231. },
  2232. "minecraft:story/enter_the_nether": {
  2233. "criteria": {
  2234. "entered_nether": "2024-06-15 16:07:33 +0900"
  2235. },
  2236. "done": true
  2237. },
  2238. "minecraft:nether/explore_nether": {
  2239. "criteria": {
  2240. "minecraft:crimson_forest": "2024-06-15 16:07:34 +0900",
  2241. "minecraft:nether_wastes": "2024-06-16 01:32:00 +0900",
  2242. "minecraft:warped_forest": "2024-06-15 20:59:49 +0900"
  2243. },
  2244. "done": false
  2245. },
  2246. "minecraft:recipes/misc/gold_nugget_from_smelting": {
  2247. "criteria": {
  2248. "has_golden_boots": "2024-06-15 16:16:12 +0900"
  2249. },
  2250. "done": true
  2251. },
  2252. "minecraft:recipes/misc/gold_nugget_from_blasting": {
  2253. "criteria": {
  2254. "has_golden_boots": "2024-06-15 16:16:12 +0900"
  2255. },
  2256. "done": true
  2257. },
  2258. "minecraft:recipes/misc/nether_brick": {
  2259. "criteria": {
  2260. "has_netherrack": "2024-06-15 16:16:51 +0900"
  2261. },
  2262. "done": true
  2263. },
  2264. "minecraft:nether/find_fortress": {
  2265. "criteria": {
  2266. "fortress": "2024-06-15 16:20:54 +0900"
  2267. },
  2268. "done": true
  2269. },
  2270. "minecraft:recipes/transportation/detector_rail": {
  2271. "criteria": {
  2272. "has_rail": "2024-06-15 16:29:04 +0900"
  2273. },
  2274. "done": true
  2275. },
  2276. "minecraft:recipes/transportation/activator_rail": {
  2277. "criteria": {
  2278. "has_rail": "2024-06-15 16:29:04 +0900"
  2279. },
  2280. "done": true
  2281. },
  2282. "minecraft:recipes/transportation/powered_rail": {
  2283. "criteria": {
  2284. "has_rail": "2024-06-15 16:29:04 +0900"
  2285. },
  2286. "done": true
  2287. },
  2288. "minecraft:recipes/misc/gold_ingot_from_smelting_raw_gold": {
  2289. "criteria": {
  2290. "has_raw_gold": "2024-06-15 16:31:34 +0900"
  2291. },
  2292. "done": true
  2293. },
  2294. "minecraft:recipes/building_blocks/raw_gold_block": {
  2295. "criteria": {
  2296. "has_raw_gold": "2024-06-15 16:31:34 +0900"
  2297. },
  2298. "done": true
  2299. },
  2300. "minecraft:recipes/misc/gold_ingot_from_blasting_raw_gold": {
  2301. "criteria": {
  2302. "has_raw_gold": "2024-06-15 16:31:34 +0900"
  2303. },
  2304. "done": true
  2305. },
  2306. "minecraft:recipes/tools/golden_axe": {
  2307. "criteria": {
  2308. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2309. },
  2310. "done": true
  2311. },
  2312. "minecraft:recipes/tools/golden_pickaxe": {
  2313. "criteria": {
  2314. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2315. },
  2316. "done": true
  2317. },
  2318. "minecraft:recipes/misc/gold_nugget": {
  2319. "criteria": {
  2320. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2321. },
  2322. "done": true
  2323. },
  2324. "minecraft:recipes/tools/golden_shovel": {
  2325. "criteria": {
  2326. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2327. },
  2328. "done": true
  2329. },
  2330. "minecraft:recipes/food/golden_apple": {
  2331. "criteria": {
  2332. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2333. },
  2334. "done": true
  2335. },
  2336. "minecraft:recipes/combat/golden_boots": {
  2337. "criteria": {
  2338. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2339. },
  2340. "done": true
  2341. },
  2342. "minecraft:recipes/combat/golden_helmet": {
  2343. "criteria": {
  2344. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2345. },
  2346. "done": true
  2347. },
  2348. "minecraft:recipes/combat/golden_sword": {
  2349. "criteria": {
  2350. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2351. },
  2352. "done": true
  2353. },
  2354. "minecraft:recipes/building_blocks/gold_block": {
  2355. "criteria": {
  2356. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2357. },
  2358. "done": true
  2359. },
  2360. "minecraft:recipes/combat/golden_chestplate": {
  2361. "criteria": {
  2362. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2363. },
  2364. "done": true
  2365. },
  2366. "minecraft:recipes/tools/golden_hoe": {
  2367. "criteria": {
  2368. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2369. },
  2370. "done": true
  2371. },
  2372. "minecraft:recipes/redstone/light_weighted_pressure_plate": {
  2373. "criteria": {
  2374. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2375. },
  2376. "done": true
  2377. },
  2378. "minecraft:recipes/combat/golden_leggings": {
  2379. "criteria": {
  2380. "has_gold_ingot": "2024-06-15 16:38:18 +0900"
  2381. },
  2382. "done": true
  2383. },
  2384. "minecraft:recipes/redstone/repeater": {
  2385. "criteria": {
  2386. "has_redstone_torch": "2024-06-15 16:38:48 +0900"
  2387. },
  2388. "done": true
  2389. },
  2390. "minecraft:recipes/building_blocks/cracked_nether_bricks": {
  2391. "criteria": {
  2392. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2393. },
  2394. "done": true
  2395. },
  2396. "minecraft:recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting": {
  2397. "criteria": {
  2398. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2399. },
  2400. "done": true
  2401. },
  2402. "minecraft:recipes/building_blocks/nether_brick_stairs": {
  2403. "criteria": {
  2404. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2405. },
  2406. "done": true
  2407. },
  2408. "minecraft:recipes/building_blocks/nether_brick_slab": {
  2409. "criteria": {
  2410. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2411. },
  2412. "done": true
  2413. },
  2414. "minecraft:recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting": {
  2415. "criteria": {
  2416. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2417. },
  2418. "done": true
  2419. },
  2420. "minecraft:recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting": {
  2421. "criteria": {
  2422. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2423. },
  2424. "done": true
  2425. },
  2426. "minecraft:recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting": {
  2427. "criteria": {
  2428. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2429. },
  2430. "done": true
  2431. },
  2432. "minecraft:recipes/decorations/nether_brick_wall": {
  2433. "criteria": {
  2434. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2435. },
  2436. "done": true
  2437. },
  2438. "minecraft:recipes/decorations/nether_brick_fence": {
  2439. "criteria": {
  2440. "has_nether_bricks": "2024-06-15 16:54:35 +0900"
  2441. },
  2442. "done": true
  2443. },
  2444. "minecraft:nether/obtain_blaze_rod": {
  2445. "criteria": {
  2446. "blaze_rod": "2024-06-15 17:08:55 +0900"
  2447. },
  2448. "done": true
  2449. },
  2450. "minecraft:recipes/brewing/blaze_powder": {
  2451. "criteria": {
  2452. "has_blaze_rod": "2024-06-15 17:08:55 +0900"
  2453. },
  2454. "done": true
  2455. },
  2456. "minecraft:recipes/brewing/brewing_stand": {
  2457. "criteria": {
  2458. "has_blaze_rod": "2024-06-15 17:08:55 +0900"
  2459. },
  2460. "done": true
  2461. },
  2462. "minecraft:recipes/transportation/chest_minecart": {
  2463. "criteria": {
  2464. "has_minecart": "2024-06-15 17:12:23 +0900"
  2465. },
  2466. "done": true
  2467. },
  2468. "minecraft:recipes/transportation/furnace_minecart": {
  2469. "criteria": {
  2470. "has_minecart": "2024-06-15 17:12:23 +0900"
  2471. },
  2472. "done": true
  2473. },
  2474. "minecraft:recipes/transportation/hopper_minecart": {
  2475. "criteria": {
  2476. "has_minecart": "2024-06-15 17:12:23 +0900"
  2477. },
  2478. "done": true
  2479. },
  2480. "minecraft:recipes/transportation/tnt_minecart": {
  2481. "criteria": {
  2482. "has_minecart": "2024-06-15 17:12:23 +0900"
  2483. },
  2484. "done": true
  2485. },
  2486. "minecraft:recipes/transportation/rail": {
  2487. "criteria": {
  2488. "has_minecart": "2024-06-15 17:12:23 +0900"
  2489. },
  2490. "done": true
  2491. },
  2492. "minecraft:recipes/misc/iron_ingot_from_iron_block": {
  2493. "criteria": {
  2494. "has_iron_block": "2024-06-15 17:48:31 +0900"
  2495. },
  2496. "done": true
  2497. },
  2498. "minecraft:recipes/decorations/anvil": {
  2499. "criteria": {
  2500. "has_iron_block": "2024-06-15 17:48:31 +0900"
  2501. },
  2502. "done": true
  2503. },
  2504. "minecraft:story/lava_bucket": {
  2505. "criteria": {
  2506. "lava_bucket": "2024-06-15 17:55:11 +0900"
  2507. },
  2508. "done": true
  2509. },
  2510. "minecraft:recipes/redstone/observer": {
  2511. "criteria": {
  2512. "has_quartz": "2024-06-15 18:01:54 +0900"
  2513. },
  2514. "done": true
  2515. },
  2516. "minecraft:recipes/redstone/comparator": {
  2517. "criteria": {
  2518. "has_quartz": "2024-06-15 18:01:54 +0900"
  2519. },
  2520. "done": true
  2521. },
  2522. "minecraft:recipes/building_blocks/diorite": {
  2523. "criteria": {
  2524. "has_quartz": "2024-06-15 18:01:54 +0900"
  2525. },
  2526. "done": true
  2527. },
  2528. "minecraft:recipes/building_blocks/granite": {
  2529. "criteria": {
  2530. "has_quartz": "2024-06-15 18:01:54 +0900"
  2531. },
  2532. "done": true
  2533. },
  2534. "minecraft:recipes/building_blocks/quartz_block": {
  2535. "criteria": {
  2536. "has_quartz": "2024-06-15 18:01:54 +0900"
  2537. },
  2538. "done": true
  2539. },
  2540. "minecraft:recipes/redstone/daylight_detector": {
  2541. "criteria": {
  2542. "has_quartz": "2024-06-15 18:01:54 +0900"
  2543. },
  2544. "done": true
  2545. },
  2546. "minecraft:recipes/decorations/fletching_table": {
  2547. "criteria": {
  2548. "has_flint": "2024-06-15 20:45:23 +0900"
  2549. },
  2550. "done": true
  2551. },
  2552. "minecraft:husbandry/bred_all_animals": {
  2553. "criteria": {
  2554. "minecraft:chicken": "2024-06-15 20:46:30 +0900"
  2555. },
  2556. "done": false
  2557. },
  2558. "minecraft:husbandry/breed_an_animal": {
  2559. "criteria": {
  2560. "bred": "2024-06-15 20:46:30 +0900"
  2561. },
  2562. "done": true
  2563. },
  2564. "minecraft:story/shiny_gear": {
  2565. "criteria": {
  2566. "diamond_leggings": "2024-06-15 20:50:51 +0900"
  2567. },
  2568. "done": true
  2569. },
  2570. "minecraft:recipes/brewing/magma_cream": {
  2571. "criteria": {
  2572. "has_blaze_powder": "2024-06-15 22:33:39 +0900"
  2573. },
  2574. "done": true
  2575. },
  2576. "minecraft:recipes/misc/ender_eye": {
  2577. "criteria": {
  2578. "has_blaze_powder": "2024-06-15 22:33:39 +0900"
  2579. },
  2580. "done": true
  2581. },
  2582. "minecraft:recipes/misc/fire_charge": {
  2583. "criteria": {
  2584. "has_blaze_powder": "2024-06-15 22:33:39 +0900"
  2585. },
  2586. "done": true
  2587. },
  2588. "minecraft:recipes/decorations/end_crystal": {
  2589. "criteria": {
  2590. "has_ender_eye": "2024-06-15 22:33:41 +0900"
  2591. },
  2592. "done": true
  2593. },
  2594. "minecraft:recipes/decorations/ender_chest": {
  2595. "criteria": {
  2596. "has_ender_eye": "2024-06-15 22:33:41 +0900"
  2597. },
  2598. "done": true
  2599. },
  2600. "minecraft:story/follow_ender_eye": {
  2601. "criteria": {
  2602. "in_stronghold": "2024-06-15 22:45:27 +0900"
  2603. },
  2604. "done": true
  2605. },
  2606. "minecraft:recipes/decorations/stone_brick_wall": {
  2607. "criteria": {
  2608. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2609. },
  2610. "done": true
  2611. },
  2612. "minecraft:recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting": {
  2613. "criteria": {
  2614. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2615. },
  2616. "done": true
  2617. },
  2618. "minecraft:recipes/building_blocks/cracked_stone_bricks": {
  2619. "criteria": {
  2620. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2621. },
  2622. "done": true
  2623. },
  2624. "minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting": {
  2625. "criteria": {
  2626. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2627. },
  2628. "done": true
  2629. },
  2630. "minecraft:recipes/building_blocks/stone_brick_slab": {
  2631. "criteria": {
  2632. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2633. },
  2634. "done": true
  2635. },
  2636. "minecraft:recipes/building_blocks/stone_brick_stairs": {
  2637. "criteria": {
  2638. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2639. },
  2640. "done": true
  2641. },
  2642. "minecraft:recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting": {
  2643. "criteria": {
  2644. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2645. },
  2646. "done": true
  2647. },
  2648. "minecraft:recipes/building_blocks/chiseled_stone_bricks": {
  2649. "criteria": {
  2650. "has_tag": "2024-06-15 22:45:50 +0900"
  2651. },
  2652. "done": true
  2653. },
  2654. "minecraft:recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting": {
  2655. "criteria": {
  2656. "has_stone_bricks": "2024-06-15 22:45:50 +0900"
  2657. },
  2658. "done": true
  2659. },
  2660. "minecraft:recipes/misc/eye_armor_trim_smithing_template_smithing_trim": {
  2661. "criteria": {
  2662. "has_smithing_trim_template": "2024-06-15 22:49:23 +0900"
  2663. },
  2664. "done": true
  2665. },
  2666. "minecraft:recipes/misc/eye_armor_trim_smithing_template": {
  2667. "criteria": {
  2668. "has_eye_armor_trim_smithing_template": "2024-06-15 22:49:23 +0900"
  2669. },
  2670. "done": true
  2671. },
  2672. "minecraft:recipes/building_blocks/mossy_stone_brick_stairs": {
  2673. "criteria": {
  2674. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2675. },
  2676. "done": true
  2677. },
  2678. "minecraft:recipes/decorations/mossy_stone_brick_wall": {
  2679. "criteria": {
  2680. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2681. },
  2682. "done": true
  2683. },
  2684. "minecraft:recipes/building_blocks/mossy_stone_brick_slab": {
  2685. "criteria": {
  2686. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2687. },
  2688. "done": true
  2689. },
  2690. "minecraft:recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_brick_stonecutting": {
  2691. "criteria": {
  2692. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2693. },
  2694. "done": true
  2695. },
  2696. "minecraft:recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_brick_stonecutting": {
  2697. "criteria": {
  2698. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2699. },
  2700. "done": true
  2701. },
  2702. "minecraft:recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_brick_stonecutting": {
  2703. "criteria": {
  2704. "has_mossy_stone_bricks": "2024-06-15 22:52:55 +0900"
  2705. },
  2706. "done": true
  2707. },
  2708. "minecraft:recipes/building_blocks/bookshelf": {
  2709. "criteria": {
  2710. "has_book": "2024-06-15 23:33:26 +0900"
  2711. },
  2712. "done": true
  2713. },
  2714. "minecraft:recipes/redstone/lectern": {
  2715. "criteria": {
  2716. "has_book": "2024-06-15 23:33:26 +0900"
  2717. },
  2718. "done": true
  2719. },
  2720. "minecraft:recipes/building_blocks/chiseled_bookshelf": {
  2721. "criteria": {
  2722. "has_book": "2024-06-15 23:33:26 +0900"
  2723. },
  2724. "done": true
  2725. },
  2726. "minecraft:recipes/misc/writable_book": {
  2727. "criteria": {
  2728. "has_book": "2024-06-15 23:33:26 +0900"
  2729. },
  2730. "done": true
  2731. },
  2732. "minecraft:recipes/building_blocks/nether_wart_block": {
  2733. "criteria": {
  2734. "has_nether_wart": "2024-06-15 23:53:32 +0900"
  2735. },
  2736. "done": true
  2737. },
  2738. "minecraft:recipes/building_blocks/red_nether_bricks": {
  2739. "criteria": {
  2740. "has_nether_wart": "2024-06-15 23:53:32 +0900"
  2741. },
  2742. "done": true
  2743. },
  2744. "minecraft:recipes/misc/gold_ingot_from_nuggets": {
  2745. "criteria": {
  2746. "has_gold_nugget": "2024-06-16 01:07:07 +0900"
  2747. },
  2748. "done": true
  2749. },
  2750. "minecraft:recipes/brewing/golden_carrot": {
  2751. "criteria": {
  2752. "has_gold_nugget": "2024-06-16 01:07:07 +0900"
  2753. },
  2754. "done": true
  2755. },
  2756. "minecraft:recipes/building_blocks/spruce_planks": {
  2757. "criteria": {
  2758. "has_logs": "2024-06-16 01:11:57 +0900"
  2759. },
  2760. "done": true
  2761. },
  2762. "minecraft:recipes/building_blocks/spruce_wood": {
  2763. "criteria": {
  2764. "has_log": "2024-06-16 01:11:57 +0900"
  2765. },
  2766. "done": true
  2767. },
  2768. "minecraft:recipes/decorations/spruce_hanging_sign": {
  2769. "criteria": {
  2770. "has_stripped_logs": "2024-06-16 01:12:30 +0900"
  2771. },
  2772. "done": true
  2773. },
  2774. "minecraft:recipes/building_blocks/stripped_spruce_wood": {
  2775. "criteria": {
  2776. "has_log": "2024-06-16 01:12:30 +0900"
  2777. },
  2778. "done": true
  2779. },
  2780. "minecraft:recipes/redstone/spruce_button": {
  2781. "criteria": {
  2782. "has_planks": "2024-06-16 01:31:18 +0900"
  2783. },
  2784. "done": true
  2785. },
  2786. "minecraft:recipes/redstone/spruce_pressure_plate": {
  2787. "criteria": {
  2788. "has_planks": "2024-06-16 01:31:18 +0900"
  2789. },
  2790. "done": true
  2791. },
  2792. "minecraft:recipes/decorations/spruce_sign": {
  2793. "criteria": {
  2794. "has_planks": "2024-06-16 01:31:18 +0900"
  2795. },
  2796. "done": true
  2797. },
  2798. "minecraft:recipes/redstone/spruce_trapdoor": {
  2799. "criteria": {
  2800. "has_planks": "2024-06-16 01:31:18 +0900"
  2801. },
  2802. "done": true
  2803. },
  2804. "minecraft:recipes/redstone/spruce_door": {
  2805. "criteria": {
  2806. "has_planks": "2024-06-16 01:31:18 +0900"
  2807. },
  2808. "done": true
  2809. },
  2810. "minecraft:recipes/redstone/spruce_fence_gate": {
  2811. "criteria": {
  2812. "has_planks": "2024-06-16 01:31:18 +0900"
  2813. },
  2814. "done": true
  2815. },
  2816. "minecraft:recipes/decorations/spruce_fence": {
  2817. "criteria": {
  2818. "has_planks": "2024-06-16 01:31:18 +0900"
  2819. },
  2820. "done": true
  2821. },
  2822. "minecraft:recipes/building_blocks/spruce_stairs": {
  2823. "criteria": {
  2824. "has_planks": "2024-06-16 01:31:18 +0900"
  2825. },
  2826. "done": true
  2827. },
  2828. "minecraft:recipes/building_blocks/spruce_slab": {
  2829. "criteria": {
  2830. "has_planks": "2024-06-16 01:31:18 +0900"
  2831. },
  2832. "done": true
  2833. },
  2834. "minecraft:recipes/misc/bowl": {
  2835. "criteria": {
  2836. "has_red_mushroom": "2024-06-16 01:32:23 +0900"
  2837. },
  2838. "done": true
  2839. },
  2840. "minecraft:recipes/food/mushroom_stew": {
  2841. "criteria": {
  2842. "has_red_mushroom": "2024-06-16 01:32:23 +0900"
  2843. },
  2844. "done": true
  2845. },
  2846. "minecraft:recipes/building_blocks/warped_planks": {
  2847. "criteria": {
  2848. "has_logs": "2024-06-16 01:35:34 +0900"
  2849. },
  2850. "done": true
  2851. },
  2852. "minecraft:recipes/building_blocks/warped_hyphae": {
  2853. "criteria": {
  2854. "has_log": "2024-06-16 01:35:34 +0900"
  2855. },
  2856. "done": true
  2857. },
  2858. "minecraft:recipes/transportation/warped_fungus_on_a_stick": {
  2859. "criteria": {
  2860. "has_warped_fungus": "2024-06-16 01:40:16 +0900"
  2861. },
  2862. "done": true
  2863. },
  2864. "minecraft:recipes/building_blocks/magma_block": {
  2865. "criteria": {
  2866. "has_magma_cream": "2024-06-16 01:43:25 +0900"
  2867. },
  2868. "done": true
  2869. },
  2870. "minecraft:recipes/redstone/warped_pressure_plate": {
  2871. "criteria": {
  2872. "has_planks": "2024-06-16 11:25:21 +0900"
  2873. },
  2874. "done": true
  2875. },
  2876. "minecraft:recipes/building_blocks/warped_slab": {
  2877. "criteria": {
  2878. "has_planks": "2024-06-16 11:25:21 +0900"
  2879. },
  2880. "done": true
  2881. },
  2882. "minecraft:recipes/redstone/warped_fence_gate": {
  2883. "criteria": {
  2884. "has_planks": "2024-06-16 11:25:21 +0900"
  2885. },
  2886. "done": true
  2887. },
  2888. "minecraft:recipes/decorations/warped_fence": {
  2889. "criteria": {
  2890. "has_planks": "2024-06-16 11:25:21 +0900"
  2891. },
  2892. "done": true
  2893. },
  2894. "minecraft:recipes/redstone/warped_button": {
  2895. "criteria": {
  2896. "has_planks": "2024-06-16 11:25:21 +0900"
  2897. },
  2898. "done": true
  2899. },
  2900. "minecraft:recipes/building_blocks/warped_stairs": {
  2901. "criteria": {
  2902. "has_planks": "2024-06-16 11:25:21 +0900"
  2903. },
  2904. "done": true
  2905. },
  2906. "minecraft:recipes/redstone/warped_trapdoor": {
  2907. "criteria": {
  2908. "has_planks": "2024-06-16 11:25:21 +0900"
  2909. },
  2910. "done": true
  2911. },
  2912. "minecraft:recipes/decorations/warped_sign": {
  2913. "criteria": {
  2914. "has_planks": "2024-06-16 11:25:21 +0900"
  2915. },
  2916. "done": true
  2917. },
  2918. "minecraft:recipes/redstone/warped_door": {
  2919. "criteria": {
  2920. "has_planks": "2024-06-16 11:25:21 +0900"
  2921. },
  2922. "done": true
  2923. },
  2924. "minecraft:recipes/building_blocks/acacia_wood": {
  2925. "criteria": {
  2926. "has_log": "2024-06-16 12:08:45 +0900"
  2927. },
  2928. "done": true
  2929. },
  2930. "minecraft:recipes/building_blocks/acacia_planks": {
  2931. "criteria": {
  2932. "has_log": "2024-06-16 12:08:45 +0900"
  2933. },
  2934. "done": true
  2935. },
  2936. "minecraft:recipes/redstone/acacia_button": {
  2937. "criteria": {
  2938. "has_planks": "2024-06-16 12:08:46 +0900"
  2939. },
  2940. "done": true
  2941. },
  2942. "minecraft:recipes/redstone/acacia_pressure_plate": {
  2943. "criteria": {
  2944. "has_planks": "2024-06-16 12:08:46 +0900"
  2945. },
  2946. "done": true
  2947. },
  2948. "minecraft:recipes/decorations/acacia_sign": {
  2949. "criteria": {
  2950. "has_planks": "2024-06-16 12:08:46 +0900"
  2951. },
  2952. "done": true
  2953. },
  2954. "minecraft:recipes/building_blocks/acacia_slab": {
  2955. "criteria": {
  2956. "has_planks": "2024-06-16 12:08:46 +0900"
  2957. },
  2958. "done": true
  2959. },
  2960. "minecraft:recipes/redstone/acacia_trapdoor": {
  2961. "criteria": {
  2962. "has_planks": "2024-06-16 12:08:46 +0900"
  2963. },
  2964. "done": true
  2965. },
  2966. "minecraft:recipes/decorations/acacia_fence": {
  2967. "criteria": {
  2968. "has_planks": "2024-06-16 12:08:46 +0900"
  2969. },
  2970. "done": true
  2971. },
  2972. "minecraft:recipes/building_blocks/acacia_stairs": {
  2973. "criteria": {
  2974. "has_planks": "2024-06-16 12:08:46 +0900"
  2975. },
  2976. "done": true
  2977. },
  2978. "minecraft:recipes/redstone/acacia_door": {
  2979. "criteria": {
  2980. "has_planks": "2024-06-16 12:08:46 +0900"
  2981. },
  2982. "done": true
  2983. },
  2984. "minecraft:recipes/redstone/acacia_fence_gate": {
  2985. "criteria": {
  2986. "has_planks": "2024-06-16 12:08:46 +0900"
  2987. },
  2988. "done": true
  2989. },
  2990. "minecraft:recipes/building_blocks/glowstone": {
  2991. "criteria": {
  2992. "has_glowstone_dust": "2024-06-19 21:15:14 +0900"
  2993. },
  2994. "done": true
  2995. },
  2996. "minecraft:recipes/combat/spectral_arrow": {
  2997. "criteria": {
  2998. "has_glowstone_dust": "2024-06-19 21:15:14 +0900"
  2999. },
  3000. "done": true
  3001. },
  3002. "minecraft:recipes/building_blocks/quartz_stairs": {
  3003. "criteria": {
  3004. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3005. },
  3006. "done": true
  3007. },
  3008. "minecraft:recipes/building_blocks/smooth_quartz": {
  3009. "criteria": {
  3010. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3011. },
  3012. "done": true
  3013. },
  3014. "minecraft:recipes/building_blocks/quartz_slab": {
  3015. "criteria": {
  3016. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3017. },
  3018. "done": true
  3019. },
  3020. "minecraft:recipes/building_blocks/chiseled_quartz_block": {
  3021. "criteria": {
  3022. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3023. },
  3024. "done": true
  3025. },
  3026. "minecraft:recipes/building_blocks/quartz_bricks": {
  3027. "criteria": {
  3028. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3029. },
  3030. "done": true
  3031. },
  3032. "minecraft:recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting": {
  3033. "criteria": {
  3034. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3035. },
  3036. "done": true
  3037. },
  3038. "minecraft:recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting": {
  3039. "criteria": {
  3040. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3041. },
  3042. "done": true
  3043. },
  3044. "minecraft:recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting": {
  3045. "criteria": {
  3046. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3047. },
  3048. "done": true
  3049. },
  3050. "minecraft:recipes/building_blocks/quartz_slab_from_stonecutting": {
  3051. "criteria": {
  3052. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3053. },
  3054. "done": true
  3055. },
  3056. "minecraft:recipes/building_blocks/quartz_pillar": {
  3057. "criteria": {
  3058. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3059. },
  3060. "done": true
  3061. },
  3062. "minecraft:recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting": {
  3063. "criteria": {
  3064. "has_quartz_block": "2024-06-19 21:22:58 +0900"
  3065. },
  3066. "done": true
  3067. },
  3068. "minecraft:story/enchant_item": {
  3069. "criteria": {
  3070. "enchanted_item": "2024-06-19 21:32:52 +0900"
  3071. },
  3072. "done": true
  3073. },
  3074. "minecraft:recipes/misc/diamond": {
  3075. "criteria": {
  3076. "has_diamond_block": "2024-06-20 22:13:57 +0900"
  3077. },
  3078. "done": true
  3079. },
  3080. "minecraft:recipes/building_blocks/chiseled_deepslate": {
  3081. "criteria": {
  3082. "has_cobbled_deepslate_slab": "2024-06-20 22:16:41 +0900"
  3083. },
  3084. "done": true
  3085. },
  3086. "minecraft:recipes/misc/gold_ingot_from_gold_block": {
  3087. "criteria": {
  3088. "has_gold_block": "2024-06-20 22:27:08 +0900"
  3089. },
  3090. "done": true
  3091. },
  3092. "minecraft:recipes/redstone/redstone": {
  3093. "criteria": {
  3094. "has_redstone_block": "2024-06-20 22:27:55 +0900"
  3095. },
  3096. "done": true
  3097. },
  3098. "minecraft:adventure/shoot_arrow": {
  3099. "criteria": {
  3100. "shot_arrow": "2024-06-22 22:02:27 +0900"
  3101. },
  3102. "done": true
  3103. },
  3104. "minecraft:recipes/building_blocks/bricks": {
  3105. "criteria": {
  3106. "has_brick": "2024-06-22 22:43:24 +0900"
  3107. },
  3108. "done": true
  3109. },
  3110. "minecraft:recipes/decorations/flower_pot": {
  3111. "criteria": {
  3112. "has_brick": "2024-06-22 22:43:24 +0900"
  3113. },
  3114. "done": true
  3115. },
  3116. "minecraft:recipes/decorations/decorated_pot_simple": {
  3117. "criteria": {
  3118. "has_brick": "2024-06-22 22:43:24 +0900"
  3119. },
  3120. "done": true
  3121. },
  3122. "minecraft:recipes/building_blocks/emerald_block": {
  3123. "criteria": {
  3124. "has_emerald": "2024-06-22 22:44:16 +0900"
  3125. },
  3126. "done": true
  3127. },
  3128. "minecraft:adventure/trade": {
  3129. "criteria": {
  3130. "traded": "2024-06-22 22:44:53 +0900"
  3131. },
  3132. "done": true
  3133. },
  3134. "minecraft:recipes/combat/wolf_armor": {
  3135. "criteria": {
  3136. "has_armadillo_scute": "2024-06-22 22:45:39 +0900"
  3137. },
  3138. "done": true
  3139. },
  3140. "minecraft:end/root": {
  3141. "criteria": {
  3142. "entered_end": "2024-06-22 22:59:53 +0900"
  3143. },
  3144. "done": true
  3145. },
  3146. "minecraft:story/enter_the_end": {
  3147. "criteria": {
  3148. "entered_end": "2024-06-22 22:59:53 +0900"
  3149. },
  3150. "done": true
  3151. },
  3152. "minecraft:recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting": {
  3153. "criteria": {
  3154. "has_end_stone": "2024-06-22 22:59:58 +0900"
  3155. },
  3156. "done": true
  3157. },
  3158. "minecraft:recipes/building_blocks/end_stone_bricks": {
  3159. "criteria": {
  3160. "has_end_stone": "2024-06-22 22:59:58 +0900"
  3161. },
  3162. "done": true
  3163. },
  3164. "minecraft:recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting": {
  3165. "criteria": {
  3166. "has_end_stone": "2024-06-22 22:59:58 +0900"
  3167. },
  3168. "done": true
  3169. },
  3170. "minecraft:recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting": {
  3171. "criteria": {
  3172. "has_end_stone": "2024-06-22 22:59:58 +0900"
  3173. },
  3174. "done": true
  3175. },
  3176. "minecraft:recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting": {
  3177. "criteria": {
  3178. "has_end_stone": "2024-06-22 22:59:58 +0900"
  3179. },
  3180. "done": true
  3181. },
  3182. "minecraft:end/dragon_breath": {
  3183. "criteria": {
  3184. "dragon_breath": "2024-06-22 23:03:42 +0900"
  3185. },
  3186. "done": true
  3187. },
  3188. "minecraft:end/enter_end_gateway": {
  3189. "criteria": {
  3190. "entered_end_gateway": "2024-06-22 23:06:34 +0900"
  3191. },
  3192. "done": true
  3193. },
  3194. "minecraft:end/find_end_city": {
  3195. "criteria": {
  3196. "in_city": "2024-06-22 23:10:27 +0900"
  3197. },
  3198. "done": true
  3199. },
  3200. "minecraft:recipes/decorations/shulker_box": {
  3201. "criteria": {
  3202. "has_shulker_shell": "2024-06-22 23:10:30 +0900"
  3203. },
  3204. "done": true
  3205. },
  3206. "minecraft:recipes/building_blocks/purpur_slab": {
  3207. "criteria": {
  3208. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3209. },
  3210. "done": true
  3211. },
  3212. "minecraft:recipes/building_blocks/purpur_stairs": {
  3213. "criteria": {
  3214. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3215. },
  3216. "done": true
  3217. },
  3218. "minecraft:recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting": {
  3219. "criteria": {
  3220. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3221. },
  3222. "done": true
  3223. },
  3224. "minecraft:recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting": {
  3225. "criteria": {
  3226. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3227. },
  3228. "done": true
  3229. },
  3230. "minecraft:recipes/building_blocks/purpur_pillar": {
  3231. "criteria": {
  3232. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3233. },
  3234. "done": true
  3235. },
  3236. "minecraft:recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting": {
  3237. "criteria": {
  3238. "has_purpur_block": "2024-06-22 23:18:41 +0900"
  3239. },
  3240. "done": true
  3241. },
  3242. "minecraft:recipes/misc/popped_chorus_fruit": {
  3243. "criteria": {
  3244. "has_chorus_fruit": "2024-06-22 23:30:26 +0900"
  3245. },
  3246. "done": true
  3247. },
  3248. "minecraft:recipes/building_blocks/end_stone_brick_stairs_from_end_stone_brick_stonecutting": {
  3249. "criteria": {
  3250. "has_end_stone_brick": "2024-06-22 23:31:50 +0900"
  3251. },
  3252. "done": true
  3253. },
  3254. "minecraft:recipes/building_blocks/end_stone_brick_slab": {
  3255. "criteria": {
  3256. "has_end_stone_bricks": "2024-06-22 23:31:50 +0900"
  3257. },
  3258. "done": true
  3259. },
  3260. "minecraft:recipes/building_blocks/end_stone_brick_slab_from_end_stone_brick_stonecutting": {
  3261. "criteria": {
  3262. "has_end_stone_brick": "2024-06-22 23:31:50 +0900"
  3263. },
  3264. "done": true
  3265. },
  3266. "minecraft:recipes/decorations/end_stone_brick_wall_from_end_stone_brick_stonecutting": {
  3267. "criteria": {
  3268. "has_end_stone_brick": "2024-06-22 23:31:50 +0900"
  3269. },
  3270. "done": true
  3271. },
  3272. "minecraft:recipes/building_blocks/end_stone_brick_stairs": {
  3273. "criteria": {
  3274. "has_end_stone_bricks": "2024-06-22 23:31:50 +0900"
  3275. },
  3276. "done": true
  3277. },
  3278. "minecraft:recipes/decorations/end_stone_brick_wall": {
  3279. "criteria": {
  3280. "has_end_stone_bricks": "2024-06-22 23:31:50 +0900"
  3281. },
  3282. "done": true
  3283. },
  3284. "minecraft:end/elytra": {
  3285. "criteria": {
  3286. "elytra": "2024-06-23 00:47:46 +0900"
  3287. },
  3288. "done": true
  3289. },
  3290. "minecraft:recipes/misc/spire_armor_trim_smithing_template": {
  3291. "criteria": {
  3292. "has_spire_armor_trim_smithing_template": "2024-06-23 01:26:20 +0900"
  3293. },
  3294. "done": true
  3295. },
  3296. "minecraft:recipes/misc/spire_armor_trim_smithing_template_smithing_trim": {
  3297. "criteria": {
  3298. "has_smithing_trim_template": "2024-06-23 01:26:20 +0900"
  3299. },
  3300. "done": true
  3301. },
  3302. "minecraft:recipes/building_blocks/birch_planks": {
  3303. "criteria": {
  3304. "has_logs": "2024-06-23 01:48:17 +0900"
  3305. },
  3306. "done": true
  3307. },
  3308. "minecraft:recipes/building_blocks/birch_wood": {
  3309. "criteria": {
  3310. "has_log": "2024-06-23 01:48:17 +0900"
  3311. },
  3312. "done": true
  3313. },
  3314. "minecraft:recipes/redstone/birch_button": {
  3315. "criteria": {
  3316. "has_planks": "2024-06-23 01:48:19 +0900"
  3317. },
  3318. "done": true
  3319. },
  3320. "minecraft:recipes/redstone/birch_door": {
  3321. "criteria": {
  3322. "has_planks": "2024-06-23 01:48:19 +0900"
  3323. },
  3324. "done": true
  3325. },
  3326. "minecraft:recipes/decorations/birch_fence": {
  3327. "criteria": {
  3328. "has_planks": "2024-06-23 01:48:19 +0900"
  3329. },
  3330. "done": true
  3331. },
  3332. "minecraft:recipes/redstone/birch_trapdoor": {
  3333. "criteria": {
  3334. "has_planks": "2024-06-23 01:48:19 +0900"
  3335. },
  3336. "done": true
  3337. },
  3338. "minecraft:recipes/decorations/birch_sign": {
  3339. "criteria": {
  3340. "has_planks": "2024-06-23 01:48:19 +0900"
  3341. },
  3342. "done": true
  3343. },
  3344. "minecraft:recipes/redstone/birch_fence_gate": {
  3345. "criteria": {
  3346. "has_planks": "2024-06-23 01:48:19 +0900"
  3347. },
  3348. "done": true
  3349. },
  3350. "minecraft:recipes/redstone/birch_pressure_plate": {
  3351. "criteria": {
  3352. "has_planks": "2024-06-23 01:48:19 +0900"
  3353. },
  3354. "done": true
  3355. },
  3356. "minecraft:recipes/building_blocks/birch_slab": {
  3357. "criteria": {
  3358. "has_planks": "2024-06-23 01:48:19 +0900"
  3359. },
  3360. "done": true
  3361. },
  3362. "minecraft:recipes/building_blocks/birch_stairs": {
  3363. "criteria": {
  3364. "has_planks": "2024-06-23 01:48:19 +0900"
  3365. },
  3366. "done": true
  3367. },
  3368. "minecraft:recipes/misc/melon_seeds": {
  3369. "criteria": {
  3370. "has_melon": "2024-06-23 13:03:06 +0900"
  3371. },
  3372. "done": true
  3373. },
  3374. "minecraft:recipes/brewing/glistering_melon_slice": {
  3375. "criteria": {
  3376. "has_melon": "2024-06-23 13:03:06 +0900"
  3377. },
  3378. "done": true
  3379. },
  3380. "minecraft:recipes/building_blocks/melon": {
  3381. "criteria": {
  3382. "has_melon": "2024-06-23 13:03:06 +0900"
  3383. },
  3384. "done": true
  3385. },
  3386. "minecraft:recipes/misc/lapis_lazuli": {
  3387. "criteria": {
  3388. "has_lapis_block": "2024-06-23 13:05:00 +0900"
  3389. },
  3390. "done": true
  3391. },
  3392. "minecraft:recipes/misc/sugar_from_sugar_cane": {
  3393. "criteria": {
  3394. "has_sugar_cane": "2024-06-23 13:10:22 +0900"
  3395. },
  3396. "done": true
  3397. },
  3398. "minecraft:recipes/misc/paper": {
  3399. "criteria": {
  3400. "has_reeds": "2024-06-23 13:10:22 +0900"
  3401. },
  3402. "done": true
  3403. },
  3404. "minecraft:recipes/misc/book": {
  3405. "criteria": {
  3406. "has_paper": "2024-06-23 13:10:57 +0900"
  3407. },
  3408. "done": true
  3409. },
  3410. "minecraft:recipes/decorations/cartography_table": {
  3411. "criteria": {
  3412. "has_paper": "2024-06-23 13:10:57 +0900"
  3413. },
  3414. "done": true
  3415. },
  3416. "minecraft:recipes/misc/firework_rocket_simple": {
  3417. "criteria": {
  3418. "has_gunpowder": "2024-06-24 23:34:23 +0900"
  3419. },
  3420. "done": true
  3421. },
  3422. "minecraft:recipes/redstone/tnt": {
  3423. "criteria": {
  3424. "has_gunpowder": "2024-06-24 23:34:23 +0900"
  3425. },
  3426. "done": true
  3427. },
  3428. "minecraft:recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting": {
  3429. "criteria": {
  3430. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3431. },
  3432. "done": true
  3433. },
  3434. "minecraft:recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting": {
  3435. "criteria": {
  3436. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3437. },
  3438. "done": true
  3439. },
  3440. "minecraft:recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting": {
  3441. "criteria": {
  3442. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3443. },
  3444. "done": true
  3445. },
  3446. "minecraft:recipes/building_blocks/deepslate_tile_stairs": {
  3447. "criteria": {
  3448. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3449. },
  3450. "done": true
  3451. },
  3452. "minecraft:recipes/decorations/deepslate_tile_wall": {
  3453. "criteria": {
  3454. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3455. },
  3456. "done": true
  3457. },
  3458. "minecraft:recipes/building_blocks/deepslate_tile_slab": {
  3459. "criteria": {
  3460. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3461. },
  3462. "done": true
  3463. },
  3464. "minecraft:recipes/building_blocks/cracked_deepslate_tiles": {
  3465. "criteria": {
  3466. "has_deepslate_tiles": "2024-06-30 01:02:03 +0900"
  3467. },
  3468. "done": true
  3469. },
  3470. "minecraft:recipes/building_blocks/polished_diorite_slab": {
  3471. "criteria": {
  3472. "has_polished_diorite": "2024-06-30 01:03:27 +0900"
  3473. },
  3474. "done": true
  3475. },
  3476. "minecraft:recipes/building_blocks/polished_diorite_stairs": {
  3477. "criteria": {
  3478. "has_polished_diorite": "2024-06-30 01:03:27 +0900"
  3479. },
  3480. "done": true
  3481. },
  3482. "minecraft:recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting": {
  3483. "criteria": {
  3484. "has_polished_diorite": "2024-06-30 01:03:27 +0900"
  3485. },
  3486. "done": true
  3487. },
  3488. "minecraft:recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting": {
  3489. "criteria": {
  3490. "has_polished_diorite": "2024-06-30 01:03:27 +0900"
  3491. },
  3492. "done": true
  3493. },
  3494. "DataVersion": 3839
  3495. }