diff --git a/bcrmc/bcrmc.css b/bcrmc/bcrmc.css
index 977755ad..30345daa 100644
--- a/bcrmc/bcrmc.css
+++ b/bcrmc/bcrmc.css
@@ -33,29 +33,10 @@ body {
background-image: url("i/dirt_128x128_dark.png");
}
-body.bcr1 {
- background-image: var(--bcr1-bg);
-}
-
-body.bcr2 {
- background-image: var(--bcr2-bg);
-}
-
-body.bcr3 {
- background-image: var(--bcr3-bg);
-}
-
-body.bcr4 {
- background-image: var(--bcr4-bg);
-}
-
-body.bcr5 {
- background-image: var(--bcr5-bg);
-}
-
main {
background-color: rgba(0, 0, 0, 0.5);
width: 75%;
+ min-height: 100vh;
margin: 0 auto;
}
@@ -105,34 +86,148 @@ div.off {
display: none;
}
-.flexnav.gallery-files {
- width: 60%;
+@keyframes fade-out {
+ from {
+ opacity: 1;
+ }
+ to {
+ opacity: 0;
+ }
+}
+div.text-input-sub {
+ position: absolute;
+ width: -moz-max-content;
+ width: max-content;
+ background-color: white;
+ color: black;
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ font-family: "Arial", sans-serif;
+ font-size: 0.75em;
+ border: 1px solid #333;
+ box-sizing: border-box;
}
-a {
+div.text-input-sub.invalid {
+ color: red;
+ border-color: red;
+}
+
+div.search-suggestions {
+ position: absolute;
+ color: white;
+ max-height: 15em;
+ overflow-y: scroll;
+ scrollbar-width: none;
+ border: 1px solid cyan;
+ z-index: 1;
+}
+
+div.search-suggestions.fade-out {
+ animation-name: fade-out;
+ animation-duration: 0.25s;
+}
+
+div.search-suggestions::-webkit-scrollbar {
+ width: 0;
+ height: 0;
+}
+
+button.search-suggestion-entry {
+ color: white;
+ font-family: "MinecraftRegular";
+ font-size: 1.5em;
+ background-color: rgb(0, 0, 50);
+ padding: 0.5em;
+ display: block;
+ width: 100%;
+ border: none;
+ box-sizing: border-box;
+ border-bottom: 1px solid blue;
+ transition: 0.1s background-color;
+}
+
+button.search-suggestion-entry:hover {
+ background-color: navy;
color: cyan;
}
+table {
+ margin: 0 auto;
+ text-align: center;
+ border-collapse: collapse;
+}
+
+table.scoreboard {
+ font-family: "MinecraftRegular", sans-serif;
+ font-size: 20px;
+ color: white;
+ text-shadow: 2px 2px #414141;
+ min-width: 50%;
+ max-width: 75%;
+}
+
+table.scoreboard tr th, td {
+ text-align: center;
+ color: white;
+ padding: 0.5em;
+}
+
+table.scoreboard tr th {
+ border: 2px solid black;
+}
+
+table.scoreboard tr:hover td {
+ background-color: rgb(0, 0, 70);
+}
+
+table.scoreboard tr td {
+ background-color: rgb(0, 0, 50);
+ transition: 0.1s background-color;
+ border: 2px solid navy;
+ padding-right: 0.1em;
+ padding-left: 0.1em;
+}
+
+table.scoreboard tr td.adjacent {
+ background-color: rgb(0, 0, 75);
+}
+
+table.scoreboard tr td:hover {
+ background-color: rgb(0, 0, 100);
+}
+
+.flexnav.gallery-files {
+ width: 60%;
+}
+
.bttn {
font-family: "MinecraftRegular";
- text-shadow: 3px 3px rgba(0, 0, 0, 0.5);
- font-size: 1.5em;
+ font-size: 20px;
+ text-shadow: 2px 2px #414141;
margin: 0 auto;
- width: 396px;
- height: 50px;
+ width: 400px;
+ height: 40px;
+ box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
padding: 0px;
- padding-bottom: 5px;
- border-style: solid;
- border-width: 2px;
- border-color: black;
- background-image: url("i/bttn.png");
+ padding-top: 1px;
+ border: 2px solid black;
+ background-image: url("/bcrmc/i/bttn.png");
background-size: cover;
- /*transition: 0.2s all;*/
+}
+
+.bttn:hover {
+ border-color: white;
+}
+
+.bttn.disabled {
+ pointer-events: none;
+ filter: brightness(0.5);
}
.bttn.arrow {
@@ -145,16 +240,21 @@ a {
pointer-events: none;
}
+.bttn.tab.active {
+ border-color: white;
+ filter: brightness(0.5);
+}
+
nav.flexnav .bttn {
justify-content: center;
}
-.bttn:hover {
- border-color: white;
+a {
+ color: cyan;
}
a.mega {
- background-image: url("i/bttnbig.png");
+ background-image: url("/bcrmc/i/bttnbig.png");
height: 72px;
}
@@ -163,6 +263,37 @@ a.mega span {
top: 3px;
}
+input {
+ font-size: 1.5em;
+ font-family: "MinecraftRegular";
+ padding: 0.5em;
+ color: white;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+
+input.invalid {
+ border: 2px solid #ff7777;
+ color: #ff7777;
+}
+
+select.bttn {
+ font-family: "MinecraftRegular", sans-serif;
+ background-image: none;
+ background-color: rgba(0, 0, 0, 0.25);
+ width: 10em;
+ font-size: 1.5em;
+ text-align: center;
+}
+
+select.bttn > option {
+ font-size: 0.75em;
+ font-family: "MinecraftRegular", sans-serif;
+ color: white;
+ background-color: black;
+ text-shadow: none;
+ border: none;
+}
+
.hl {
color: orange;
}
@@ -209,26 +340,6 @@ h2 {
text-shadow: 5px 5px black;
}
-body.bcr1 h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr1-h2);
-}
-
-body.bcr2 h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr2-h2);
-}
-
-body.bcr3 h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr3-h2);
-}
-
-body.bcr4 h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr4-h2);
-}
-
-body.bcr5 h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr5-h2);
-}
-
h2 sup {
font-style: italic;
font-weight: lighter;
@@ -353,6 +464,31 @@ img.alone {
height: 500px;
}
+kbd {
+ font-family: "Consolas", monospace;
+ font-size: 1em;
+ background-image: linear-gradient(#333, #222);
+ padding: 5px;
+ height: 1em;
+ width: 1em;
+ display: inline-block;
+ border: 1px solid black;
+ border-radius: 5px;
+ color: yellow;
+}
+
+body.bcr1 {
+ background-image: var(--bcr1-bg);
+}
+
+body.bcr1 h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr1-h2);
+}
+
+body.bcr1 table.scoreboard th {
+ background-image: var(--bcr1-h2);
+}
+
img.bcr1-icon {
content: var(--bcr1-icon);
height: 1.5em;
@@ -361,6 +497,18 @@ img.bcr1-icon {
filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.5));
}
+body.bcr2 {
+ background-image: var(--bcr2-bg);
+}
+
+body.bcr2 h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr2-h2);
+}
+
+body.bcr2 table.scoreboard th {
+ background-image: var(--bcr2-h2);
+}
+
img.bcr2-icon {
content: var(--bcr2-icon);
height: 1.5em;
@@ -369,6 +517,18 @@ img.bcr2-icon {
filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.5));
}
+body.bcr3 {
+ background-image: var(--bcr3-bg);
+}
+
+body.bcr3 h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr3-h2);
+}
+
+body.bcr3 table.scoreboard th {
+ background-image: var(--bcr3-h2);
+}
+
img.bcr3-icon {
content: var(--bcr3-icon);
height: 1.5em;
@@ -377,6 +537,18 @@ img.bcr3-icon {
filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.5));
}
+body.bcr4 {
+ background-image: var(--bcr4-bg);
+}
+
+body.bcr4 h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr4-h2);
+}
+
+body.bcr4 table.scoreboard th {
+ background-image: var(--bcr4-h2);
+}
+
img.bcr4-icon {
content: var(--bcr4-icon);
height: 1.5em;
@@ -385,6 +557,18 @@ img.bcr4-icon {
filter: drop-shadow(2px 2px rgba(0, 0, 0, 0.5));
}
+body.bcr5 {
+ background-image: var(--bcr5-bg);
+}
+
+body.bcr5 h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr5-h2);
+}
+
+body.bcr5 table.scoreboard th {
+ background-image: var(--bcr5-h2);
+}
+
img.bcr5-icon {
content: var(--bcr5-icon);
height: 1.5em;
diff --git a/bcrmc/bcrmc.css.map b/bcrmc/bcrmc.css.map
index c5804344..4014dbc8 100644
--- a/bcrmc/bcrmc.css.map
+++ b/bcrmc/bcrmc.css.map
@@ -1 +1 @@
-{"version":3,"sources":["bcrmc.scss","bcrmc.css"],"names":[],"mappings":"AAAQ,6FAAA;AACA,gFAAA;AAER;EACI,sCAAA;EACA,yCAAA;EACA,2CAAA;EAEA,8CAAA;EACA,+CAAA;EACA,oDAAA;EAEA,sDAAA;EACA,6CAAA;EACA,8CAAA;EAEA,qDAAA;EACA,kDAAA;EACA,+CAAA;EAEA,gDAAA;EACA,6CAAA;EACA,kDAAA;ACJJ;;ADOA;EACI,+BAAA;EACA,4CAAA;ACJJ;ADOA;EAEI,SAAA;EACA,YAAA;EACA,iCAAA;EACA,oBAAA;EACA,kBAAA;EACA,cAAA;EACA,uBAAA;EACA,gDAAA;ACNJ;;ADUI;EACI,gCAAA;ACPR;;ADMI;EACI,gCAAA;ACHR;;ADEI;EACI,gCAAA;ACCR;;ADFI;EACI,gCAAA;ACKR;;ADNI;EACI,gCAAA;ACSR;;ADLA;EAEI,oCAAA;EACA,UAAA;EACA,cAAA;ACOJ;;ADJA;EAAK,UAAA;ACQL;;ADPA;EAAI,UAAA;EAAY,cAAA;EAAgB,gBAAA;ACahC;;ADZA;EAAI,iBAAA;ACgBJ;;ADfA;EAEI,0BAAA;EACA,iBAAA;EACA,sBAAA;EACA,YAAA;EAAc,aAAA;ACkBlB;;ADfA;EAEI,mBAAA;EACA,cAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;EACA,oBAAA;OAAA,eAAA;EACA,YAAA;ACiBJ;;ADdA;EACI,sBAAA;EACA,YAAA;EACA,kCAAA;EACA,iBAAA;EACA,sBAAA;EACA,kBAAA;ACiBJ;;ADdA;EACI,aAAA;ACiBJ;;ADdA;EACI,UAAA;ACiBJ;;ADdA;EAAI,WAAA;ACkBJ;;ADhBA;EAEI,+BAAA;EACA,uCAAA;EACA,gBAAA;EACA,cAAA;EACA,YAAA;EACA,YAAA;EACA,aAAA;EACA,mBAAA;EACA,uBAAA;EACA,qBAAA;EACA,YAAA;EACA,YAAA;EACA,mBAAA;EACA,mBAAA;EACA,iBAAA;EACA,mBAAA;EACA,mCAAA;EACA,sBAAA;EACA,wBAAA;ACkBJ;;ADfA;EACI,UAAA;EACA,WAAA;ACkBJ;;ADfA;EACI,UAAA;EACA,oBAAA;ACkBJ;;ADfA;EAEI,uBAAA;ACiBJ;;ADdA;EAAc,mBAAA;ACkBd;;ADjBA;EAAS,sCAAA;EAAwC,YAAA;ACsBjD;;ADrBA;EAAc,kBAAA;EAAoB,QAAA;AC0BlC;;ADxBA;EAEI,aAAA;AC0BJ;;ADvBA;EAEI,gBAAA;ACyBJ;;ADtBA;EAEI,4CAAA;EACA,gDAAA;EACA,6BAAA;UAAA,qBAAA;EACA,oCAAA;EACA,+CAAA;ACwBJ;;ADrBA;EAAK,cAAA;ACyBL;;ADvBA;;EAEI,+BAAA;EACA,aAAA;EACA,+CAAA;AC0BJ;;ADvBA;EAEI,UAAA;EACA,YAAA;EACA,cAAA;EACA,oBAAA;EACA,iBAAA;ACyBJ;;ADtBA;EAEI,cAAA;EACA,yCAAA;EACA,uGAAA;EACA,qBAAA;EACA,+BAAA;EACA,uBAAA;EACA,0BAAA;ACwBJ;;ADpBI;EACI,2FAAA;ACuBR;;ADxBI;EACI,2FAAA;AC2BR;;AD5BI;EACI,2FAAA;AC+BR;;ADhCI;EACI,2FAAA;ACmCR;;ADpCI;EACI,2FAAA;ACuCR;;ADnCA;EAAS,kBAAA;EAAoB,oBAAA;ACwC7B;;ADvCA;EAAK,iBAAA;EAAmB,cAAA;EAAgB,gBAAA;AC6CxC;;AD5CA;EAEI,gBAAA;EACA,kBAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;AC8CJ;;AD3CA;EAEI,qBAAA;EAAuB,UAAA;EAAY,SAAA;EAAW,gBAAA;EAAkB,gBAAA;EAChE,kBAAA;EAAoB,sBAAA;ACkDxB;;AD/CA;EAEI,0BAAA;EACA,kBAAA;ACiDJ;;AD9CA;EAEI,aAAA;EACA,yBAAA;KAAA,sBAAA;EACA,mBAAA;ACgDJ;;AD7CA;EAEI,aAAA;EACA,eAAA;EACA,uBAAA;AC+CJ;;AD5CA;EAA8B,aAAA;ACgD9B;;AD9CA;EAEI,oCAAA;EACA,YAAA;EACA,mBAAA;ACgDJ;;AD7CA;EAAiB,kBAAA;ACiDjB;;AD/CA;EAAK,gBAAA;EAAkB,UAAA;EAAY,gBAAA;EAAkB,cAAA;ACsDrD;;ADrDA;EAAS,UAAA;ACyDT;;ADxDA;EAEI,gBAAA;EACA,mBAAA;EACA,cAAA;EACA,gBAAA;EACA,gBAAA;EACA,wCAAA;EACA,kCAAA;UAAA,0BAAA;EACA,uBAAA;EACA,qHAAA;EACA,+BAAA;AC0DJ;;ADvDA;EAEI,oBAAA;EACA,iBAAA;EACA,0BAAA;ACyDJ;;ADtDA;EAEI,6BAAA;EACA,yCAAA;EACA,qBAAA;EACA,cAAA;EACA,iBAAA;ACwDJ;;ADrDA;EAEI,yCAAA;EACA,mBAAA;EAAqB,kBAAA;EACrB,6BAAA;ACwDJ;;ADrDA;EAEI,kBAAA;EACA,kBAAA;EACA,mBAAA;EACA,WAAA;EACA,UAAA;ACuDJ;;ADpDA;EAEI,UAAA;ACsDJ;;ADnDA;EAAY,WAAA;EAAa,aAAA;ACwDzB;;ADrDI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACwDR;;AD7DI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACgER;;ADrEI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACwER;;AD7EI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACgFR;;ADrFI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACwFR;;ADpFA;EAEA,yBAAA;EACI;IAAM,WAAA;ECuFR;EDtFE;IAAQ,WAAA;IAAa,iBAAA;EC0FvB;EDzFE;IAAO,YAAA;IAAc,UAAA;EC6FvB;ED5FE;IAAI,WAAA;IAAa,eAAA;ECgGnB;ED/FE;IAAO,iBAAA;ECkGT;EDjGE;IAAO,iBAAA;ECoGT;EDnGE;IAAQ,WAAA;ECsGV;EDrGE;IAAW,WAAA;IAAa,YAAA;ECyG1B;EDxGE;IAAY,aAAA;EC2Gd;AACF","file":"bcrmc.css"}
\ No newline at end of file
+{"version":3,"sources":["bcrmc.scss","bcrmc.css"],"names":[],"mappings":"AAAQ,6FAAA;AACA,gFAAA;AAER;EACI,sCAAA;EACA,yCAAA;EACA,2CAAA;EAEA,8CAAA;EACA,+CAAA;EACA,oDAAA;EAEA,sDAAA;EACA,6CAAA;EACA,8CAAA;EAEA,qDAAA;EACA,kDAAA;EACA,+CAAA;EAEA,gDAAA;EACA,6CAAA;EACA,kDAAA;ACJJ;;ADOA;EACI,+BAAA;EACA,4CAAA;ACJJ;ADOA;EAEI,SAAA;EACA,YAAA;EACA,iCAAA;EACA,oBAAA;EACA,kBAAA;EACA,cAAA;EACA,uBAAA;EACA,gDAAA;ACNJ;;ADSA;EAEI,oCAAA;EACA,UAAA;EACA,iBAAA;EACA,cAAA;ACPJ;;ADUA;EAAK,UAAA;ACNL;;ADQA;EAAI,UAAA;EAAY,cAAA;EAAgB,gBAAA;ACFhC;;ADIA;EAAI,iBAAA;ACAJ;;ADEA;EAEI,0BAAA;EACA,iBAAA;EACA,sBAAA;EACA,YAAA;EAAc,aAAA;ACClB;;ADEA;EAEI,mBAAA;EACA,cAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;EACA,oBAAA;OAAA,eAAA;EACA,YAAA;ACAJ;;ADGA;EACI,aAAA;ACAJ;;ADGA;EACI;IAAO,UAAA;ECCT;EDAE;IAAK,UAAA;ECGP;AACF;ADDA;EACI,kBAAA;EACA,uBAAA;EAAA,kBAAA;EACA,uBAAA;EACA,YAAA;EACA,mBAAA;EACA,sBAAA;EACA,gCAAA;EACA,iBAAA;EACA,sBAAA;EACA,sBAAA;ACGJ;;ADAA;EACI,UAAA;EACA,iBAAA;ACGJ;;ADAA;EACI,kBAAA;EACA,YAAA;EACA,gBAAA;EACA,kBAAA;EACA,qBAAA;EACA,sBAAA;EACA,UAAA;ACGJ;;ADAA;EACI,wBAAA;EACA,yBAAA;ACGJ;;ADAA;EACI,QAAA;EACA,SAAA;ACGJ;;ADAA;EACI,YAAA;EACA,+BAAA;EACA,gBAAA;EACA,+BAAA;EACA,cAAA;EACA,cAAA;EACA,WAAA;EACA,YAAA;EACA,sBAAA;EACA,6BAAA;EACA,iCAAA;ACGJ;;ADAA;EACI,sBAAA;EACA,WAAA;ACGJ;;ADAA;EACI,cAAA;EACA,kBAAA;EACA,yBAAA;ACGJ;;ADAA;EACI,2CAAA;EACA,eAAA;EACA,YAAA;EACA,4BAAA;EACA,cAAA;EACA,cAAA;ACGJ;;ADAA;EACI,kBAAA;EACA,YAAA;EACA,cAAA;ACGJ;;ADAA;EACI,uBAAA;ACGJ;;ADCA;EACI,+BAAA;ACEJ;;ADCA;EACI,+BAAA;EACA,iCAAA;EACA,sBAAA;EACA,oBAAA;EACA,mBAAA;ACEJ;;ADCA;EACI,+BAAA;ACEJ;;ADCA;EACI,gCAAA;ACEJ;;ADCA;EACI,UAAA;ACEJ;;ADCA;EAEI,+BAAA;EACA,eAAA;EACA,4BAAA;EACA,cAAA;EACA,YAAA;EACA,YAAA;EACA,sBAAA;EACA,aAAA;EACA,mBAAA;EACA,uBAAA;EACA,qBAAA;EACA,YAAA;EACA,YAAA;EACA,gBAAA;EACA,uBAAA;EACA,0CAAA;EACA,sBAAA;ACCJ;;ADEA;EAAc,mBAAA;ACEd;;ADAA;EACI,oBAAA;EACA,uBAAA;ACGJ;;ADAA;EACI,UAAA;EACA,WAAA;ACGJ;;ADAA;EACI,UAAA;EACA,oBAAA;ACGJ;;ADAA;EACI,mBAAA;EACA,uBAAA;ACGJ;;ADCA;EACI,uBAAA;ACEJ;;ADCA;EAAI,WAAA;ACGJ;;ADFA;EAAS,6CAAA;EAA+C,YAAA;ACOxD;;ADNA;EAAc,kBAAA;EAAoB,QAAA;ACWlC;;ADTA;EACI,gBAAA;EACA,+BAAA;EACA,cAAA;EACA,YAAA;EACA,oCAAA;ACYJ;;ADTA;EACI,yBAAA;EACA,cAAA;ACYJ;;ADTA;EACI,2CAAA;EACA,sBAAA;EACA,qCAAA;EACA,WAAA;EACA,gBAAA;EACA,kBAAA;ACYJ;;ADTA;EACI,iBAAA;EACA,2CAAA;EACA,YAAA;EACA,uBAAA;EACA,iBAAA;EACA,YAAA;ACYJ;;ADTA;EAEI,aAAA;ACWJ;;ADRA;EAEI,gBAAA;ACUJ;;ADPA;EAEI,4CAAA;EACA,gDAAA;EACA,6BAAA;UAAA,qBAAA;EACA,oCAAA;EACA,+CAAA;ACSJ;;ADNA;EAAK,cAAA;ACUL;;ADRA;;EAEI,+BAAA;EACA,aAAA;EACA,+CAAA;ACWJ;;ADRA;EAEI,UAAA;EACA,YAAA;EACA,cAAA;EACA,oBAAA;EACA,iBAAA;ACUJ;;ADPA;EAEI,cAAA;EACA,yCAAA;EACA,uGAAA;EACA,qBAAA;EACA,+BAAA;EACA,uBAAA;EACA,0BAAA;ACSJ;;ADNA;EAAS,kBAAA;EAAoB,oBAAA;ACW7B;;ADVA;EAAK,iBAAA;EAAmB,cAAA;EAAgB,gBAAA;ACgBxC;;ADfA;EAEI,gBAAA;EACA,kBAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;ACiBJ;;ADdA;EAEI,qBAAA;EAAuB,UAAA;EAAY,SAAA;EAAW,gBAAA;EAAkB,gBAAA;EAChE,kBAAA;EAAoB,sBAAA;ACqBxB;;ADlBA;EAEI,0BAAA;EACA,kBAAA;ACoBJ;;ADjBA;EAEI,aAAA;EACA,yBAAA;KAAA,sBAAA;EACA,mBAAA;ACmBJ;;ADhBA;EAEI,aAAA;EACA,eAAA;EACA,uBAAA;ACkBJ;;ADfA;EAA8B,aAAA;ACmB9B;;ADjBA;EAEI,oCAAA;EACA,YAAA;EACA,mBAAA;ACmBJ;;ADhBA;EAAiB,kBAAA;ACoBjB;;ADlBA;EAAK,gBAAA;EAAkB,UAAA;EAAY,gBAAA;EAAkB,cAAA;ACyBrD;;ADxBA;EAAS,UAAA;AC4BT;;AD3BA;EAEI,gBAAA;EACA,mBAAA;EACA,cAAA;EACA,gBAAA;EACA,gBAAA;EACA,wCAAA;EACA,kCAAA;UAAA,0BAAA;EACA,uBAAA;EACA,qHAAA;EACA,+BAAA;AC6BJ;;AD1BA;EAEI,oBAAA;EACA,iBAAA;EACA,0BAAA;AC4BJ;;ADzBA;EAEI,6BAAA;EACA,yCAAA;EACA,qBAAA;EACA,cAAA;EACA,iBAAA;AC2BJ;;ADxBA;EAEI,yCAAA;EACA,mBAAA;EAAqB,kBAAA;EACrB,6BAAA;AC2BJ;;ADxBA;EAEI,kBAAA;EACA,kBAAA;EACA,mBAAA;EACA,WAAA;EACA,UAAA;AC0BJ;;ADvBA;EAEI,UAAA;ACyBJ;;ADtBA;EAAY,WAAA;EAAa,aAAA;AC2BzB;;ADzBA;EACI,kCAAA;EACA,cAAA;EACA,6CAAA;EACA,YAAA;EACA,WAAA;EACA,UAAA;EACA,qBAAA;EACA,uBAAA;EACA,kBAAA;EACA,aAAA;AC4BJ;;ADtBI;EACI,gCAAA;ACyBR;;ADtBI;EACI,2FAAA;ACyBR;;ADtBI;EACI,gCAAA;ACyBR;;ADtBI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACyBR;;AD1CI;EACI,gCAAA;AC6CR;;AD1CI;EACI,2FAAA;AC6CR;;AD1CI;EACI,gCAAA;AC6CR;;AD1CI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;AC6CR;;AD9DI;EACI,gCAAA;ACiER;;AD9DI;EACI,2FAAA;ACiER;;AD9DI;EACI,gCAAA;ACiER;;AD9DI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACiER;;ADlFI;EACI,gCAAA;ACqFR;;ADlFI;EACI,2FAAA;ACqFR;;ADlFI;EACI,gCAAA;ACqFR;;ADlFI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACqFR;;ADtGI;EACI,gCAAA;ACyGR;;ADtGI;EACI,2FAAA;ACyGR;;ADtGI;EACI,gCAAA;ACyGR;;ADtGI;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,+CAAA;ACyGR;;ADnGA;EAEA,yBAAA;EACI;IAAM,WAAA;ECsGR;EDrGE;IAAQ,WAAA;IAAa,iBAAA;ECyGvB;EDxGE;IAAO,YAAA;IAAc,UAAA;EC4GvB;ED3GE;IAAI,WAAA;IAAa,eAAA;EC+GnB;ED9GE;IAAO,iBAAA;ECiHT;EDhHE;IAAO,iBAAA;ECmHT;EDlHE;IAAQ,WAAA;ECqHV;EDpHE;IAAW,WAAA;IAAa,YAAA;ECwH1B;EDvHE;IAAY,aAAA;EC0Hd;AACF","file":"bcrmc.css"}
\ No newline at end of file
diff --git a/bcrmc/bcrmc.scss b/bcrmc/bcrmc.scss
index f0def95d..ebcf2e3b 100644
--- a/bcrmc/bcrmc.scss
+++ b/bcrmc/bcrmc.scss
@@ -40,22 +40,20 @@ body
background-image: url('i/dirt_128x128_dark.png');
}
-@for $i from 1 through 5 {
- body.bcr#{$i} {
- background-image: var(--bcr#{$i}-bg);
- }
-}
-
main
{
background-color: rgba(0, 0, 0, 0.5);
width: 75%;
+ min-height: 100vh;
margin: 0 auto;
}
hr { width: 75%; }
+
p { width: 75%; margin: 0 auto; font-size: 1.5em; }
+
b { font-weight: bold; }
+
code
{
font-family: "Courier New";
@@ -88,33 +86,144 @@ div.off {
display: none;
}
+@keyframes fade-out {
+ from { opacity: 1; }
+ to { opacity: 0; }
+}
+
+div.text-input-sub {
+ position: absolute;
+ width: max-content;
+ background-color: white;
+ color: black;
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ font-family: 'Arial', sans-serif;
+ font-size: 0.75em;
+ border: 1px solid #333;
+ box-sizing: border-box;
+}
+
+div.text-input-sub.invalid {
+ color: red;
+ border-color: red;
+}
+
+div.search-suggestions {
+ position: absolute;
+ color: white;
+ max-height: 15em;
+ overflow-y: scroll;
+ scrollbar-width: none;
+ border: 1px solid cyan;
+ z-index: 1;
+}
+
+div.search-suggestions.fade-out {
+ animation-name: fade-out;
+ animation-duration: 0.25s;
+}
+
+div.search-suggestions::-webkit-scrollbar {
+ width: 0;
+ height: 0;
+}
+
+button.search-suggestion-entry {
+ color: white;
+ font-family: 'MinecraftRegular';
+ font-size: 1.5em;
+ background-color: rgb(0, 0, 50);
+ padding: 0.5em;
+ display: block;
+ width: 100%;
+ border: none;
+ box-sizing: border-box;
+ border-bottom: 1px solid blue;
+ transition: 0.1s background-color;
+}
+
+button.search-suggestion-entry:hover {
+ background-color: navy;
+ color: cyan;
+}
+
+table {
+ margin: 0 auto;
+ text-align: center;
+ border-collapse: collapse;
+}
+
+table.scoreboard {
+ font-family: 'MinecraftRegular', sans-serif;
+ font-size: 20px;
+ color: white;
+ text-shadow: 2px 2px #414141;
+ min-width: 50%;
+ max-width: 75%;
+}
+
+table.scoreboard tr th, td {
+ text-align: center;
+ color: white;
+ padding: 0.5em;
+}
+
+table.scoreboard tr th {
+ border: 2px solid black;
+ // border-bottom: 0;
+}
+
+table.scoreboard tr:hover td {
+ background-color: rgb(0, 0, 70);
+}
+
+table.scoreboard tr td {
+ background-color: rgb(0, 0, 50);
+ transition: 0.1s background-color;
+ border: 2px solid navy;
+ padding-right: 0.1em;
+ padding-left: 0.1em;
+}
+
+table.scoreboard tr td.adjacent {
+ background-color: rgb(0, 0, 75);
+}
+
+table.scoreboard tr td:hover {
+ background-color: rgb(0, 0, 100);
+}
+
.flexnav.gallery-files {
width: 60%;
}
-a { color: cyan; }
-
.bttn
{
font-family: 'MinecraftRegular';
- text-shadow: 3px 3px rgba(0,0,0,0.5);
- font-size: 1.5em;
+ font-size: 20px;
+ text-shadow: 2px 2px #414141;
margin: 0 auto;
- width: 396px;
- height: 50px;
+ width: 400px;
+ height: 40px;
+ box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: white;
padding: 0px;
- padding-bottom: 5px;
- border-style: solid;
- border-width: 2px;
- border-color: black;
- background-image: url('i/bttn.png');
+ padding-top: 1px;
+ border: 2px solid black;
+ background-image: url('/bcrmc/i/bttn.png');
background-size: cover;
- /*transition: 0.2s all;*/
+}
+
+.bttn:hover { border-color: white; }
+
+.bttn.disabled {
+ pointer-events: none;
+ filter: brightness(0.5);
}
.bttn.arrow {
@@ -127,15 +236,51 @@ a { color: cyan; }
pointer-events: none;
}
-nav.flexnav .bttn
-{
+.bttn.tab.active {
+ border-color: white;
+ filter: brightness(0.5);
+}
+
+
+nav.flexnav .bttn {
justify-content: center;
}
-.bttn:hover { border-color: white; }
-a.mega { background-image: url('i/bttnbig.png'); height: 72px; }
+a { color: cyan; }
+a.mega { background-image: url('/bcrmc/i/bttnbig.png'); height: 72px; }
a.mega span { position: relative; top: 3px; }
+input {
+ font-size: 1.5em;
+ font-family: 'MinecraftRegular';
+ padding: 0.5em;
+ color: white;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+
+input.invalid {
+ border: 2px solid #ff7777;
+ color: #ff7777;
+}
+
+select.bttn {
+ font-family: 'MinecraftRegular', sans-serif;
+ background-image: none;
+ background-color: rgba(0, 0, 0, 0.25);
+ width: 10em;
+ font-size: 1.5em;
+ text-align: center;
+}
+
+select.bttn > option {
+ font-size: 0.75em;
+ font-family: 'MinecraftRegular', sans-serif;
+ color: white;
+ background-color: black;
+ text-shadow: none;
+ border: none;
+}
+
.hl /* hl for "highlight" */
{
color: orange;
@@ -184,12 +329,6 @@ h2
text-shadow: 5px 5px black;
}
-@for $i from 1 through 5 {
- body.bcr#{$i} h2 {
- background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr#{$i}-h2);
- }
-}
-
h2 sup { font-style: italic; font-weight: lighter; }
h3 { font-weight: bold; font-size: 2em; text-align: left; }
h3.subtitle
@@ -293,7 +432,34 @@ h2:hover img.linker
img.alone { width: auto; height: 500px; }
+kbd {
+ font-family: 'Consolas', monospace;
+ font-size: 1em;
+ background-image: linear-gradient(#333, #222);
+ padding: 5px;
+ height: 1em;
+ width: 1em;
+ display: inline-block;
+ border: 1px solid black;
+ border-radius: 5px;
+ color: yellow;
+}
+
+// AUTOMATIONS
+
@for $i from 1 through 5 {
+ body.bcr#{$i} {
+ background-image: var(--bcr#{$i}-bg);
+ }
+
+ body.bcr#{$i} h2 {
+ background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), var(--bcr#{$i}-h2);
+ }
+
+ body.bcr#{$i} table.scoreboard th {
+ background-image: var(--bcr#{$i}-h2);
+ }
+
img.bcr#{$i}-icon {
content: var(--bcr#{$i}-icon);
height: 1.5em;
@@ -303,6 +469,8 @@ img.alone { width: auto; height: 500px; }
}
}
+// MOBILE
+
@media only screen and (max-device-width:600px)
{
/* body {font-size:2em;}*/
diff --git a/bcrmc/footer.js b/bcrmc/footer.js
new file mode 100644
index 00000000..9f8f50a7
--- /dev/null
+++ b/bcrmc/footer.js
@@ -0,0 +1,3 @@
+import { $ } from "./utils.js";
+const FOOTER = $('footer');
+const CONTENT = FOOTER.appendChild(document.createElement('div'));
diff --git a/bcrmc/footer.ts b/bcrmc/footer.ts
new file mode 100644
index 00000000..99ff55f7
--- /dev/null
+++ b/bcrmc/footer.ts
@@ -0,0 +1,5 @@
+import { $ } from "./utils.js";
+
+const FOOTER: HTMLElement = $('footer');
+
+const CONTENT: HTMLDivElement = FOOTER.appendChild(document.createElement('div'));
\ No newline at end of file
diff --git a/bcrmc/gallery.js b/bcrmc/gallery.js
index 3a76b27e..73405cf2 100644
--- a/bcrmc/gallery.js
+++ b/bcrmc/gallery.js
@@ -7,41 +7,25 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
-var __generator = (this && this.__generator) || function (thisArg, body) {
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
- function verb(n) { return function (v) { return step([n, v]); }; }
- function step(op) {
- if (f) throw new TypeError("Generator is already executing.");
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
- if (y = 0, t) op = [op[0] & 2, t.value];
- switch (op[0]) {
- case 0: case 1: t = op; break;
- case 4: _.label++; return { value: op[1], done: false };
- case 5: _.label++; y = op[1]; op = [0]; continue;
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
- default:
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
- if (t[2]) _.ops.pop();
- _.trys.pop(); continue;
- }
- op = body.call(thisArg, _);
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
- }
-};
import { extract_number, json } from './utils.js';
(function () {
- return __awaiter(this, void 0, void 0, function () {
+ return __awaiter(this, void 0, void 0, function* () {
+ const LATEST_SERVER = 5;
+ // Concatenation for readability, mainly
+ const FIGURE_TEMPLATE = `` +
+ `%TITLE% %%HAS_PNG[PNG] HAS_PNG%%` +
+ `(from %AUTHOR%) `;
+ const PHOTO_AUTHORS = {
+ "desu": "Desu",
+ "mar": "Mar",
+ "vi": "Violet"
+ };
+ const PHOTO_TITLES = yield json('/bcrmc/photo_titles.json');
function author_from_filename(filename) {
return PHOTO_AUTHORS[filename.split('-')[0]];
}
function create_figure(image_filename, image_title, server_season, has_png) {
- var figure_string = FIGURE_TEMPLATE
+ let figure_string = FIGURE_TEMPLATE
.replace(/%IMAGE%/g, image_filename)
.replace(/%TITLE%/g, image_title)
.replace(/%SEASON%/g, server_season)
@@ -50,31 +34,30 @@ import { extract_number, json } from './utils.js';
return figure_string;
}
function build_gallery(server_season) {
- var gallery_container = document.querySelector('div#gallery-collection');
- var new_gallery = document.createElement('div');
+ let gallery_container = document.querySelector('div#gallery-collection');
+ let new_gallery = document.createElement('div');
new_gallery.classList.add('gallery', 'smaller');
new_gallery.setAttribute('name', server_season);
// Run through images
- for (var _i = 0, _a = Object.entries(PHOTO_TITLES[server_season]); _i < _a.length; _i++) {
- var _b = _a[_i], filename = _b[0], attrs = _b[1];
- var new_figure = create_figure(filename, attrs.title, server_season, attrs.has_png);
+ for (const [filename, attrs] of Object.entries(PHOTO_TITLES[server_season])) {
+ let new_figure = create_figure(filename, attrs.title, server_season, attrs.has_png);
new_gallery.innerHTML += new_figure;
}
// Add it
gallery_container.appendChild(new_gallery);
}
function add_gallery_nav_arrows() {
- var gallery_titles = document.querySelectorAll('div.gallery-title');
- gallery_titles.forEach(function (title) {
- var current_page_name = title.getAttribute('name');
- var current_page_number = extract_number(current_page_name);
- var left_arrow = document.createElement('button');
+ let gallery_titles = document.querySelectorAll('div.gallery-title');
+ gallery_titles.forEach(title => {
+ let current_page_name = title.getAttribute('name');
+ let current_page_number = extract_number(current_page_name);
+ let left_arrow = document.createElement('button');
left_arrow.classList.add('bttn', 'arrow');
- left_arrow.addEventListener('click', function () { switch_gallery("bcr".concat(current_page_number - 1)); });
+ left_arrow.addEventListener('click', () => { switch_gallery(`bcr${current_page_number - 1}`); });
left_arrow.innerHTML = '<';
- var right_arrow = document.createElement('button');
+ let right_arrow = document.createElement('button');
right_arrow.classList.add('bttn', 'arrow');
- right_arrow.addEventListener('click', function () { switch_gallery("bcr".concat(current_page_number + 1)); });
+ right_arrow.addEventListener('click', () => { switch_gallery(`bcr${current_page_number + 1}`); });
right_arrow.innerHTML = '>';
title.insertBefore(left_arrow, title.querySelector('h2'));
if (current_page_number == 1) {
@@ -88,65 +71,47 @@ import { extract_number, json } from './utils.js';
}
function update_heading_anchors(server_season) {
console.log(server_season);
- var heading_anchors = document.querySelectorAll('a.heading-link');
- heading_anchors.forEach(function (a) {
+ let heading_anchors = document.querySelectorAll('a.heading-link');
+ heading_anchors.forEach(a => {
console.log(a.href);
if (a.href.includes('?s=bcr')) {
console.log('replacing', a.href);
- console.log("?s=".concat(server_season));
- a.href = a.href.replace(/\?s=bcr\d+/, "?s=".concat(server_season));
+ console.log(`?s=${server_season}`);
+ a.href = a.href.replace(/\?s=bcr\d+/, `?s=${server_season}`);
console.log(a.href);
}
else {
- var root = a.href.split('#')[0];
- var stem = a.href.split('#')[0];
+ let root = a.href.split('#')[0];
+ let stem = a.href.split('#')[0];
console.log(root, stem);
- a.href = root + "?s=".concat(server_season, "#") + stem;
+ a.href = root + `?s=${server_season}#` + stem;
console.log('new', a.href);
}
});
}
function switch_gallery(server_season) {
// Swap page theme
- var body = document.querySelector('body');
+ let body = document.querySelector('body');
body.classList.remove(body.classList.toString());
body.classList.add(server_season);
// Make the gallery, if it doesn't exist
- if (!document.querySelector("div.gallery[name=\"".concat(server_season, "\"]"))) {
+ if (!document.querySelector(`div.gallery[name="${server_season}"]`)) {
build_gallery(server_season);
}
// Change out stuff depending on the relevant server season
- ['div.gallery-title', 'div.gallery-maps', 'div.gallery-files', 'div.gallery'].forEach(function (selector) {
- var divs = document.querySelectorAll(selector);
- divs.forEach(function (div) {
+ ['div.gallery-title', 'div.gallery-maps', 'div.gallery-files', 'div.gallery'].forEach(selector => {
+ let divs = document.querySelectorAll(selector);
+ divs.forEach(div => {
div.classList.add('off');
});
});
- document.querySelectorAll("div[name=\"".concat(server_season, "\"]")).forEach(function (div) { div.classList.remove('off'); });
+ document.querySelectorAll(`div[name="${server_season}"]`).forEach(div => { div.classList.remove('off'); });
update_heading_anchors(server_season);
}
- var LATEST_SERVER, FIGURE_TEMPLATE, PHOTO_AUTHORS, PHOTO_TITLES, params, initial_season;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0:
- LATEST_SERVER = 5;
- FIGURE_TEMPLATE = "" +
- "%TITLE% %%HAS_PNG[PNG] HAS_PNG%%" +
- "(from %AUTHOR%) ";
- PHOTO_AUTHORS = {
- "desu": "Desu",
- "mar": "Mar",
- "vi": "Violet"
- };
- return [4 /*yield*/, json('/bcrmc/photo_titles.json')];
- case 1:
- PHOTO_TITLES = _a.sent();
- params = new URLSearchParams(window.location.search);
- initial_season = params.get('s') || "bcr".concat(LATEST_SERVER);
- add_gallery_nav_arrows();
- switch_gallery(initial_season);
- return [2 /*return*/];
- }
- });
+ // Main
+ let params = new URLSearchParams(window.location.search);
+ let initial_season = params.get('s') || `bcr${LATEST_SERVER}`;
+ add_gallery_nav_arrows();
+ switch_gallery(initial_season);
});
})();
diff --git a/bcrmc/gallery.ts b/bcrmc/gallery.ts
index 9c6a4cc0..6e2b9472 100644
--- a/bcrmc/gallery.ts
+++ b/bcrmc/gallery.ts
@@ -1,4 +1,4 @@
-import {extract_number, json} from './utils.js';
+import { extract_number, json } from './utils.js';
(async function () {
@@ -15,7 +15,7 @@ const PHOTO_AUTHORS: { [key: string]: string } = {
"vi": "Violet"
}
-let PHOTO_TITLES: { [key: string]: object } = await json('/bcrmc/photo_titles.json');
+const PHOTO_TITLES: { [key: string]: object } = await json('/bcrmc/photo_titles.json');
function author_from_filename(filename: string): string {
return PHOTO_AUTHORS[filename.split('-')[0]];
diff --git a/bcrmc/header.js b/bcrmc/header.js
index 11c3e572..f474c0e1 100644
--- a/bcrmc/header.js
+++ b/bcrmc/header.js
@@ -1,18 +1,9 @@
-function add_icon(header) {
- header.innerHTML += " ";
-}
function add_viewport_meta(header) {
- header.innerHTML += " ";
+ header.innerHTML += ` `;
}
function add_missing_header_data() {
- var header = document.getElementsByTagName("head")[0];
- console.log(header);
- if (!header.innerHTML.includes("href=\"favicon.ico\"")) {
- console.log("Adding icon");
- add_icon(header);
- }
- if (!header.innerHTML.includes("meta name=\"viewport\"")) {
- console.log("Adding viewport");
+ let header = document.getElementsByTagName("head")[0];
+ if (!header.innerHTML.includes(`meta name="viewport"`)) {
add_viewport_meta(header);
}
}
diff --git a/bcrmc/header.ts b/bcrmc/header.ts
index 64960a67..34f36286 100644
--- a/bcrmc/header.ts
+++ b/bcrmc/header.ts
@@ -1,21 +1,10 @@
-function add_icon(header: HTMLHeadElement): void {
- header.innerHTML += ` `;
-}
-
function add_viewport_meta(header: HTMLHeadElement): void {
header.innerHTML += ` `;
}
function add_missing_header_data(): void {
let header: HTMLHeadElement = document.getElementsByTagName("head")[0];
- console.log(header);
- if (!header.innerHTML.includes(`href="favicon.ico"`)) {
- console.log("Adding icon");
- add_icon(header);
- }
-
if (!header.innerHTML.includes(`meta name="viewport"`)) {
- console.log("Adding viewport");
add_viewport_meta(header);
}
}
diff --git a/bcrmc/info.html b/bcrmc/info.html
index a28700d9..467ae365 100644
--- a/bcrmc/info.html
+++ b/bcrmc/info.html
@@ -19,8 +19,14 @@
- The server is now closed; view the gallery and our final map here . Until next year!
+ The server is now closed, thanks to all who joined! Until next year!
+
+
+
@@ -28,14 +34,16 @@
- Table Of Contents
-
+ Table Of Contents
+
+
Joining The Server
Active Datapacks
Active Plugins
Recommended Mods
Other Useful Things
-
+
+
Joining The Server
Make sure you are on 1.20.2 . You can play with both vanilla & modded clients, but only client-side mods will load . Server-side mods will simply be ignored.
diff --git a/bcrmc/scoreboard/index.html b/bcrmc/scoreboard/index.html
new file mode 100644
index 00000000..7e516a7b
--- /dev/null
+++ b/bcrmc/scoreboard/index.html
@@ -0,0 +1,100 @@
+
+
+
+
+ BCR-MC 5 — Scoreboard Viewer
+
+
+
+
+
+
+ Home
+ Past Servers
+ Live Server Map
+
+
+
+
+
+ BCR-MC 5 — 1.20: Trails & Tales
+
+ Post-Server Scoreboard Viewer
+
+
+
+
+ Statistics
+
+
+
+
+
+ Blocks, Items, Mobs...
+ Other...
+
+
+
+
+
Using an asterisk * instead of a player name will get scores for all players; likewise for the items search box.
+ You can also use an asterisk as a wildcard for the item search.
+
+
+
+
Search
+
+
+
+
+
+
+
Nothing searched yet.
+
Save as Spreadsheet (CSV)
+
Click a column header to sort the table.
+
+
+
+ Player
+ Objective
+ Score
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bcrmc/stats/bcr5/roundup-half.html b/bcrmc/scoreboard/roundup-half.html
similarity index 59%
rename from bcrmc/stats/bcr5/roundup-half.html
rename to bcrmc/scoreboard/roundup-half.html
index f9f375a5..a16fd2e5 100644
--- a/bcrmc/stats/bcr5/roundup-half.html
+++ b/bcrmc/scoreboard/roundup-half.html
@@ -17,21 +17,7 @@
BCR-MC 5: Mid-point Stat Roundup(Scoreboard data from December 27th)
Player
-
- All players
- Andre759
- TheDesuComplex
- svioletg
- splashmob
- leggory
- Shotoria_
- The_Doctor_EV
- SailorJaden
- .GorgonX32
- ThatLeona
- ellliebutton
- WaveringLibi
-
+
Scoreboard Objective
Generic
diff --git a/bcrmc/stats/bcr5/scoreboard-bcr5-dec27.json b/bcrmc/scoreboard/scoreboard-json/scoreboard-bcr5-dec27.json
similarity index 100%
rename from bcrmc/stats/bcr5/scoreboard-bcr5-dec27.json
rename to bcrmc/scoreboard/scoreboard-json/scoreboard-bcr5-dec27.json
diff --git a/bcrmc/scoreboard/scoreboard-json/scoreboard-bcr5-feb01.json b/bcrmc/scoreboard/scoreboard-json/scoreboard-bcr5-feb01.json
new file mode 100644
index 00000000..298f8c85
--- /dev/null
+++ b/bcrmc/scoreboard/scoreboard-json/scoreboard-bcr5-feb01.json
@@ -0,0 +1 @@
+{"Teams": {"name_colors.aqua": {"DeathMessageVisibility": "always", "TeamColor": "aqua", "SeeFriendlyInvisibles": 1, "CollisionRule": "always", "AllowFriendlyFire": 1, "MemberNamePrefix": "{\"text\":\"\"}", "NameTagVisibility": "always", "MemberNameSuffix": "{\"text\":\"\"}", "Players": ["splashmob"], "DisplayName": {"json_dict": {"text": "Aqua"}, "json_string": "{\"text\":\"Aqua\"}"}}, "name_colors.gold": {"DeathMessageVisibility": "always", "TeamColor": "gold", "SeeFriendlyInvisibles": 1, "CollisionRule": "always", "AllowFriendlyFire": 1, "MemberNamePrefix": "{\"text\":\"\"}", "NameTagVisibility": "always", "MemberNameSuffix": "{\"text\":\"\"}", "Players": ["leggory"], "DisplayName": {"json_dict": {"text": "Gold"}, "json_string": "{\"text\":\"Gold\"}"}}, "name_colors.dark_purple": {"DeathMessageVisibility": "always", "TeamColor": "dark_purple", "SeeFriendlyInvisibles": 1, "CollisionRule": "always", "AllowFriendlyFire": 1, "MemberNamePrefix": "{\"text\":\"\"}", "NameTagVisibility": "always", "MemberNameSuffix": "{\"text\":\"\"}", "Players": ["svioletg"], "DisplayName": {"json_dict": {"text": "Dark Purple"}, "json_string": "{\"text\":\"Dark Purple\"}"}}}, "Objectives": {"c.yellowDye": {"CriteriaName": "minecraft.crafted:minecraft.yellow_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Dye Crafted"}, "json_string": "{\"text\":\"Yellow Dye Crafted\"}"}}, "p.powderSnowBucket": {"CriteriaName": "minecraft.picked_up:minecraft.powder_snow_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Bucket Picked Up"}, "json_string": "{\"text\":\"Powder Snow Bucket Picked Up\"}"}}, "c.limeCarpet": {"CriteriaName": "minecraft.crafted:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Crafted"}, "json_string": "{\"text\":\"Lime Carpet Crafted\"}"}}, "p.salmon": {"CriteriaName": "minecraft.picked_up:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Picked Up"}, "json_string": "{\"text\":\"Salmon Picked Up\"}"}}, "u.smithingTable": {"CriteriaName": "minecraft.used:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Used"}, "json_string": "{\"text\":\"Smithing Table Used\"}"}}, "b.whiteCandle": {"CriteriaName": "minecraft.broken:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Broken"}, "json_string": "{\"text\":\"White Candle Broken\"}"}}, "u.oxidizedCutCopper": {"CriteriaName": "minecraft.used:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Used"}, "json_string": "{\"text\":\"Oxidized Cut Copper Used\"}"}}, "b.bricks": {"CriteriaName": "minecraft.broken:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Broken"}, "json_string": "{\"text\":\"Bricks Broken\"}"}}, "b.smoothQuartzStairs": {"CriteriaName": "minecraft.broken:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Broken"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Broken\"}"}}, "u.magentaStainedGlass": {"CriteriaName": "minecraft.used:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Used"}, "json_string": "{\"text\":\"Magenta Stained Glass Used\"}"}}, "c.turtleSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.turtle_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Spawn Egg Crafted"}, "json_string": "{\"text\":\"Turtle Spawn Egg Crafted\"}"}}, "c.acaciaLeaves": {"CriteriaName": "minecraft.crafted:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Crafted"}, "json_string": "{\"text\":\"Acacia Leaves Crafted\"}"}}, "c.yellowStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Crafted\"}"}}, "m.ironBlock": {"CriteriaName": "minecraft.mined:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Mined"}, "json_string": "{\"text\":\"Iron Block Mined\"}"}}, "p.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Picked Up\"}"}}, "p.acaciaFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Picked Up"}, "json_string": "{\"text\":\"Acacia Fence Gate Picked Up\"}"}}, "c.powderSnowBucket": {"CriteriaName": "minecraft.crafted:minecraft.powder_snow_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Bucket Crafted"}, "json_string": "{\"text\":\"Powder Snow Bucket Crafted\"}"}}, "c.tropicalFish": {"CriteriaName": "minecraft.crafted:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Crafted"}, "json_string": "{\"text\":\"Tropical Fish Crafted\"}"}}, "u.whiteDye": {"CriteriaName": "minecraft.used:minecraft.white_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Dye Used"}, "json_string": "{\"text\":\"White Dye Used\"}"}}, "u.stonePickaxe": {"CriteriaName": "minecraft.used:minecraft.stone_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pickaxe Used"}, "json_string": "{\"text\":\"Stone Pickaxe Used\"}"}}, "q.kelp": {"CriteriaName": "minecraft.dropped:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Dropped"}, "json_string": "{\"text\":\"Kelp Dropped\"}"}}, "b.whiteStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Broken"}, "json_string": "{\"text\":\"White Stained Glass Broken\"}"}}, "c.netherBrick": {"CriteriaName": "minecraft.crafted:minecraft.nether_brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Crafted"}, "json_string": "{\"text\":\"Nether Brick Crafted\"}"}}, "q.netheriteBoots": {"CriteriaName": "minecraft.dropped:minecraft.netherite_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Boots Dropped"}, "json_string": "{\"text\":\"Netherite Boots Dropped\"}"}}, "u.lightBlueStainedGlass": {"CriteriaName": "minecraft.used:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Used"}, "json_string": "{\"text\":\"Light Blue Stained Glass Used\"}"}}, "u.darkOakSapling": {"CriteriaName": "minecraft.used:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Used"}, "json_string": "{\"text\":\"Dark Oak Sapling Used\"}"}}, "m.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Mined\"}"}}, "p.piston": {"CriteriaName": "minecraft.picked_up:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Picked Up"}, "json_string": "{\"text\":\"Piston Picked Up\"}"}}, "b.warpedFungusOnAStick": {"CriteriaName": "minecraft.broken:minecraft.warped_fungus_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus On A Stick Broken"}, "json_string": "{\"text\":\"Warped Fungus On A Stick Broken\"}"}}, "b.cyanStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Broken"}, "json_string": "{\"text\":\"Cyan Stained Glass Broken\"}"}}, "u.pinkTerracotta": {"CriteriaName": "minecraft.used:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Used"}, "json_string": "{\"text\":\"Pink Terracotta Used\"}"}}, "q.pinkCandle": {"CriteriaName": "minecraft.dropped:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Dropped"}, "json_string": "{\"text\":\"Pink Candle Dropped\"}"}}, "p.stick": {"CriteriaName": "minecraft.picked_up:minecraft.stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stick Picked Up"}, "json_string": "{\"text\":\"Stick Picked Up\"}"}}, "b.fireCharge": {"CriteriaName": "minecraft.broken:minecraft.fire_charge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Charge Broken"}, "json_string": "{\"text\":\"Fire Charge Broken\"}"}}, "q.leatherBoots": {"CriteriaName": "minecraft.dropped:minecraft.leather_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Boots Dropped"}, "json_string": "{\"text\":\"Leather Boots Dropped\"}"}}, "b.bamboo": {"CriteriaName": "minecraft.broken:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Broken"}, "json_string": "{\"text\":\"Bamboo Broken\"}"}}, "d.snowGolem": {"CriteriaName": "minecraft.killed_by:minecraft.snow_golem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Snow Golem"}, "json_string": "{\"text\":\"Killed by Snow Golem\"}"}}, "u.fireworkStar": {"CriteriaName": "minecraft.used:minecraft.firework_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Star Used"}, "json_string": "{\"text\":\"Firework Star Used\"}"}}, "q.redConcrete": {"CriteriaName": "minecraft.dropped:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Dropped"}, "json_string": "{\"text\":\"Red Concrete Dropped\"}"}}, "u.blackStainedGlass": {"CriteriaName": "minecraft.used:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Used"}, "json_string": "{\"text\":\"Black Stained Glass Used\"}"}}, "c.sandstoneWall": {"CriteriaName": "minecraft.crafted:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Crafted"}, "json_string": "{\"text\":\"Sandstone Wall Crafted\"}"}}, "b.noteBlock": {"CriteriaName": "minecraft.broken:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Broken"}, "json_string": "{\"text\":\"Note Block Broken\"}"}}, "u.quartzBlock": {"CriteriaName": "minecraft.used:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Used"}, "json_string": "{\"text\":\"Quartz Block Used\"}"}}, "p.sponge": {"CriteriaName": "minecraft.picked_up:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Picked Up"}, "json_string": "{\"text\":\"Sponge Picked Up\"}"}}, "p.snowball": {"CriteriaName": "minecraft.picked_up:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Picked Up"}, "json_string": "{\"text\":\"Snowball Picked Up\"}"}}, "u.deepslateCopperOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Used"}, "json_string": "{\"text\":\"Deepslate Copper Ore Used\"}"}}, "cu.boatOneCm": {"CriteriaName": "minecraft.custom:minecraft.boat_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Boat One Cm"}, "json_string": "{\"text\":\"Boat One Cm\"}"}}, "p.chorusPlant": {"CriteriaName": "minecraft.picked_up:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Picked Up"}, "json_string": "{\"text\":\"Chorus Plant Picked Up\"}"}}, "m.quartzBlock": {"CriteriaName": "minecraft.mined:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Mined"}, "json_string": "{\"text\":\"Quartz Block Mined\"}"}}, "p.polishedBlackstoneButton": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Button Picked Up\"}"}}, "q.darkOakBoat": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Boat Dropped"}, "json_string": "{\"text\":\"Dark Oak Boat Dropped\"}"}}, "b.rawGold": {"CriteriaName": "minecraft.broken:minecraft.raw_gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Broken"}, "json_string": "{\"text\":\"Raw Gold Broken\"}"}}, "q.purpleConcrete": {"CriteriaName": "minecraft.dropped:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Dropped"}, "json_string": "{\"text\":\"Purple Concrete Dropped\"}"}}, "b.graniteSlab": {"CriteriaName": "minecraft.broken:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Broken"}, "json_string": "{\"text\":\"Granite Slab Broken\"}"}}, "q.bread": {"CriteriaName": "minecraft.dropped:minecraft.bread", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bread Dropped"}, "json_string": "{\"text\":\"Bread Dropped\"}"}}, "c.pumpkinSeeds": {"CriteriaName": "minecraft.crafted:minecraft.pumpkin_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Seeds Crafted"}, "json_string": "{\"text\":\"Pumpkin Seeds Crafted\"}"}}, "q.bow": {"CriteriaName": "minecraft.dropped:minecraft.bow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bow Dropped"}, "json_string": "{\"text\":\"Bow Dropped\"}"}}, "p.poppedChorusFruit": {"CriteriaName": "minecraft.picked_up:minecraft.popped_chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Popped Chorus Fruit Picked Up"}, "json_string": "{\"text\":\"Popped Chorus Fruit Picked Up\"}"}}, "u.endStoneBrickStairs": {"CriteriaName": "minecraft.used:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Used"}, "json_string": "{\"text\":\"End Stone Brick Stairs Used\"}"}}, "m.barrier": {"CriteriaName": "minecraft.mined:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Mined"}, "json_string": "{\"text\":\"Barrier Mined\"}"}}, "b.waxedCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Broken\"}"}}, "q.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Dropped\"}"}}, "m.bambooSapling": {"CriteriaName": "minecraft.mined:minecraft.bamboo_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Sapling Mined"}, "json_string": "{\"text\":\"Bamboo Sapling Mined\"}"}}, "c.pinkGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Crafted\"}"}}, "c.feather": {"CriteriaName": "minecraft.crafted:minecraft.feather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Feather Crafted"}, "json_string": "{\"text\":\"Feather Crafted\"}"}}, "m.infestedMossyStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Mined"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Mined\"}"}}, "c.kelp": {"CriteriaName": "minecraft.crafted:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Crafted"}, "json_string": "{\"text\":\"Kelp Crafted\"}"}}, "b.respawnAnchor": {"CriteriaName": "minecraft.broken:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Broken"}, "json_string": "{\"text\":\"Respawn Anchor Broken\"}"}}, "b.deadHornCoral": {"CriteriaName": "minecraft.broken:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Broken"}, "json_string": "{\"text\":\"Dead Horn Coral Broken\"}"}}, "u.cookedMutton": {"CriteriaName": "minecraft.used:minecraft.cooked_mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Mutton Used"}, "json_string": "{\"text\":\"Cooked Mutton Used\"}"}}, "q.crimsonStem": {"CriteriaName": "minecraft.dropped:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Dropped"}, "json_string": "{\"text\":\"Crimson Stem Dropped\"}"}}, "m.beeNest": {"CriteriaName": "minecraft.mined:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Mined"}, "json_string": "{\"text\":\"Bee Nest Mined\"}"}}, "m.deepslateEmeraldOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Mined"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Mined\"}"}}, "m.blueCarpet": {"CriteriaName": "minecraft.mined:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Mined"}, "json_string": "{\"text\":\"Blue Carpet Mined\"}"}}, "q.pinkShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Dropped"}, "json_string": "{\"text\":\"Pink Shulker Box Dropped\"}"}}, "q.oakSapling": {"CriteriaName": "minecraft.dropped:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Dropped"}, "json_string": "{\"text\":\"Oak Sapling Dropped\"}"}}, "g.interactWithCraftingTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Crafting Table"}, "json_string": "{\"text\":\"Interact with Crafting Table\"}"}}, "c.phantomSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.phantom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Spawn Egg Crafted"}, "json_string": "{\"text\":\"Phantom Spawn Egg Crafted\"}"}}, "u.crimsonPlanks": {"CriteriaName": "minecraft.used:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Used"}, "json_string": "{\"text\":\"Crimson Planks Used\"}"}}, "u.purpleShulkerBox": {"CriteriaName": "minecraft.used:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Used"}, "json_string": "{\"text\":\"Purple Shulker Box Used\"}"}}, "c.oxidizedCopper": {"CriteriaName": "minecraft.crafted:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Crafted"}, "json_string": "{\"text\":\"Oxidized Copper Crafted\"}"}}, "m.smallAmethystBud": {"CriteriaName": "minecraft.mined:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Mined"}, "json_string": "{\"text\":\"Small Amethyst Bud Mined\"}"}}, "b.pinkCarpet": {"CriteriaName": "minecraft.broken:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Broken"}, "json_string": "{\"text\":\"Pink Carpet Broken\"}"}}, "m.acaciaWood": {"CriteriaName": "minecraft.mined:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Mined"}, "json_string": "{\"text\":\"Acacia Wood Mined\"}"}}, "u.lapisOre": {"CriteriaName": "minecraft.used:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Used"}, "json_string": "{\"text\":\"Lapis Ore Used\"}"}}, "q.deepslateCoalOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Coal Ore Dropped\"}"}}, "c.cutCopper": {"CriteriaName": "minecraft.crafted:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Crafted"}, "json_string": "{\"text\":\"Cut Copper Crafted\"}"}}, "c.diamondLeggings": {"CriteriaName": "minecraft.crafted:minecraft.diamond_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Leggings Crafted"}, "json_string": "{\"text\":\"Diamond Leggings Crafted\"}"}}, "q.noteBlock": {"CriteriaName": "minecraft.dropped:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Dropped"}, "json_string": "{\"text\":\"Note Block Dropped\"}"}}, "k.strider": {"CriteriaName": "minecraft.killed:minecraft.strider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Killed"}, "json_string": "{\"text\":\"Strider Killed\"}"}}, "u.rabbitStew": {"CriteriaName": "minecraft.used:minecraft.rabbit_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Stew Used"}, "json_string": "{\"text\":\"Rabbit Stew Used\"}"}}, "b.strippedOakLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Broken"}, "json_string": "{\"text\":\"Stripped Oak Log Broken\"}"}}, "m.blueWool": {"CriteriaName": "minecraft.mined:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Mined"}, "json_string": "{\"text\":\"Blue Wool Mined\"}"}}, "p.guardianSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Guardian Spawn Egg Picked Up\"}"}}, "q.pufferfishSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.pufferfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Spawn Egg Dropped"}, "json_string": "{\"text\":\"Pufferfish Spawn Egg Dropped\"}"}}, "q.polishedDeepslateSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Dropped"}, "json_string": "{\"text\":\"Polished Deepslate Slab Dropped\"}"}}, "m.mossyStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Mined"}, "json_string": "{\"text\":\"Mossy Stone Bricks Mined\"}"}}, "u.hopper": {"CriteriaName": "minecraft.used:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Used"}, "json_string": "{\"text\":\"Hopper Used\"}"}}, "q.bigDripleaf": {"CriteriaName": "minecraft.dropped:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Dropped"}, "json_string": "{\"text\":\"Big Dripleaf Dropped\"}"}}, "b.blackWool": {"CriteriaName": "minecraft.broken:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Broken"}, "json_string": "{\"text\":\"Black Wool Broken\"}"}}, "q.saddle": {"CriteriaName": "minecraft.dropped:minecraft.saddle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Saddle Dropped"}, "json_string": "{\"text\":\"Saddle Dropped\"}"}}, "q.netherBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Dropped"}, "json_string": "{\"text\":\"Nether Brick Slab Dropped\"}"}}, "c.deadHornCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Crafted"}, "json_string": "{\"text\":\"Dead Horn Coral Block Crafted\"}"}}, "b.barrel": {"CriteriaName": "minecraft.broken:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Broken"}, "json_string": "{\"text\":\"Barrel Broken\"}"}}, "q.rawCopperBlock": {"CriteriaName": "minecraft.dropped:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Dropped"}, "json_string": "{\"text\":\"Raw Copper Block Dropped\"}"}}, "q.ironHorseArmor": {"CriteriaName": "minecraft.dropped:minecraft.iron_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Horse Armor Dropped"}, "json_string": "{\"text\":\"Iron Horse Armor Dropped\"}"}}, "c.cyanWool": {"CriteriaName": "minecraft.crafted:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Crafted"}, "json_string": "{\"text\":\"Cyan Wool Crafted\"}"}}, "p.peony": {"CriteriaName": "minecraft.picked_up:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Picked Up"}, "json_string": "{\"text\":\"Peony Picked Up\"}"}}, "p.hayBlock": {"CriteriaName": "minecraft.picked_up:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Picked Up"}, "json_string": "{\"text\":\"Hay Block Picked Up\"}"}}, "u.yellowCandle": {"CriteriaName": "minecraft.used:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Used"}, "json_string": "{\"text\":\"Yellow Candle Used\"}"}}, "c.pandaSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.panda_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Spawn Egg Crafted"}, "json_string": "{\"text\":\"Panda Spawn Egg Crafted\"}"}}, "u.bedrock": {"CriteriaName": "minecraft.used:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Used"}, "json_string": "{\"text\":\"Bedrock Used\"}"}}, "b.waxedCopperBlock": {"CriteriaName": "minecraft.broken:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Broken"}, "json_string": "{\"text\":\"Waxed Copper Block Broken\"}"}}, "u.spruceSapling": {"CriteriaName": "minecraft.used:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Used"}, "json_string": "{\"text\":\"Spruce Sapling Used\"}"}}, "u.limeShulkerBox": {"CriteriaName": "minecraft.used:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Used"}, "json_string": "{\"text\":\"Lime Shulker Box Used\"}"}}, "c.pinkWool": {"CriteriaName": "minecraft.crafted:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Crafted"}, "json_string": "{\"text\":\"Pink Wool Crafted\"}"}}, "c.chainmailBoots": {"CriteriaName": "minecraft.crafted:minecraft.chainmail_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Boots Crafted"}, "json_string": "{\"text\":\"Chainmail Boots Crafted\"}"}}, "u.painting": {"CriteriaName": "minecraft.used:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Used"}, "json_string": "{\"text\":\"Painting Used\"}"}}, "b.cobblestone": {"CriteriaName": "minecraft.broken:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Broken"}, "json_string": "{\"text\":\"Cobblestone Broken\"}"}}, "p.pinkBed": {"CriteriaName": "minecraft.picked_up:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Picked Up"}, "json_string": "{\"text\":\"Pink Bed Picked Up\"}"}}, "u.tubeCoralBlock": {"CriteriaName": "minecraft.used:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Used"}, "json_string": "{\"text\":\"Tube Coral Block Used\"}"}}, "c.activatorRail": {"CriteriaName": "minecraft.crafted:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Crafted"}, "json_string": "{\"text\":\"Activator Rail Crafted\"}"}}, "b.diamondPickaxe": {"CriteriaName": "minecraft.broken:minecraft.diamond_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Pickaxe Broken"}, "json_string": "{\"text\":\"Diamond Pickaxe Broken\"}"}}, "q.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Dropped\"}"}}, "c.redWool": {"CriteriaName": "minecraft.crafted:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Crafted"}, "json_string": "{\"text\":\"Red Wool Crafted\"}"}}, "m.magmaBlock": {"CriteriaName": "minecraft.mined:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Mined"}, "json_string": "{\"text\":\"Magma Block Mined\"}"}}, "c.polishedGraniteSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Crafted"}, "json_string": "{\"text\":\"Polished Granite Slab Crafted\"}"}}, "u.crimsonSlab": {"CriteriaName": "minecraft.used:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Used"}, "json_string": "{\"text\":\"Crimson Slab Used\"}"}}, "c.pumpkinPie": {"CriteriaName": "minecraft.crafted:minecraft.pumpkin_pie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Pie Crafted"}, "json_string": "{\"text\":\"Pumpkin Pie Crafted\"}"}}, "q.goldOre": {"CriteriaName": "minecraft.dropped:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Dropped"}, "json_string": "{\"text\":\"Gold Ore Dropped\"}"}}, "m.darkOakFenceGate": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Mined"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Mined\"}"}}, "c.graniteWall": {"CriteriaName": "minecraft.crafted:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Crafted"}, "json_string": "{\"text\":\"Granite Wall Crafted\"}"}}, "q.sporeBlossom": {"CriteriaName": "minecraft.dropped:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Dropped"}, "json_string": "{\"text\":\"Spore Blossom Dropped\"}"}}, "c.diamondHoe": {"CriteriaName": "minecraft.crafted:minecraft.diamond_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Hoe Crafted"}, "json_string": "{\"text\":\"Diamond Hoe Crafted\"}"}}, "b.greenGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Green Glazed Terracotta Broken\"}"}}, "p.daylightDetector": {"CriteriaName": "minecraft.picked_up:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Picked Up"}, "json_string": "{\"text\":\"Daylight Detector Picked Up\"}"}}, "b.musicDisc11": {"CriteriaName": "minecraft.broken:minecraft.music_disc_11", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 11 Broken"}, "json_string": "{\"text\":\"Music Disc 11 Broken\"}"}}, "p.yellowWool": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Picked Up"}, "json_string": "{\"text\":\"Yellow Wool Picked Up\"}"}}, "u.birchBoat": {"CriteriaName": "minecraft.used:minecraft.birch_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Boat Used"}, "json_string": "{\"text\":\"Birch Boat Used\"}"}}, "p.creeperHead": {"CriteriaName": "minecraft.picked_up:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Picked Up"}, "json_string": "{\"text\":\"Creeper Head Picked Up\"}"}}, "p.redBed": {"CriteriaName": "minecraft.picked_up:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Picked Up"}, "json_string": "{\"text\":\"Red Bed Picked Up\"}"}}, "q.cobbledDeepslateStairs": {"CriteriaName": "minecraft.dropped:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Dropped"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Dropped\"}"}}, "u.polishedBasalt": {"CriteriaName": "minecraft.used:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Used"}, "json_string": "{\"text\":\"Polished Basalt Used\"}"}}, "u.goldenHoe": {"CriteriaName": "minecraft.used:minecraft.golden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Hoe Used"}, "json_string": "{\"text\":\"Golden Hoe Used\"}"}}, "b.wanderingTraderSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.wandering_trader_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Spawn Egg Broken"}, "json_string": "{\"text\":\"Wandering Trader Spawn Egg Broken\"}"}}, "q.lightGrayCarpet": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Dropped"}, "json_string": "{\"text\":\"Light Gray Carpet Dropped\"}"}}, "b.musicDisc13": {"CriteriaName": "minecraft.broken:minecraft.music_disc_13", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 13 Broken"}, "json_string": "{\"text\":\"Music Disc 13 Broken\"}"}}, "p.chiseledStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Picked Up\"}"}}, "c.salmon": {"CriteriaName": "minecraft.crafted:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Crafted"}, "json_string": "{\"text\":\"Salmon Crafted\"}"}}, "m.crimsonSlab": {"CriteriaName": "minecraft.mined:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Mined"}, "json_string": "{\"text\":\"Crimson Slab Mined\"}"}}, "q.coalBlock": {"CriteriaName": "minecraft.dropped:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Dropped"}, "json_string": "{\"text\":\"Coal Block Dropped\"}"}}, "q.jigsaw": {"CriteriaName": "minecraft.dropped:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Dropped"}, "json_string": "{\"text\":\"Jigsaw Dropped\"}"}}, "cu.killedByDarkAquaTeam": {"CriteriaName": "killedByTeam.dark_aqua", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Dark Aqua Team"}, "json_string": "{\"text\":\"Killed by Dark Aqua Team\"}"}}, "b.cookedPorkchop": {"CriteriaName": "minecraft.broken:minecraft.cooked_porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Porkchop Broken"}, "json_string": "{\"text\":\"Cooked Porkchop Broken\"}"}}, "c.shroomlight": {"CriteriaName": "minecraft.crafted:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Crafted"}, "json_string": "{\"text\":\"Shroomlight Crafted\"}"}}, "q.potato": {"CriteriaName": "minecraft.dropped:minecraft.potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potato Dropped"}, "json_string": "{\"text\":\"Potato Dropped\"}"}}, "q.pufferfishBucket": {"CriteriaName": "minecraft.dropped:minecraft.pufferfish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Bucket Dropped"}, "json_string": "{\"text\":\"Pufferfish Bucket Dropped\"}"}}, "p.acaciaFence": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Picked Up"}, "json_string": "{\"text\":\"Acacia Fence Picked Up\"}"}}, "p.greenTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Picked Up"}, "json_string": "{\"text\":\"Green Terracotta Picked Up\"}"}}, "q.birchPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Dropped"}, "json_string": "{\"text\":\"Birch Pressure Plate Dropped\"}"}}, "b.flowerBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.flower_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Banner Pattern Broken"}, "json_string": "{\"text\":\"Flower Banner Pattern Broken\"}"}}, "p.leatherHorseArmor": {"CriteriaName": "minecraft.picked_up:minecraft.leather_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Horse Armor Picked Up"}, "json_string": "{\"text\":\"Leather Horse Armor Picked Up\"}"}}, "c.darkPrismarineSlab": {"CriteriaName": "minecraft.crafted:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Crafted"}, "json_string": "{\"text\":\"Dark Prismarine Slab Crafted\"}"}}, "q.greenConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Dropped"}, "json_string": "{\"text\":\"Green Concrete Powder Dropped\"}"}}, "u.endermanSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.enderman_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Spawn Egg Used"}, "json_string": "{\"text\":\"Enderman Spawn Egg Used\"}"}}, "c.enchantedBook": {"CriteriaName": "minecraft.crafted:minecraft.enchanted_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Book Crafted"}, "json_string": "{\"text\":\"Enchanted Book Crafted\"}"}}, "p.stickyPiston": {"CriteriaName": "minecraft.picked_up:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Picked Up"}, "json_string": "{\"text\":\"Sticky Piston Picked Up\"}"}}, "q.andesiteWall": {"CriteriaName": "minecraft.dropped:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Dropped"}, "json_string": "{\"text\":\"Andesite Wall Dropped\"}"}}, "c.lightWeightedPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Crafted"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Crafted\"}"}}, "q.lever": {"CriteriaName": "minecraft.dropped:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Dropped"}, "json_string": "{\"text\":\"Lever Dropped\"}"}}, "q.quartz": {"CriteriaName": "minecraft.dropped:minecraft.quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Dropped"}, "json_string": "{\"text\":\"Quartz Dropped\"}"}}, "c.rabbitHide": {"CriteriaName": "minecraft.crafted:minecraft.rabbit_hide", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Hide Crafted"}, "json_string": "{\"text\":\"Rabbit Hide Crafted\"}"}}, "p.grayWool": {"CriteriaName": "minecraft.picked_up:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Picked Up"}, "json_string": "{\"text\":\"Gray Wool Picked Up\"}"}}, "m.comparator": {"CriteriaName": "minecraft.mined:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Mined"}, "json_string": "{\"text\":\"Comparator Mined\"}"}}, "q.waxedCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Dropped\"}"}}, "c.strippedJungleWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Crafted"}, "json_string": "{\"text\":\"Stripped Jungle Wood Crafted\"}"}}, "k.potion": {"CriteriaName": "minecraft.killed:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Killed"}, "json_string": "{\"text\":\"Potion Killed\"}"}}, "cu.swimOneCm": {"CriteriaName": "minecraft.custom:minecraft.swim_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Swim One Cm"}, "json_string": "{\"text\":\"Swim One Cm\"}"}}, "u.composter": {"CriteriaName": "minecraft.used:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Used"}, "json_string": "{\"text\":\"Composter Used\"}"}}, "u.brownWool": {"CriteriaName": "minecraft.used:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Used"}, "json_string": "{\"text\":\"Brown Wool Used\"}"}}, "cu.interactWithCraftingTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Crafting Table"}, "json_string": "{\"text\":\"Interact With Crafting Table\"}"}}, "b.tropicalFishBucket": {"CriteriaName": "minecraft.broken:minecraft.tropical_fish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Bucket Broken"}, "json_string": "{\"text\":\"Tropical Fish Bucket Broken\"}"}}, "m.oakWood": {"CriteriaName": "minecraft.mined:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Mined"}, "json_string": "{\"text\":\"Oak Wood Mined\"}"}}, "u.endPortalFrame": {"CriteriaName": "minecraft.used:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Used"}, "json_string": "{\"text\":\"End Portal Frame Used\"}"}}, "q.greenShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Dropped"}, "json_string": "{\"text\":\"Green Shulker Box Dropped\"}"}}, "q.polishedAndesiteStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Dropped"}, "json_string": "{\"text\":\"Polished Andesite Stairs Dropped\"}"}}, "m.cyanBanner": {"CriteriaName": "minecraft.mined:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Mined"}, "json_string": "{\"text\":\"Cyan Banner Mined\"}"}}, "p.beetroot": {"CriteriaName": "minecraft.picked_up:minecraft.beetroot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Picked Up"}, "json_string": "{\"text\":\"Beetroot Picked Up\"}"}}, "q.stoneButton": {"CriteriaName": "minecraft.dropped:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Dropped"}, "json_string": "{\"text\":\"Stone Button Dropped\"}"}}, "q.oakSign": {"CriteriaName": "minecraft.dropped:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Dropped"}, "json_string": "{\"text\":\"Oak Sign Dropped\"}"}}, "u.string": {"CriteriaName": "minecraft.used:minecraft.string", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "String Used"}, "json_string": "{\"text\":\"String Used\"}"}}, "q.basalt": {"CriteriaName": "minecraft.dropped:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Dropped"}, "json_string": "{\"text\":\"Basalt Dropped\"}"}}, "u.blackShulkerBox": {"CriteriaName": "minecraft.used:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Used"}, "json_string": "{\"text\":\"Black Shulker Box Used\"}"}}, "p.exposedCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Picked Up\"}"}}, "c.chiseledNetherBricks": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Crafted"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Crafted\"}"}}, "u.greenBed": {"CriteriaName": "minecraft.used:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Used"}, "json_string": "{\"text\":\"Green Bed Used\"}"}}, "m.darkOakStairs": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Mined"}, "json_string": "{\"text\":\"Dark Oak Stairs Mined\"}"}}, "q.blueConcrete": {"CriteriaName": "minecraft.dropped:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Dropped"}, "json_string": "{\"text\":\"Blue Concrete Dropped\"}"}}, "leafDec.cherryL": {"CriteriaName": "minecraft.mined:minecraft.cherry_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.cherryL"}, "json_string": "{\"text\":\"leafDec.cherryL\"}"}}, "u.blackCarpet": {"CriteriaName": "minecraft.used:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Used"}, "json_string": "{\"text\":\"Black Carpet Used\"}"}}, "c.jungleLog": {"CriteriaName": "minecraft.crafted:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Crafted"}, "json_string": "{\"text\":\"Jungle Log Crafted\"}"}}, "c.lightBlueBed": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Crafted"}, "json_string": "{\"text\":\"Light Blue Bed Crafted\"}"}}, "u.chickenSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.chicken_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Spawn Egg Used"}, "json_string": "{\"text\":\"Chicken Spawn Egg Used\"}"}}, "q.fireCoral": {"CriteriaName": "minecraft.dropped:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Dropped"}, "json_string": "{\"text\":\"Fire Coral Dropped\"}"}}, "leafDec.cherryS": {"CriteriaName": "minecraft.mined:minecraft.cherry_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.cherryS"}, "json_string": "{\"text\":\"leafDec.cherryS\"}"}}, "b.hornCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Broken"}, "json_string": "{\"text\":\"Horn Coral Block Broken\"}"}}, "p.redCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Picked Up"}, "json_string": "{\"text\":\"Red Carpet Picked Up\"}"}}, "c.guardianSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian Spawn Egg Crafted"}, "json_string": "{\"text\":\"Guardian Spawn Egg Crafted\"}"}}, "q.damagedAnvil": {"CriteriaName": "minecraft.dropped:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Dropped"}, "json_string": "{\"text\":\"Damaged Anvil Dropped\"}"}}, "q.pinkStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Dropped"}, "json_string": "{\"text\":\"Pink Stained Glass Dropped\"}"}}, "u.glisteringMelonSlice": {"CriteriaName": "minecraft.used:minecraft.glistering_melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glistering Melon Slice Used"}, "json_string": "{\"text\":\"Glistering Melon Slice Used\"}"}}, "m.blackCarpet": {"CriteriaName": "minecraft.mined:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Mined"}, "json_string": "{\"text\":\"Black Carpet Mined\"}"}}, "q.spiderEye": {"CriteriaName": "minecraft.dropped:minecraft.spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Eye Dropped"}, "json_string": "{\"text\":\"Spider Eye Dropped\"}"}}, "k.egg": {"CriteriaName": "minecraft.killed:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Killed"}, "json_string": "{\"text\":\"Egg Killed\"}"}}, "c.deepslateIronOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Iron Ore Crafted\"}"}}, "d.wanderingTrader": {"CriteriaName": "minecraft.killed_by:minecraft.wandering_trader", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Wandering Trader"}, "json_string": "{\"text\":\"Killed by Wandering Trader\"}"}}, "b.blueTerracotta": {"CriteriaName": "minecraft.broken:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Broken"}, "json_string": "{\"text\":\"Blue Terracotta Broken\"}"}}, "u.lightGrayDye": {"CriteriaName": "minecraft.used:minecraft.light_gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Dye Used"}, "json_string": "{\"text\":\"Light Gray Dye Used\"}"}}, "c.hornCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Crafted"}, "json_string": "{\"text\":\"Horn Coral Block Crafted\"}"}}, "m.deadFireCoralFan": {"CriteriaName": "minecraft.mined:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Mined"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Mined\"}"}}, "m.anvil": {"CriteriaName": "minecraft.mined:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Mined"}, "json_string": "{\"text\":\"Anvil Mined\"}"}}, "q.goldenHelmet": {"CriteriaName": "minecraft.dropped:minecraft.golden_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Helmet Dropped"}, "json_string": "{\"text\":\"Golden Helmet Dropped\"}"}}, "u.limeStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Used"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Used\"}"}}, "b.seagrass": {"CriteriaName": "minecraft.broken:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Broken"}, "json_string": "{\"text\":\"Seagrass Broken\"}"}}, "m.birchSapling": {"CriteriaName": "minecraft.mined:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Mined"}, "json_string": "{\"text\":\"Birch Sapling Mined\"}"}}, "p.strippedOakWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Oak Wood Picked Up\"}"}}, "q.goldenHorseArmor": {"CriteriaName": "minecraft.dropped:minecraft.golden_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Horse Armor Dropped"}, "json_string": "{\"text\":\"Golden Horse Armor Dropped\"}"}}, "c.darkOakWood": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Crafted"}, "json_string": "{\"text\":\"Dark Oak Wood Crafted\"}"}}, "q.chainmailHelmet": {"CriteriaName": "minecraft.dropped:minecraft.chainmail_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Helmet Dropped"}, "json_string": "{\"text\":\"Chainmail Helmet Dropped\"}"}}, "m.obsidian": {"CriteriaName": "minecraft.mined:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Mined"}, "json_string": "{\"text\":\"Obsidian Mined\"}"}}, "c.warpedRoots": {"CriteriaName": "minecraft.crafted:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Crafted"}, "json_string": "{\"text\":\"Warped Roots Crafted\"}"}}, "p.polishedDioriteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Diorite Stairs Picked Up\"}"}}, "u.whiteStainedGlass": {"CriteriaName": "minecraft.used:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Used"}, "json_string": "{\"text\":\"White Stained Glass Used\"}"}}, "c.lightBlueConcrete": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Crafted"}, "json_string": "{\"text\":\"Light Blue Concrete Crafted\"}"}}, "d.pufferfish": {"CriteriaName": "minecraft.killed_by:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Pufferfish"}, "json_string": "{\"text\":\"Killed by Pufferfish\"}"}}, "q.beetroot": {"CriteriaName": "minecraft.dropped:minecraft.beetroot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Dropped"}, "json_string": "{\"text\":\"Beetroot Dropped\"}"}}, "q.pigSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.pig_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Spawn Egg Dropped"}, "json_string": "{\"text\":\"Pig Spawn Egg Dropped\"}"}}, "c.sandstone": {"CriteriaName": "minecraft.crafted:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Crafted"}, "json_string": "{\"text\":\"Sandstone Crafted\"}"}}, "b.cyanConcrete": {"CriteriaName": "minecraft.broken:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Broken"}, "json_string": "{\"text\":\"Cyan Concrete Broken\"}"}}, "u.cobbledDeepslate": {"CriteriaName": "minecraft.used:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Used"}, "json_string": "{\"text\":\"Cobbled Deepslate Used\"}"}}, "m.lightGrayShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Mined"}, "json_string": "{\"text\":\"Light Gray Shulker Box Mined\"}"}}, "u.fireCoralFan": {"CriteriaName": "minecraft.used:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Used"}, "json_string": "{\"text\":\"Fire Coral Fan Used\"}"}}, "c.lightGrayConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Crafted"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Crafted\"}"}}, "u.blazeSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.blaze_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Spawn Egg Used"}, "json_string": "{\"text\":\"Blaze Spawn Egg Used\"}"}}, "b.spiderEye": {"CriteriaName": "minecraft.broken:minecraft.spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Eye Broken"}, "json_string": "{\"text\":\"Spider Eye Broken\"}"}}, "b.spruceLog": {"CriteriaName": "minecraft.broken:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Broken"}, "json_string": "{\"text\":\"Spruce Log Broken\"}"}}, "p.redCandle": {"CriteriaName": "minecraft.picked_up:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Picked Up"}, "json_string": "{\"text\":\"Red Candle Picked Up\"}"}}, "q.strippedAcaciaLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Dropped"}, "json_string": "{\"text\":\"Stripped Acacia Log Dropped\"}"}}, "c.light": {"CriteriaName": "minecraft.crafted:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Crafted"}, "json_string": "{\"text\":\"Light Crafted\"}"}}, "k.tropicalFish": {"CriteriaName": "minecraft.killed:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Killed"}, "json_string": "{\"text\":\"Tropical Fish Killed\"}"}}, "b.blackStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Broken"}, "json_string": "{\"text\":\"Black Stained Glass Broken\"}"}}, "p.birchFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Picked Up"}, "json_string": "{\"text\":\"Birch Fence Gate Picked Up\"}"}}, "u.oakFence": {"CriteriaName": "minecraft.used:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Used"}, "json_string": "{\"text\":\"Oak Fence Used\"}"}}, "b.blackShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Broken"}, "json_string": "{\"text\":\"Black Shulker Box Broken\"}"}}, "q.witherRose": {"CriteriaName": "minecraft.dropped:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Dropped"}, "json_string": "{\"text\":\"Wither Rose Dropped\"}"}}, "u.shield": {"CriteriaName": "minecraft.used:minecraft.shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shield Used"}, "json_string": "{\"text\":\"Shield Used\"}"}}, "c.egg": {"CriteriaName": "minecraft.crafted:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Crafted"}, "json_string": "{\"text\":\"Egg Crafted\"}"}}, "p.deadBush": {"CriteriaName": "minecraft.picked_up:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Picked Up"}, "json_string": "{\"text\":\"Dead Bush Picked Up\"}"}}, "b.deadBubbleCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Broken"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Broken\"}"}}, "g.level": {"CriteriaName": "level", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Level"}, "json_string": "{\"text\":\"Level\"}"}}, "m.strippedJungleLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Mined"}, "json_string": "{\"text\":\"Stripped Jungle Log Mined\"}"}}, "m.dispenser": {"CriteriaName": "minecraft.mined:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Mined"}, "json_string": "{\"text\":\"Dispenser Mined\"}"}}, "q.polishedGraniteSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Dropped"}, "json_string": "{\"text\":\"Polished Granite Slab Dropped\"}"}}, "u.netheriteIngot": {"CriteriaName": "minecraft.used:minecraft.netherite_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Ingot Used"}, "json_string": "{\"text\":\"Netherite Ingot Used\"}"}}, "p.brickWall": {"CriteriaName": "minecraft.picked_up:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Picked Up"}, "json_string": "{\"text\":\"Brick Wall Picked Up\"}"}}, "p.limeConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Picked Up"}, "json_string": "{\"text\":\"Lime Concrete Picked Up\"}"}}, "c.hornCoral": {"CriteriaName": "minecraft.crafted:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Crafted"}, "json_string": "{\"text\":\"Horn Coral Crafted\"}"}}, "q.playerHead": {"CriteriaName": "minecraft.dropped:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Dropped"}, "json_string": "{\"text\":\"Player Head Dropped\"}"}}, "d.experienceOrb": {"CriteriaName": "minecraft.killed_by:minecraft.experience_orb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Experience Orb"}, "json_string": "{\"text\":\"Killed by Experience Orb\"}"}}, "c.prismarineStairs": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Crafted"}, "json_string": "{\"text\":\"Prismarine Stairs Crafted\"}"}}, "cu.killedByDarkBlueTeam": {"CriteriaName": "killedByTeam.dark_blue", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Dark Blue Team"}, "json_string": "{\"text\":\"Killed by Dark Blue Team\"}"}}, "p.mossBlock": {"CriteriaName": "minecraft.picked_up:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Picked Up"}, "json_string": "{\"text\":\"Moss Block Picked Up\"}"}}, "m.enchantingTable": {"CriteriaName": "minecraft.mined:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Mined"}, "json_string": "{\"text\":\"Enchanting Table Mined\"}"}}, "m.redNetherBricks": {"CriteriaName": "minecraft.mined:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Mined"}, "json_string": "{\"text\":\"Red Nether Bricks Mined\"}"}}, "b.birchTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Broken"}, "json_string": "{\"text\":\"Birch Trapdoor Broken\"}"}}, "p.chiseledRedSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Picked Up"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Picked Up\"}"}}, "c.phantomMembrane": {"CriteriaName": "minecraft.crafted:minecraft.phantom_membrane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Membrane Crafted"}, "json_string": "{\"text\":\"Phantom Membrane Crafted\"}"}}, "p.witherSkeletonSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.wither_skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Wither Skeleton Spawn Egg Picked Up\"}"}}, "p.strippedBirchLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Picked Up"}, "json_string": "{\"text\":\"Stripped Birch Log Picked Up\"}"}}, "q.amethystCluster": {"CriteriaName": "minecraft.dropped:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Dropped"}, "json_string": "{\"text\":\"Amethyst Cluster Dropped\"}"}}, "p.grayBed": {"CriteriaName": "minecraft.picked_up:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Picked Up"}, "json_string": "{\"text\":\"Gray Bed Picked Up\"}"}}, "u.deepslateBrickSlab": {"CriteriaName": "minecraft.used:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Used"}, "json_string": "{\"text\":\"Deepslate Brick Slab Used\"}"}}, "m.darkOakWallSign": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wall Sign Mined"}, "json_string": "{\"text\":\"Dark Oak Wall Sign Mined\"}"}}, "q.polishedGranite": {"CriteriaName": "minecraft.dropped:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Dropped"}, "json_string": "{\"text\":\"Polished Granite Dropped\"}"}}, "u.weatheredCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Used\"}"}}, "g.interactWithAnvil": {"CriteriaName": "minecraft.custom:minecraft.interact_with_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Anvil"}, "json_string": "{\"text\":\"Interact with Anvil\"}"}}, "b.oakStairs": {"CriteriaName": "minecraft.broken:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Broken"}, "json_string": "{\"text\":\"Oak Stairs Broken\"}"}}, "p.crimsonSign": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Picked Up"}, "json_string": "{\"text\":\"Crimson Sign Picked Up\"}"}}, "q.lightGrayConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Dropped"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Dropped\"}"}}, "p.deepslateRedstoneOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Picked Up\"}"}}, "u.whiteShulkerBox": {"CriteriaName": "minecraft.used:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Used"}, "json_string": "{\"text\":\"White Shulker Box Used\"}"}}, "p.deepslateIronOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Iron Ore Picked Up\"}"}}, "p.cutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Cut Copper Slab Picked Up\"}"}}, "p.lightBlueConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Picked Up\"}"}}, "q.target": {"CriteriaName": "minecraft.dropped:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Dropped"}, "json_string": "{\"text\":\"Target Dropped\"}"}}, "q.jukebox": {"CriteriaName": "minecraft.dropped:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Dropped"}, "json_string": "{\"text\":\"Jukebox Dropped\"}"}}, "m.diorite": {"CriteriaName": "minecraft.mined:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Mined"}, "json_string": "{\"text\":\"Diorite Mined\"}"}}, "p.stoneShovel": {"CriteriaName": "minecraft.picked_up:minecraft.stone_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Shovel Picked Up"}, "json_string": "{\"text\":\"Stone Shovel Picked Up\"}"}}, "b.deadFireCoralFan": {"CriteriaName": "minecraft.broken:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Broken"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Broken\"}"}}, "b.wheat": {"CriteriaName": "minecraft.broken:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Broken"}, "json_string": "{\"text\":\"Wheat Broken\"}"}}, "p.chickenSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.chicken_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Chicken Spawn Egg Picked Up\"}"}}, "m.grassBlock": {"CriteriaName": "minecraft.mined:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Mined"}, "json_string": "{\"text\":\"Grass Block Mined\"}"}}, "q.rabbitSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.rabbit_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Spawn Egg Dropped"}, "json_string": "{\"text\":\"Rabbit Spawn Egg Dropped\"}"}}, "m.warpedFence": {"CriteriaName": "minecraft.mined:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Mined"}, "json_string": "{\"text\":\"Warped Fence Mined\"}"}}, "c.compass": {"CriteriaName": "minecraft.crafted:minecraft.compass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Compass Crafted"}, "json_string": "{\"text\":\"Compass Crafted\"}"}}, "c.smoothSandstone": {"CriteriaName": "minecraft.crafted:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Crafted"}, "json_string": "{\"text\":\"Smooth Sandstone Crafted\"}"}}, "p.diamondHoe": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Hoe Picked Up"}, "json_string": "{\"text\":\"Diamond Hoe Picked Up\"}"}}, "c.ghastSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.ghast_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Spawn Egg Crafted"}, "json_string": "{\"text\":\"Ghast Spawn Egg Crafted\"}"}}, "u.warpedFence": {"CriteriaName": "minecraft.used:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Used"}, "json_string": "{\"text\":\"Warped Fence Used\"}"}}, "q.darkPrismarine": {"CriteriaName": "minecraft.dropped:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Dropped"}, "json_string": "{\"text\":\"Dark Prismarine Dropped\"}"}}, "c.heartOfTheSea": {"CriteriaName": "minecraft.crafted:minecraft.heart_of_the_sea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heart Of The Sea Crafted"}, "json_string": "{\"text\":\"Heart Of The Sea Crafted\"}"}}, "b.fireCoral": {"CriteriaName": "minecraft.broken:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Broken"}, "json_string": "{\"text\":\"Fire Coral Broken\"}"}}, "u.totemOfUndying": {"CriteriaName": "minecraft.used:minecraft.totem_of_undying", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Totem Of Undying Used"}, "json_string": "{\"text\":\"Totem Of Undying Used\"}"}}, "b.stoneHoe": {"CriteriaName": "minecraft.broken:minecraft.stone_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Hoe Broken"}, "json_string": "{\"text\":\"Stone Hoe Broken\"}"}}, "c.polishedDiorite": {"CriteriaName": "minecraft.crafted:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Crafted"}, "json_string": "{\"text\":\"Polished Diorite Crafted\"}"}}, "q.stoneBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Dropped"}, "json_string": "{\"text\":\"Stone Brick Slab Dropped\"}"}}, "b.oakTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Broken"}, "json_string": "{\"text\":\"Oak Trapdoor Broken\"}"}}, "k.glowItemFrame": {"CriteriaName": "minecraft.killed:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Killed"}, "json_string": "{\"text\":\"Glow Item Frame Killed\"}"}}, "c.strippedBirchLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Crafted"}, "json_string": "{\"text\":\"Stripped Birch Log Crafted\"}"}}, "b.darkOakLog": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Broken"}, "json_string": "{\"text\":\"Dark Oak Log Broken\"}"}}, "b.prismarineSlab": {"CriteriaName": "minecraft.broken:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Broken"}, "json_string": "{\"text\":\"Prismarine Slab Broken\"}"}}, "q.pinkConcrete": {"CriteriaName": "minecraft.dropped:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Dropped"}, "json_string": "{\"text\":\"Pink Concrete Dropped\"}"}}, "p.craftingTable": {"CriteriaName": "minecraft.picked_up:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Picked Up"}, "json_string": "{\"text\":\"Crafting Table Picked Up\"}"}}, "p.diamondBoots": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Boots Picked Up"}, "json_string": "{\"text\":\"Diamond Boots Picked Up\"}"}}, "c.sweetBerries": {"CriteriaName": "minecraft.crafted:minecraft.sweet_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berries Crafted"}, "json_string": "{\"text\":\"Sweet Berries Crafted\"}"}}, "p.lapisLazuli": {"CriteriaName": "minecraft.picked_up:minecraft.lapis_lazuli", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Lazuli Picked Up"}, "json_string": "{\"text\":\"Lapis Lazuli Picked Up\"}"}}, "tc.use_diamond": {"CriteriaName": "minecraft.used:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_diamond"}, "json_string": "{\"text\":\"tc.use_diamond\"}"}}, "m.purpurStairs": {"CriteriaName": "minecraft.mined:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Mined"}, "json_string": "{\"text\":\"Purpur Stairs Mined\"}"}}, "c.musicDiscMall": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_mall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mall Crafted"}, "json_string": "{\"text\":\"Music Disc Mall Crafted\"}"}}, "c.netheriteLeggings": {"CriteriaName": "minecraft.crafted:minecraft.netherite_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Leggings Crafted"}, "json_string": "{\"text\":\"Netherite Leggings Crafted\"}"}}, "u.endRod": {"CriteriaName": "minecraft.used:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Used"}, "json_string": "{\"text\":\"End Rod Used\"}"}}, "u.shulkerBox": {"CriteriaName": "minecraft.used:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Used"}, "json_string": "{\"text\":\"Shulker Box Used\"}"}}, "b.mossyCobblestoneWall": {"CriteriaName": "minecraft.broken:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Broken"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Broken\"}"}}, "u.grass": {"CriteriaName": "minecraft.used:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Used"}, "json_string": "{\"text\":\"Grass Used\"}"}}, "q.waterBucket": {"CriteriaName": "minecraft.dropped:minecraft.water_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Bucket Dropped"}, "json_string": "{\"text\":\"Water Bucket Dropped\"}"}}, "b.lapisOre": {"CriteriaName": "minecraft.broken:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Broken"}, "json_string": "{\"text\":\"Lapis Ore Broken\"}"}}, "c.musicDiscStal": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_stal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Stal Crafted"}, "json_string": "{\"text\":\"Music Disc Stal Crafted\"}"}}, "q.spruceStairs": {"CriteriaName": "minecraft.dropped:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Dropped"}, "json_string": "{\"text\":\"Spruce Stairs Dropped\"}"}}, "u.limeConcretePowder": {"CriteriaName": "minecraft.used:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Used"}, "json_string": "{\"text\":\"Lime Concrete Powder Used\"}"}}, "q.goldenShovel": {"CriteriaName": "minecraft.dropped:minecraft.golden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Shovel Dropped"}, "json_string": "{\"text\":\"Golden Shovel Dropped\"}"}}, "m.prismarineBricks": {"CriteriaName": "minecraft.mined:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Mined"}, "json_string": "{\"text\":\"Prismarine Bricks Mined\"}"}}, "u.oakPressurePlate": {"CriteriaName": "minecraft.used:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Used"}, "json_string": "{\"text\":\"Oak Pressure Plate Used\"}"}}, "m.grayConcrete": {"CriteriaName": "minecraft.mined:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Mined"}, "json_string": "{\"text\":\"Gray Concrete Mined\"}"}}, "q.wanderingTraderSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.wandering_trader_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Spawn Egg Dropped"}, "json_string": "{\"text\":\"Wandering Trader Spawn Egg Dropped\"}"}}, "b.crackedDeepslateBricks": {"CriteriaName": "minecraft.broken:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Broken"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Broken\"}"}}, "u.blackCandle": {"CriteriaName": "minecraft.used:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Used"}, "json_string": "{\"text\":\"Black Candle Used\"}"}}, "u.chainmailBoots": {"CriteriaName": "minecraft.used:minecraft.chainmail_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Boots Used"}, "json_string": "{\"text\":\"Chainmail Boots Used\"}"}}, "u.mooshroomSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.mooshroom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Spawn Egg Used"}, "json_string": "{\"text\":\"Mooshroom Spawn Egg Used\"}"}}, "g.eatCakeSlice": {"CriteriaName": "minecraft.custom:minecraft.eat_cake_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Eat Cake Slice"}, "json_string": "{\"text\":\"Eat Cake Slice\"}"}}, "m.yellowGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Mined\"}"}}, "p.ironHorseArmor": {"CriteriaName": "minecraft.picked_up:minecraft.iron_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Horse Armor Picked Up"}, "json_string": "{\"text\":\"Iron Horse Armor Picked Up\"}"}}, "m.lavaCauldron": {"CriteriaName": "minecraft.mined:minecraft.lava_cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Cauldron Mined"}, "json_string": "{\"text\":\"Lava Cauldron Mined\"}"}}, "c.prismarineSlab": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Crafted"}, "json_string": "{\"text\":\"Prismarine Slab Crafted\"}"}}, "p.polishedBlackstone": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Picked Up\"}"}}, "q.brewingStand": {"CriteriaName": "minecraft.dropped:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Dropped"}, "json_string": "{\"text\":\"Brewing Stand Dropped\"}"}}, "c.endStone": {"CriteriaName": "minecraft.crafted:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Crafted"}, "json_string": "{\"text\":\"End Stone Crafted\"}"}}, "q.blackWool": {"CriteriaName": "minecraft.dropped:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Dropped"}, "json_string": "{\"text\":\"Black Wool Dropped\"}"}}, "m.goldBlock": {"CriteriaName": "minecraft.mined:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Mined"}, "json_string": "{\"text\":\"Gold Block Mined\"}"}}, "p.prismarineStairs": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Picked Up"}, "json_string": "{\"text\":\"Prismarine Stairs Picked Up\"}"}}, "q.infestedDeepslate": {"CriteriaName": "minecraft.dropped:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Dropped"}, "json_string": "{\"text\":\"Infested Deepslate Dropped\"}"}}, "b.coalBlock": {"CriteriaName": "minecraft.broken:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Broken"}, "json_string": "{\"text\":\"Coal Block Broken\"}"}}, "b.strippedSpruceLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Broken"}, "json_string": "{\"text\":\"Stripped Spruce Log Broken\"}"}}, "c.redBed": {"CriteriaName": "minecraft.crafted:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Crafted"}, "json_string": "{\"text\":\"Red Bed Crafted\"}"}}, "k.stray": {"CriteriaName": "minecraft.killed:minecraft.stray", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Killed"}, "json_string": "{\"text\":\"Stray Killed\"}"}}, "m.brownShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Mined"}, "json_string": "{\"text\":\"Brown Shulker Box Mined\"}"}}, "p.stoneBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Picked Up"}, "json_string": "{\"text\":\"Stone Brick Slab Picked Up\"}"}}, "c.stickyPiston": {"CriteriaName": "minecraft.crafted:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Crafted"}, "json_string": "{\"text\":\"Sticky Piston Crafted\"}"}}, "c.arrow": {"CriteriaName": "minecraft.crafted:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Crafted"}, "json_string": "{\"text\":\"Arrow Crafted\"}"}}, "p.oakButton": {"CriteriaName": "minecraft.picked_up:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Picked Up"}, "json_string": "{\"text\":\"Oak Button Picked Up\"}"}}, "u.gildedBlackstone": {"CriteriaName": "minecraft.used:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Used"}, "json_string": "{\"text\":\"Gilded Blackstone Used\"}"}}, "b.whiteShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Broken"}, "json_string": "{\"text\":\"White Shulker Box Broken\"}"}}, "m.blackCandle": {"CriteriaName": "minecraft.mined:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Mined"}, "json_string": "{\"text\":\"Black Candle Mined\"}"}}, "q.grayWool": {"CriteriaName": "minecraft.dropped:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Dropped"}, "json_string": "{\"text\":\"Gray Wool Dropped\"}"}}, "b.redMushroom": {"CriteriaName": "minecraft.broken:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Broken"}, "json_string": "{\"text\":\"Red Mushroom Broken\"}"}}, "m.birchSlab": {"CriteriaName": "minecraft.mined:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Mined"}, "json_string": "{\"text\":\"Birch Slab Mined\"}"}}, "u.calcite": {"CriteriaName": "minecraft.used:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Used"}, "json_string": "{\"text\":\"Calcite Used\"}"}}, "u.netheriteChestplate": {"CriteriaName": "minecraft.used:minecraft.netherite_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Chestplate Used"}, "json_string": "{\"text\":\"Netherite Chestplate Used\"}"}}, "c.magentaDye": {"CriteriaName": "minecraft.crafted:minecraft.magenta_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Dye Crafted"}, "json_string": "{\"text\":\"Magenta Dye Crafted\"}"}}, "u.sandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Used"}, "json_string": "{\"text\":\"Sandstone Slab Used\"}"}}, "q.pufferfish": {"CriteriaName": "minecraft.dropped:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Dropped"}, "json_string": "{\"text\":\"Pufferfish Dropped\"}"}}, "u.deepslateTiles": {"CriteriaName": "minecraft.used:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Used"}, "json_string": "{\"text\":\"Deepslate Tiles Used\"}"}}, "u.cauldron": {"CriteriaName": "minecraft.used:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Used"}, "json_string": "{\"text\":\"Cauldron Used\"}"}}, "m.yellowCarpet": {"CriteriaName": "minecraft.mined:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Mined"}, "json_string": "{\"text\":\"Yellow Carpet Mined\"}"}}, "m.junglePlanks": {"CriteriaName": "minecraft.mined:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Mined"}, "json_string": "{\"text\":\"Jungle Planks Mined\"}"}}, "rc_display": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "show clock display"}, "json_string": "{\"text\":\"show clock display\"}"}}, "m.crackedDeepslateTiles": {"CriteriaName": "minecraft.mined:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Mined"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Mined\"}"}}, "p.jungleButton": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Picked Up"}, "json_string": "{\"text\":\"Jungle Button Picked Up\"}"}}, "tc.use_gold": {"CriteriaName": "minecraft.used:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_gold"}, "json_string": "{\"text\":\"tc.use_gold\"}"}}, "c.spawner": {"CriteriaName": "minecraft.crafted:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Crafted"}, "json_string": "{\"text\":\"Spawner Crafted\"}"}}, "u.driedKelpBlock": {"CriteriaName": "minecraft.used:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Used"}, "json_string": "{\"text\":\"Dried Kelp Block Used\"}"}}, "c.glowItemFrame": {"CriteriaName": "minecraft.crafted:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Crafted"}, "json_string": "{\"text\":\"Glow Item Frame Crafted\"}"}}, "u.exposedCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Used"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Used\"}"}}, "m.pottedWhiteTulip": {"CriteriaName": "minecraft.mined:minecraft.potted_white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted White Tulip Mined"}, "json_string": "{\"text\":\"Potted White Tulip Mined\"}"}}, "c.piston": {"CriteriaName": "minecraft.crafted:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Crafted"}, "json_string": "{\"text\":\"Piston Crafted\"}"}}, "m.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Mined"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Mined\"}"}}, "p.purpleConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Picked Up"}, "json_string": "{\"text\":\"Purple Concrete Picked Up\"}"}}, "p.orangeTulip": {"CriteriaName": "minecraft.picked_up:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Picked Up"}, "json_string": "{\"text\":\"Orange Tulip Picked Up\"}"}}, "p.diamondHorseArmor": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Horse Armor Picked Up"}, "json_string": "{\"text\":\"Diamond Horse Armor Picked Up\"}"}}, "cu.interactWithBrewingstand": {"CriteriaName": "minecraft.custom:minecraft.interact_with_brewingstand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Brewingstand"}, "json_string": "{\"text\":\"Interact With Brewingstand\"}"}}, "q.blastFurnace": {"CriteriaName": "minecraft.dropped:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Dropped"}, "json_string": "{\"text\":\"Blast Furnace Dropped\"}"}}, "q.waxedCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Dropped"}, "json_string": "{\"text\":\"Waxed Cut Copper Dropped\"}"}}, "q.air": {"CriteriaName": "minecraft.dropped:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Dropped"}, "json_string": "{\"text\":\"Air Dropped\"}"}}, "u.birchSapling": {"CriteriaName": "minecraft.used:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Used"}, "json_string": "{\"text\":\"Birch Sapling Used\"}"}}, "q.weatheredCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Dropped\"}"}}, "c.strippedSpruceWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Crafted"}, "json_string": "{\"text\":\"Stripped Spruce Wood Crafted\"}"}}, "b.chiseledStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Broken"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Broken\"}"}}, "u.deepslateTileWall": {"CriteriaName": "minecraft.used:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Used"}, "json_string": "{\"text\":\"Deepslate Tile Wall Used\"}"}}, "u.deepslateTileStairs": {"CriteriaName": "minecraft.used:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Used"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Used\"}"}}, "q.redConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Dropped"}, "json_string": "{\"text\":\"Red Concrete Powder Dropped\"}"}}, "u.amethystBlock": {"CriteriaName": "minecraft.used:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Used"}, "json_string": "{\"text\":\"Amethyst Block Used\"}"}}, "m.stoneStairs": {"CriteriaName": "minecraft.mined:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Mined"}, "json_string": "{\"text\":\"Stone Stairs Mined\"}"}}, "b.diamondOre": {"CriteriaName": "minecraft.broken:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Broken"}, "json_string": "{\"text\":\"Diamond Ore Broken\"}"}}, "b.jungleWood": {"CriteriaName": "minecraft.broken:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Broken"}, "json_string": "{\"text\":\"Jungle Wood Broken\"}"}}, "p.netheriteBoots": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Boots Picked Up"}, "json_string": "{\"text\":\"Netherite Boots Picked Up\"}"}}, "u.grindstone": {"CriteriaName": "minecraft.used:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Used"}, "json_string": "{\"text\":\"Grindstone Used\"}"}}, "q.purpleBed": {"CriteriaName": "minecraft.dropped:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Dropped"}, "json_string": "{\"text\":\"Purple Bed Dropped\"}"}}, "c.farmland": {"CriteriaName": "minecraft.crafted:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Crafted"}, "json_string": "{\"text\":\"Farmland Crafted\"}"}}, "m.prismarineWall": {"CriteriaName": "minecraft.mined:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Mined"}, "json_string": "{\"text\":\"Prismarine Wall Mined\"}"}}, "u.jackOLantern": {"CriteriaName": "minecraft.used:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Used"}, "json_string": "{\"text\":\"Jack O Lantern Used\"}"}}, "p.diamondHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Helmet Picked Up"}, "json_string": "{\"text\":\"Diamond Helmet Picked Up\"}"}}, "m.fletchingTable": {"CriteriaName": "minecraft.mined:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Mined"}, "json_string": "{\"text\":\"Fletching Table Mined\"}"}}, "g.inspectDropper": {"CriteriaName": "minecraft.custom:minecraft.inspect_dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Inspect Dropper"}, "json_string": "{\"text\":\"Inspect Dropper\"}"}}, "b.mossyCobblestoneStairs": {"CriteriaName": "minecraft.broken:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Broken"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Broken\"}"}}, "q.goldenCarrot": {"CriteriaName": "minecraft.dropped:minecraft.golden_carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Carrot Dropped"}, "json_string": "{\"text\":\"Golden Carrot Dropped\"}"}}, "c.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Crafted\"}"}}, "b.mossyStoneBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Broken"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Broken\"}"}}, "u.lightGrayWool": {"CriteriaName": "minecraft.used:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Used"}, "json_string": "{\"text\":\"Light Gray Wool Used\"}"}}, "b.chickenSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.chicken_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Spawn Egg Broken"}, "json_string": "{\"text\":\"Chicken Spawn Egg Broken\"}"}}, "b.lightGrayWool": {"CriteriaName": "minecraft.broken:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Broken"}, "json_string": "{\"text\":\"Light Gray Wool Broken\"}"}}, "u.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Used"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Used\"}"}}, "k.trident": {"CriteriaName": "minecraft.killed:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Killed"}, "json_string": "{\"text\":\"Trident Killed\"}"}}, "b.light": {"CriteriaName": "minecraft.broken:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Broken"}, "json_string": "{\"text\":\"Light Broken\"}"}}, "m.fireCoralFan": {"CriteriaName": "minecraft.mined:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Mined"}, "json_string": "{\"text\":\"Fire Coral Fan Mined\"}"}}, "m.redNetherBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Mined"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Mined\"}"}}, "c.totemOfUndying": {"CriteriaName": "minecraft.crafted:minecraft.totem_of_undying", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Totem Of Undying Crafted"}, "json_string": "{\"text\":\"Totem Of Undying Crafted\"}"}}, "m.crimsonPlanks": {"CriteriaName": "minecraft.mined:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Mined"}, "json_string": "{\"text\":\"Crimson Planks Mined\"}"}}, "m.polishedDiorite": {"CriteriaName": "minecraft.mined:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Mined"}, "json_string": "{\"text\":\"Polished Diorite Mined\"}"}}, "q.lightBlueStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Dropped"}, "json_string": "{\"text\":\"Light Blue Stained Glass Dropped\"}"}}, "b.stoneSword": {"CriteriaName": "minecraft.broken:minecraft.stone_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Sword Broken"}, "json_string": "{\"text\":\"Stone Sword Broken\"}"}}, "b.birchPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Broken"}, "json_string": "{\"text\":\"Birch Pressure Plate Broken\"}"}}, "m.soulFire": {"CriteriaName": "minecraft.mined:minecraft.soul_fire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Fire Mined"}, "json_string": "{\"text\":\"Soul Fire Mined\"}"}}, "q.vexSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.vex_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Spawn Egg Dropped"}, "json_string": "{\"text\":\"Vex Spawn Egg Dropped\"}"}}, "p.yellowDye": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Dye Picked Up"}, "json_string": "{\"text\":\"Yellow Dye Picked Up\"}"}}, "q.jungleTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Dropped"}, "json_string": "{\"text\":\"Jungle Trapdoor Dropped\"}"}}, "tc.use_wood": {"CriteriaName": "minecraft.used:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_wood"}, "json_string": "{\"text\":\"tc.use_wood\"}"}}, "b.woodenShovel": {"CriteriaName": "minecraft.broken:minecraft.wooden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Shovel Broken"}, "json_string": "{\"text\":\"Wooden Shovel Broken\"}"}}, "c.cyanConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Crafted"}, "json_string": "{\"text\":\"Cyan Concrete Powder Crafted\"}"}}, "u.orangeConcretePowder": {"CriteriaName": "minecraft.used:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Used"}, "json_string": "{\"text\":\"Orange Concrete Powder Used\"}"}}, "cu.walkOnWaterOneCm": {"CriteriaName": "minecraft.custom:minecraft.walk_on_water_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Walk On Water One Cm"}, "json_string": "{\"text\":\"Walk On Water One Cm\"}"}}, "u.netherrack": {"CriteriaName": "minecraft.used:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Used"}, "json_string": "{\"text\":\"Netherrack Used\"}"}}, "b.magentaWool": {"CriteriaName": "minecraft.broken:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Broken"}, "json_string": "{\"text\":\"Magenta Wool Broken\"}"}}, "p.brownBed": {"CriteriaName": "minecraft.picked_up:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Picked Up"}, "json_string": "{\"text\":\"Brown Bed Picked Up\"}"}}, "q.greenBanner": {"CriteriaName": "minecraft.dropped:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Dropped"}, "json_string": "{\"text\":\"Green Banner Dropped\"}"}}, "p.bubbleCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Picked Up"}, "json_string": "{\"text\":\"Bubble Coral Block Picked Up\"}"}}, "u.bell": {"CriteriaName": "minecraft.used:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Used"}, "json_string": "{\"text\":\"Bell Used\"}"}}, "cusNetPor.config": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Custom Nether Portals Config"}, "json_string": "{\"text\":\"Custom Nether Portals Config\"}"}}, "u.spruceButton": {"CriteriaName": "minecraft.used:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Used"}, "json_string": "{\"text\":\"Spruce Button Used\"}"}}, "b.scaffolding": {"CriteriaName": "minecraft.broken:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Broken"}, "json_string": "{\"text\":\"Scaffolding Broken\"}"}}, "p.fireCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Picked Up"}, "json_string": "{\"text\":\"Fire Coral Fan Picked Up\"}"}}, "p.loom": {"CriteriaName": "minecraft.picked_up:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Picked Up"}, "json_string": "{\"text\":\"Loom Picked Up\"}"}}, "m.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Mined"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Mined\"}"}}, "p.purpurPillar": {"CriteriaName": "minecraft.picked_up:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Picked Up"}, "json_string": "{\"text\":\"Purpur Pillar Picked Up\"}"}}, "m.pottedPinkTulip": {"CriteriaName": "minecraft.mined:minecraft.potted_pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Pink Tulip Mined"}, "json_string": "{\"text\":\"Potted Pink Tulip Mined\"}"}}, "p.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Picked Up\"}"}}, "u.polishedDeepslateSlab": {"CriteriaName": "minecraft.used:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Used"}, "json_string": "{\"text\":\"Polished Deepslate Slab Used\"}"}}, "c.diamondPickaxe": {"CriteriaName": "minecraft.crafted:minecraft.diamond_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Pickaxe Crafted"}, "json_string": "{\"text\":\"Diamond Pickaxe Crafted\"}"}}, "q.crimsonFungus": {"CriteriaName": "minecraft.dropped:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Dropped"}, "json_string": "{\"text\":\"Crimson Fungus Dropped\"}"}}, "c.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Crafted\"}"}}, "c.magentaTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Crafted"}, "json_string": "{\"text\":\"Magenta Terracotta Crafted\"}"}}, "p.pinkShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Picked Up"}, "json_string": "{\"text\":\"Pink Shulker Box Picked Up\"}"}}, "u.mediumAmethystBud": {"CriteriaName": "minecraft.used:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Used"}, "json_string": "{\"text\":\"Medium Amethyst Bud Used\"}"}}, "c.tnt": {"CriteriaName": "minecraft.crafted:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Crafted"}, "json_string": "{\"text\":\"Tnt Crafted\"}"}}, "c.warpedFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Crafted"}, "json_string": "{\"text\":\"Warped Fence Gate Crafted\"}"}}, "q.deepslateBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Dropped"}, "json_string": "{\"text\":\"Deepslate Brick Slab Dropped\"}"}}, "b.mossyStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Broken"}, "json_string": "{\"text\":\"Mossy Stone Bricks Broken\"}"}}, "m.stone": {"CriteriaName": "minecraft.mined:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Mined"}, "json_string": "{\"text\":\"Stone Mined\"}"}}, "u.musicDiscOtherside": {"CriteriaName": "minecraft.used:minecraft.music_disc_otherside", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Otherside Used"}, "json_string": "{\"text\":\"Music Disc Otherside Used\"}"}}, "c.limeDye": {"CriteriaName": "minecraft.crafted:minecraft.lime_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Dye Crafted"}, "json_string": "{\"text\":\"Lime Dye Crafted\"}"}}, "b.enchantedGoldenApple": {"CriteriaName": "minecraft.broken:minecraft.enchanted_golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Golden Apple Broken"}, "json_string": "{\"text\":\"Enchanted Golden Apple Broken\"}"}}, "q.cobbledDeepslateSlab": {"CriteriaName": "minecraft.dropped:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Dropped"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Dropped\"}"}}, "c.blueBed": {"CriteriaName": "minecraft.crafted:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Crafted"}, "json_string": "{\"text\":\"Blue Bed Crafted\"}"}}, "b.purpleBed": {"CriteriaName": "minecraft.broken:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Broken"}, "json_string": "{\"text\":\"Purple Bed Broken\"}"}}, "q.strippedBirchWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Dropped"}, "json_string": "{\"text\":\"Stripped Birch Wood Dropped\"}"}}, "d.fallingBlock": {"CriteriaName": "minecraft.killed_by:minecraft.falling_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Falling Block"}, "json_string": "{\"text\":\"Killed by Falling Block\"}"}}, "c.soulCampfire": {"CriteriaName": "minecraft.crafted:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Crafted"}, "json_string": "{\"text\":\"Soul Campfire Crafted\"}"}}, "p.endCrystal": {"CriteriaName": "minecraft.picked_up:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Picked Up"}, "json_string": "{\"text\":\"End Crystal Picked Up\"}"}}, "b.pufferfishSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.pufferfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Spawn Egg Broken"}, "json_string": "{\"text\":\"Pufferfish Spawn Egg Broken\"}"}}, "m.darkOakSign": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Mined"}, "json_string": "{\"text\":\"Dark Oak Sign Mined\"}"}}, "p.flowerBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.flower_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Flower Banner Pattern Picked Up\"}"}}, "p.nautilusShell": {"CriteriaName": "minecraft.picked_up:minecraft.nautilus_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nautilus Shell Picked Up"}, "json_string": "{\"text\":\"Nautilus Shell Picked Up\"}"}}, "p.rawCopper": {"CriteriaName": "minecraft.picked_up:minecraft.raw_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Picked Up"}, "json_string": "{\"text\":\"Raw Copper Picked Up\"}"}}, "c.greenShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Crafted"}, "json_string": "{\"text\":\"Green Shulker Box Crafted\"}"}}, "b.blackCandle": {"CriteriaName": "minecraft.broken:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Broken"}, "json_string": "{\"text\":\"Black Candle Broken\"}"}}, "c.jungleSlab": {"CriteriaName": "minecraft.crafted:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Crafted"}, "json_string": "{\"text\":\"Jungle Slab Crafted\"}"}}, "p.crimsonFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Picked Up"}, "json_string": "{\"text\":\"Crimson Fence Gate Picked Up\"}"}}, "b.redBed": {"CriteriaName": "minecraft.broken:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Broken"}, "json_string": "{\"text\":\"Red Bed Broken\"}"}}, "c.cod": {"CriteriaName": "minecraft.crafted:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Crafted"}, "json_string": "{\"text\":\"Cod Crafted\"}"}}, "c.darkOakButton": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Crafted"}, "json_string": "{\"text\":\"Dark Oak Button Crafted\"}"}}, "d.evoker": {"CriteriaName": "minecraft.killed_by:minecraft.evoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Evoker"}, "json_string": "{\"text\":\"Killed by Evoker\"}"}}, "p.blackShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Picked Up"}, "json_string": "{\"text\":\"Black Shulker Box Picked Up\"}"}}, "c.bamboo": {"CriteriaName": "minecraft.crafted:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Crafted"}, "json_string": "{\"text\":\"Bamboo Crafted\"}"}}, "c.magmaCubeSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.magma_cube_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Spawn Egg Crafted"}, "json_string": "{\"text\":\"Magma Cube Spawn Egg Crafted\"}"}}, "p.blueShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Picked Up"}, "json_string": "{\"text\":\"Blue Shulker Box Picked Up\"}"}}, "u.buddingAmethyst": {"CriteriaName": "minecraft.used:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Used"}, "json_string": "{\"text\":\"Budding Amethyst Used\"}"}}, "u.darkOakStairs": {"CriteriaName": "minecraft.used:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Used"}, "json_string": "{\"text\":\"Dark Oak Stairs Used\"}"}}, "m.quartzPillar": {"CriteriaName": "minecraft.mined:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Mined"}, "json_string": "{\"text\":\"Quartz Pillar Mined\"}"}}, "p.crimsonDoor": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Picked Up"}, "json_string": "{\"text\":\"Crimson Door Picked Up\"}"}}, "u.glassPane": {"CriteriaName": "minecraft.used:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Used"}, "json_string": "{\"text\":\"Glass Pane Used\"}"}}, "p.soulSand": {"CriteriaName": "minecraft.picked_up:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Picked Up"}, "json_string": "{\"text\":\"Soul Sand Picked Up\"}"}}, "b.musicDiscFar": {"CriteriaName": "minecraft.broken:minecraft.music_disc_far", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Far Broken"}, "json_string": "{\"text\":\"Music Disc Far Broken\"}"}}, "u.prismarineSlab": {"CriteriaName": "minecraft.used:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Used"}, "json_string": "{\"text\":\"Prismarine Slab Used\"}"}}, "c.magentaConcrete": {"CriteriaName": "minecraft.crafted:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Crafted"}, "json_string": "{\"text\":\"Magenta Concrete Crafted\"}"}}, "p.stoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Picked Up"}, "json_string": "{\"text\":\"Stone Slab Picked Up\"}"}}, "c.stone": {"CriteriaName": "minecraft.crafted:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Crafted"}, "json_string": "{\"text\":\"Stone Crafted\"}"}}, "d.mule": {"CriteriaName": "minecraft.killed_by:minecraft.mule", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Mule"}, "json_string": "{\"text\":\"Killed by Mule\"}"}}, "u.crimsonFungus": {"CriteriaName": "minecraft.used:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Used"}, "json_string": "{\"text\":\"Crimson Fungus Used\"}"}}, "c.salmonBucket": {"CriteriaName": "minecraft.crafted:minecraft.salmon_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Bucket Crafted"}, "json_string": "{\"text\":\"Salmon Bucket Crafted\"}"}}, "m.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Mined\"}"}}, "d.shulkerBullet": {"CriteriaName": "minecraft.killed_by:minecraft.shulker_bullet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Shulker Bullet"}, "json_string": "{\"text\":\"Killed by Shulker Bullet\"}"}}, "p.jungleLog": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Picked Up"}, "json_string": "{\"text\":\"Jungle Log Picked Up\"}"}}, "b.warpedButton": {"CriteriaName": "minecraft.broken:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Broken"}, "json_string": "{\"text\":\"Warped Button Broken\"}"}}, "c.quartzBricks": {"CriteriaName": "minecraft.crafted:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Crafted"}, "json_string": "{\"text\":\"Quartz Bricks Crafted\"}"}}, "q.smoothBasalt": {"CriteriaName": "minecraft.dropped:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Dropped"}, "json_string": "{\"text\":\"Smooth Basalt Dropped\"}"}}, "p.saddle": {"CriteriaName": "minecraft.picked_up:minecraft.saddle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Saddle Picked Up"}, "json_string": "{\"text\":\"Saddle Picked Up\"}"}}, "u.oxidizedCopper": {"CriteriaName": "minecraft.used:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Used"}, "json_string": "{\"text\":\"Oxidized Copper Used\"}"}}, "p.repeater": {"CriteriaName": "minecraft.picked_up:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Picked Up"}, "json_string": "{\"text\":\"Repeater Picked Up\"}"}}, "q.blueStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Dropped\"}"}}, "c.redMushroomBlock": {"CriteriaName": "minecraft.crafted:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Crafted"}, "json_string": "{\"text\":\"Red Mushroom Block Crafted\"}"}}, "m.dropper": {"CriteriaName": "minecraft.mined:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Mined"}, "json_string": "{\"text\":\"Dropper Mined\"}"}}, "b.darkOakDoor": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Broken"}, "json_string": "{\"text\":\"Dark Oak Door Broken\"}"}}, "c.redCarpet": {"CriteriaName": "minecraft.crafted:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Crafted"}, "json_string": "{\"text\":\"Red Carpet Crafted\"}"}}, "u.redSandstoneWall": {"CriteriaName": "minecraft.used:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Used"}, "json_string": "{\"text\":\"Red Sandstone Wall Used\"}"}}, "c.jungleFence": {"CriteriaName": "minecraft.crafted:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Crafted"}, "json_string": "{\"text\":\"Jungle Fence Crafted\"}"}}, "q.goldBlock": {"CriteriaName": "minecraft.dropped:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Dropped"}, "json_string": "{\"text\":\"Gold Block Dropped\"}"}}, "c.pinkStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Crafted\"}"}}, "b.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Broken\"}"}}, "c.yellowBanner": {"CriteriaName": "minecraft.crafted:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Crafted"}, "json_string": "{\"text\":\"Yellow Banner Crafted\"}"}}, "u.endermiteSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.endermite_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Spawn Egg Used"}, "json_string": "{\"text\":\"Endermite Spawn Egg Used\"}"}}, "q.piston": {"CriteriaName": "minecraft.dropped:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Dropped"}, "json_string": "{\"text\":\"Piston Dropped\"}"}}, "b.painting": {"CriteriaName": "minecraft.broken:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Broken"}, "json_string": "{\"text\":\"Painting Broken\"}"}}, "q.amethystShard": {"CriteriaName": "minecraft.dropped:minecraft.amethyst_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Shard Dropped"}, "json_string": "{\"text\":\"Amethyst Shard Dropped\"}"}}, "b.blackstoneWall": {"CriteriaName": "minecraft.broken:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Broken"}, "json_string": "{\"text\":\"Blackstone Wall Broken\"}"}}, "q.soulTorch": {"CriteriaName": "minecraft.dropped:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Dropped"}, "json_string": "{\"text\":\"Soul Torch Dropped\"}"}}, "q.darkOakTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Dropped"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Dropped\"}"}}, "p.acaciaSlab": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Picked Up"}, "json_string": "{\"text\":\"Acacia Slab Picked Up\"}"}}, "b.lightBlueConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Broken"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Broken\"}"}}, "b.smallAmethystBud": {"CriteriaName": "minecraft.broken:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Broken"}, "json_string": "{\"text\":\"Small Amethyst Bud Broken\"}"}}, "b.loom": {"CriteriaName": "minecraft.broken:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Broken"}, "json_string": "{\"text\":\"Loom Broken\"}"}}, "c.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Crafted"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Crafted\"}"}}, "p.strippedJungleLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Picked Up"}, "json_string": "{\"text\":\"Stripped Jungle Log Picked Up\"}"}}, "u.yellowConcrete": {"CriteriaName": "minecraft.used:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Used"}, "json_string": "{\"text\":\"Yellow Concrete Used\"}"}}, "c.netherBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Crafted"}, "json_string": "{\"text\":\"Nether Brick Slab Crafted\"}"}}, "u.lodestone": {"CriteriaName": "minecraft.used:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Used"}, "json_string": "{\"text\":\"Lodestone Used\"}"}}, "q.darkOakStairs": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Dropped"}, "json_string": "{\"text\":\"Dark Oak Stairs Dropped\"}"}}, "m.pottedAcaciaSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Acacia Sapling Mined"}, "json_string": "{\"text\":\"Potted Acacia Sapling Mined\"}"}}, "q.deepslateCopperOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Copper Ore Dropped\"}"}}, "c.mojangBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.mojang_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mojang Banner Pattern Crafted"}, "json_string": "{\"text\":\"Mojang Banner Pattern Crafted\"}"}}, "m.spruceButton": {"CriteriaName": "minecraft.mined:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Mined"}, "json_string": "{\"text\":\"Spruce Button Mined\"}"}}, "c.greenDye": {"CriteriaName": "minecraft.crafted:minecraft.green_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Dye Crafted"}, "json_string": "{\"text\":\"Green Dye Crafted\"}"}}, "q.brickStairs": {"CriteriaName": "minecraft.dropped:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Dropped"}, "json_string": "{\"text\":\"Brick Stairs Dropped\"}"}}, "m.blueCandle": {"CriteriaName": "minecraft.mined:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Mined"}, "json_string": "{\"text\":\"Blue Candle Mined\"}"}}, "u.lightGrayShulkerBox": {"CriteriaName": "minecraft.used:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Used"}, "json_string": "{\"text\":\"Light Gray Shulker Box Used\"}"}}, "b.cyanWool": {"CriteriaName": "minecraft.broken:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Broken"}, "json_string": "{\"text\":\"Cyan Wool Broken\"}"}}, "q.sculkSensor": {"CriteriaName": "minecraft.dropped:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Dropped"}, "json_string": "{\"text\":\"Sculk Sensor Dropped\"}"}}, "q.brownTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Dropped"}, "json_string": "{\"text\":\"Brown Terracotta Dropped\"}"}}, "p.whiteShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Picked Up"}, "json_string": "{\"text\":\"White Shulker Box Picked Up\"}"}}, "b.brownTerracotta": {"CriteriaName": "minecraft.broken:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Broken"}, "json_string": "{\"text\":\"Brown Terracotta Broken\"}"}}, "b.deepslateGoldOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Broken"}, "json_string": "{\"text\":\"Deepslate Gold Ore Broken\"}"}}, "q.hornCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Dropped"}, "json_string": "{\"text\":\"Horn Coral Fan Dropped\"}"}}, "p.redNetherBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Picked Up"}, "json_string": "{\"text\":\"Red Nether Brick Slab Picked Up\"}"}}, "u.huskSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.husk_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Spawn Egg Used"}, "json_string": "{\"text\":\"Husk Spawn Egg Used\"}"}}, "c.cowSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.cow_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Spawn Egg Crafted"}, "json_string": "{\"text\":\"Cow Spawn Egg Crafted\"}"}}, "g.useCauldron": {"CriteriaName": "minecraft.custom:minecraft.use_cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Use Cauldron"}, "json_string": "{\"text\":\"Use Cauldron\"}"}}, "c.strippedWarpedHyphae": {"CriteriaName": "minecraft.crafted:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Crafted"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Crafted\"}"}}, "m.jungleWallSign": {"CriteriaName": "minecraft.mined:minecraft.jungle_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wall Sign Mined"}, "json_string": "{\"text\":\"Jungle Wall Sign Mined\"}"}}, "b.blueCandle": {"CriteriaName": "minecraft.broken:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Broken"}, "json_string": "{\"text\":\"Blue Candle Broken\"}"}}, "p.jigsaw": {"CriteriaName": "minecraft.picked_up:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Picked Up"}, "json_string": "{\"text\":\"Jigsaw Picked Up\"}"}}, "rs_uninstall": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "rs_uninstall"}, "json_string": "{\"text\":\"rs_uninstall\"}"}}, "c.barrel": {"CriteriaName": "minecraft.crafted:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Crafted"}, "json_string": "{\"text\":\"Barrel Crafted\"}"}}, "k.skeleton": {"CriteriaName": "minecraft.killed:minecraft.skeleton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Killed"}, "json_string": "{\"text\":\"Skeleton Killed\"}"}}, "u.cartographyTable": {"CriteriaName": "minecraft.used:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Used"}, "json_string": "{\"text\":\"Cartography Table Used\"}"}}, "b.turtleSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.turtle_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Spawn Egg Broken"}, "json_string": "{\"text\":\"Turtle Spawn Egg Broken\"}"}}, "u.endStone": {"CriteriaName": "minecraft.used:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Used"}, "json_string": "{\"text\":\"End Stone Used\"}"}}, "q.amethystBlock": {"CriteriaName": "minecraft.dropped:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Dropped"}, "json_string": "{\"text\":\"Amethyst Block Dropped\"}"}}, "k.boat": {"CriteriaName": "minecraft.killed:minecraft.boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Boat Killed"}, "json_string": "{\"text\":\"Boat Killed\"}"}}, "u.purpleBed": {"CriteriaName": "minecraft.used:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Used"}, "json_string": "{\"text\":\"Purple Bed Used\"}"}}, "p.purpleTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Picked Up"}, "json_string": "{\"text\":\"Purple Terracotta Picked Up\"}"}}, "c.deepslateTiles": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Crafted"}, "json_string": "{\"text\":\"Deepslate Tiles Crafted\"}"}}, "m.podzol": {"CriteriaName": "minecraft.mined:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Mined"}, "json_string": "{\"text\":\"Podzol Mined\"}"}}, "c.glowBerries": {"CriteriaName": "minecraft.crafted:minecraft.glow_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Berries Crafted"}, "json_string": "{\"text\":\"Glow Berries Crafted\"}"}}, "p.birchButton": {"CriteriaName": "minecraft.picked_up:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Picked Up"}, "json_string": "{\"text\":\"Birch Button Picked Up\"}"}}, "u.magentaWool": {"CriteriaName": "minecraft.used:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Used"}, "json_string": "{\"text\":\"Magenta Wool Used\"}"}}, "b.zombieSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.zombie_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Spawn Egg Broken"}, "json_string": "{\"text\":\"Zombie Spawn Egg Broken\"}"}}, "m.greenWool": {"CriteriaName": "minecraft.mined:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Mined"}, "json_string": "{\"text\":\"Green Wool Mined\"}"}}, "c.magentaCarpet": {"CriteriaName": "minecraft.crafted:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Crafted"}, "json_string": "{\"text\":\"Magenta Carpet Crafted\"}"}}, "c.redNetherBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Crafted"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Crafted\"}"}}, "d.silverfish": {"CriteriaName": "minecraft.killed_by:minecraft.silverfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Silverfish"}, "json_string": "{\"text\":\"Killed by Silverfish\"}"}}, "p.magmaCream": {"CriteriaName": "minecraft.picked_up:minecraft.magma_cream", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cream Picked Up"}, "json_string": "{\"text\":\"Magma Cream Picked Up\"}"}}, "c.glowInkSac": {"CriteriaName": "minecraft.crafted:minecraft.glow_ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Ink Sac Crafted"}, "json_string": "{\"text\":\"Glow Ink Sac Crafted\"}"}}, "b.pufferfishBucket": {"CriteriaName": "minecraft.broken:minecraft.pufferfish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Bucket Broken"}, "json_string": "{\"text\":\"Pufferfish Bucket Broken\"}"}}, "u.piglinSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Spawn Egg Used"}, "json_string": "{\"text\":\"Piglin Spawn Egg Used\"}"}}, "q.whiteBed": {"CriteriaName": "minecraft.dropped:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Dropped"}, "json_string": "{\"text\":\"White Bed Dropped\"}"}}, "m.purpleConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Mined"}, "json_string": "{\"text\":\"Purple Concrete Powder Mined\"}"}}, "tc.break_oak": {"CriteriaName": "minecraft.mined:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_oak"}, "json_string": "{\"text\":\"tc.break_oak\"}"}}, "u.apple": {"CriteriaName": "minecraft.used:minecraft.apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Apple Used"}, "json_string": "{\"text\":\"Apple Used\"}"}}, "q.acaciaStairs": {"CriteriaName": "minecraft.dropped:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Dropped"}, "json_string": "{\"text\":\"Acacia Stairs Dropped\"}"}}, "u.zombieHead": {"CriteriaName": "minecraft.used:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Used"}, "json_string": "{\"text\":\"Zombie Head Used\"}"}}, "p.chainmailChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.chainmail_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Chestplate Picked Up"}, "json_string": "{\"text\":\"Chainmail Chestplate Picked Up\"}"}}, "k.chestMinecart": {"CriteriaName": "minecraft.killed:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Killed"}, "json_string": "{\"text\":\"Chest Minecart Killed\"}"}}, "d.giant": {"CriteriaName": "minecraft.killed_by:minecraft.giant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Giant"}, "json_string": "{\"text\":\"Killed by Giant\"}"}}, "b.cookedSalmon": {"CriteriaName": "minecraft.broken:minecraft.cooked_salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Salmon Broken"}, "json_string": "{\"text\":\"Cooked Salmon Broken\"}"}}, "u.warpedStem": {"CriteriaName": "minecraft.used:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Used"}, "json_string": "{\"text\":\"Warped Stem Used\"}"}}, "p.goldenBoots": {"CriteriaName": "minecraft.picked_up:minecraft.golden_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Boots Picked Up"}, "json_string": "{\"text\":\"Golden Boots Picked Up\"}"}}, "u.farmland": {"CriteriaName": "minecraft.used:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Used"}, "json_string": "{\"text\":\"Farmland Used\"}"}}, "p.oakBoat": {"CriteriaName": "minecraft.picked_up:minecraft.oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Boat Picked Up"}, "json_string": "{\"text\":\"Oak Boat Picked Up\"}"}}, "b.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Broken"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Broken\"}"}}, "u.pinkBanner": {"CriteriaName": "minecraft.used:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Used"}, "json_string": "{\"text\":\"Pink Banner Used\"}"}}, "m.crimsonDoor": {"CriteriaName": "minecraft.mined:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Mined"}, "json_string": "{\"text\":\"Crimson Door Mined\"}"}}, "c.saddle": {"CriteriaName": "minecraft.crafted:minecraft.saddle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Saddle Crafted"}, "json_string": "{\"text\":\"Saddle Crafted\"}"}}, "p.bricks": {"CriteriaName": "minecraft.picked_up:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Picked Up"}, "json_string": "{\"text\":\"Bricks Picked Up\"}"}}, "b.chainmailChestplate": {"CriteriaName": "minecraft.broken:minecraft.chainmail_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Chestplate Broken"}, "json_string": "{\"text\":\"Chainmail Chestplate Broken\"}"}}, "b.lodestone": {"CriteriaName": "minecraft.broken:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Broken"}, "json_string": "{\"text\":\"Lodestone Broken\"}"}}, "b.redstoneTorch": {"CriteriaName": "minecraft.broken:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Broken"}, "json_string": "{\"text\":\"Redstone Torch Broken\"}"}}, "p.netheriteHoe": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Hoe Picked Up"}, "json_string": "{\"text\":\"Netherite Hoe Picked Up\"}"}}, "c.commandBlockMinecart": {"CriteriaName": "minecraft.crafted:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Crafted"}, "json_string": "{\"text\":\"Command Block Minecart Crafted\"}"}}, "u.birchTrapdoor": {"CriteriaName": "minecraft.used:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Used"}, "json_string": "{\"text\":\"Birch Trapdoor Used\"}"}}, "b.deepslateTiles": {"CriteriaName": "minecraft.broken:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Broken"}, "json_string": "{\"text\":\"Deepslate Tiles Broken\"}"}}, "q.ironTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Dropped"}, "json_string": "{\"text\":\"Iron Trapdoor Dropped\"}"}}, "b.pinkTerracotta": {"CriteriaName": "minecraft.broken:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Broken"}, "json_string": "{\"text\":\"Pink Terracotta Broken\"}"}}, "u.strippedSpruceLog": {"CriteriaName": "minecraft.used:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Used"}, "json_string": "{\"text\":\"Stripped Spruce Log Used\"}"}}, "q.lightningRod": {"CriteriaName": "minecraft.dropped:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Dropped"}, "json_string": "{\"text\":\"Lightning Rod Dropped\"}"}}, "u.blueBanner": {"CriteriaName": "minecraft.used:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Used"}, "json_string": "{\"text\":\"Blue Banner Used\"}"}}, "m.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Mined"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Mined\"}"}}, "c.crackedStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Crafted"}, "json_string": "{\"text\":\"Cracked Stone Bricks Crafted\"}"}}, "q.crackedDeepslateTiles": {"CriteriaName": "minecraft.dropped:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Dropped"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Dropped\"}"}}, "b.salmon": {"CriteriaName": "minecraft.broken:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Broken"}, "json_string": "{\"text\":\"Salmon Broken\"}"}}, "p.deepslateBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Picked Up"}, "json_string": "{\"text\":\"Deepslate Brick Wall Picked Up\"}"}}, "leafDec.darkOakS": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.darkOakS"}, "json_string": "{\"text\":\"leafDec.darkOakS\"}"}}, "b.brownDye": {"CriteriaName": "minecraft.broken:minecraft.brown_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Dye Broken"}, "json_string": "{\"text\":\"Brown Dye Broken\"}"}}, "leafDec.darkOakL": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.darkOakL"}, "json_string": "{\"text\":\"leafDec.darkOakL\"}"}}, "u.strippedOakLog": {"CriteriaName": "minecraft.used:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Used"}, "json_string": "{\"text\":\"Stripped Oak Log Used\"}"}}, "p.deadHornCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Picked Up"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Picked Up\"}"}}, "q.crimsonPlanks": {"CriteriaName": "minecraft.dropped:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Dropped"}, "json_string": "{\"text\":\"Crimson Planks Dropped\"}"}}, "b.greenBed": {"CriteriaName": "minecraft.broken:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Broken"}, "json_string": "{\"text\":\"Green Bed Broken\"}"}}, "m.purpleBanner": {"CriteriaName": "minecraft.mined:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Mined"}, "json_string": "{\"text\":\"Purple Banner Mined\"}"}}, "u.pinkWool": {"CriteriaName": "minecraft.used:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Used"}, "json_string": "{\"text\":\"Pink Wool Used\"}"}}, "q.lightGrayWool": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Dropped"}, "json_string": "{\"text\":\"Light Gray Wool Dropped\"}"}}, "p.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Picked Up"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Picked Up\"}"}}, "m.honeycombBlock": {"CriteriaName": "minecraft.mined:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Mined"}, "json_string": "{\"text\":\"Honeycomb Block Mined\"}"}}, "b.deepslateBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Broken"}, "json_string": "{\"text\":\"Deepslate Brick Slab Broken\"}"}}, "m.soulSoil": {"CriteriaName": "minecraft.mined:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Mined"}, "json_string": "{\"text\":\"Soul Soil Mined\"}"}}, "u.fishingRod": {"CriteriaName": "minecraft.used:minecraft.fishing_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Rod Used"}, "json_string": "{\"text\":\"Fishing Rod Used\"}"}}, "m.deadBrainCoral": {"CriteriaName": "minecraft.mined:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Mined"}, "json_string": "{\"text\":\"Dead Brain Coral Mined\"}"}}, "c.bubbleCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Crafted"}, "json_string": "{\"text\":\"Bubble Coral Fan Crafted\"}"}}, "m.deepslateTileSlab": {"CriteriaName": "minecraft.mined:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Mined"}, "json_string": "{\"text\":\"Deepslate Tile Slab Mined\"}"}}, "c.purpurBlock": {"CriteriaName": "minecraft.crafted:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Crafted"}, "json_string": "{\"text\":\"Purpur Block Crafted\"}"}}, "p.barrel": {"CriteriaName": "minecraft.picked_up:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Picked Up"}, "json_string": "{\"text\":\"Barrel Picked Up\"}"}}, "b.oakSapling": {"CriteriaName": "minecraft.broken:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Broken"}, "json_string": "{\"text\":\"Oak Sapling Broken\"}"}}, "c.chicken": {"CriteriaName": "minecraft.crafted:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Crafted"}, "json_string": "{\"text\":\"Chicken Crafted\"}"}}, "b.oxidizedCutCopper": {"CriteriaName": "minecraft.broken:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Broken"}, "json_string": "{\"text\":\"Oxidized Cut Copper Broken\"}"}}, "d.furnaceMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Furnace Minecart"}, "json_string": "{\"text\":\"Killed by Furnace Minecart\"}"}}, "cu.sleepInBed": {"CriteriaName": "minecraft.custom:minecraft.sleep_in_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sleep In Bed"}, "json_string": "{\"text\":\"Sleep In Bed\"}"}}, "c.magentaConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Crafted"}, "json_string": "{\"text\":\"Magenta Concrete Powder Crafted\"}"}}, "u.ironBars": {"CriteriaName": "minecraft.used:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Used"}, "json_string": "{\"text\":\"Iron Bars Used\"}"}}, "c.rawIronBlock": {"CriteriaName": "minecraft.crafted:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Crafted"}, "json_string": "{\"text\":\"Raw Iron Block Crafted\"}"}}, "k.evokerFangs": {"CriteriaName": "minecraft.killed:minecraft.evoker_fangs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Fangs Killed"}, "json_string": "{\"text\":\"Evoker Fangs Killed\"}"}}, "b.deepslateTileWall": {"CriteriaName": "minecraft.broken:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Broken"}, "json_string": "{\"text\":\"Deepslate Tile Wall Broken\"}"}}, "c.lightGrayStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Crafted"}, "json_string": "{\"text\":\"Light Gray Stained Glass Crafted\"}"}}, "k.vex": {"CriteriaName": "minecraft.killed:minecraft.vex", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Killed"}, "json_string": "{\"text\":\"Vex Killed\"}"}}, "p.dioriteWall": {"CriteriaName": "minecraft.picked_up:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Picked Up"}, "json_string": "{\"text\":\"Diorite Wall Picked Up\"}"}}, "c.brickWall": {"CriteriaName": "minecraft.crafted:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Crafted"}, "json_string": "{\"text\":\"Brick Wall Crafted\"}"}}, "m.dioriteWall": {"CriteriaName": "minecraft.mined:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Mined"}, "json_string": "{\"text\":\"Diorite Wall Mined\"}"}}, "c.cyanShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Crafted"}, "json_string": "{\"text\":\"Cyan Shulker Box Crafted\"}"}}, "b.experienceBottle": {"CriteriaName": "minecraft.broken:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Broken"}, "json_string": "{\"text\":\"Experience Bottle Broken\"}"}}, "c.grayShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Crafted"}, "json_string": "{\"text\":\"Gray Shulker Box Crafted\"}"}}, "c.dragonHead": {"CriteriaName": "minecraft.crafted:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Crafted"}, "json_string": "{\"text\":\"Dragon Head Crafted\"}"}}, "c.pinkTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Crafted"}, "json_string": "{\"text\":\"Pink Terracotta Crafted\"}"}}, "q.deepslateBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Dropped"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Dropped\"}"}}, "u.weepingVines": {"CriteriaName": "minecraft.used:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Used"}, "json_string": "{\"text\":\"Weeping Vines Used\"}"}}, "c.goldenBoots": {"CriteriaName": "minecraft.crafted:minecraft.golden_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Boots Crafted"}, "json_string": "{\"text\":\"Golden Boots Crafted\"}"}}, "q.torch": {"CriteriaName": "minecraft.dropped:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Dropped"}, "json_string": "{\"text\":\"Torch Dropped\"}"}}, "q.strippedCrimsonStem": {"CriteriaName": "minecraft.dropped:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Dropped"}, "json_string": "{\"text\":\"Stripped Crimson Stem Dropped\"}"}}, "m.deadTubeCoralFan": {"CriteriaName": "minecraft.mined:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Mined"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Mined\"}"}}, "d.witch": {"CriteriaName": "minecraft.killed_by:minecraft.witch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Witch"}, "json_string": "{\"text\":\"Killed by Witch\"}"}}, "p.bamboo": {"CriteriaName": "minecraft.picked_up:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Picked Up"}, "json_string": "{\"text\":\"Bamboo Picked Up\"}"}}, "u.whiteCarpet": {"CriteriaName": "minecraft.used:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Used"}, "json_string": "{\"text\":\"White Carpet Used\"}"}}, "b.weatheredCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Broken\"}"}}, "k.spectralArrow": {"CriteriaName": "minecraft.killed:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Killed"}, "json_string": "{\"text\":\"Spectral Arrow Killed\"}"}}, "b.darkOakSapling": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Broken"}, "json_string": "{\"text\":\"Dark Oak Sapling Broken\"}"}}, "c.cutSandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Cut Sandstone Slab Crafted\"}"}}, "b.crimsonNylium": {"CriteriaName": "minecraft.broken:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Broken"}, "json_string": "{\"text\":\"Crimson Nylium Broken\"}"}}, "m.waxedCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Mined\"}"}}, "m.ironOre": {"CriteriaName": "minecraft.mined:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Mined"}, "json_string": "{\"text\":\"Iron Ore Mined\"}"}}, "m.smoothSandstone": {"CriteriaName": "minecraft.mined:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Mined"}, "json_string": "{\"text\":\"Smooth Sandstone Mined\"}"}}, "c.chestMinecart": {"CriteriaName": "minecraft.crafted:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Crafted"}, "json_string": "{\"text\":\"Chest Minecart Crafted\"}"}}, "u.rottenFlesh": {"CriteriaName": "minecraft.used:minecraft.rotten_flesh", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rotten Flesh Used"}, "json_string": "{\"text\":\"Rotten Flesh Used\"}"}}, "c.crimsonStairs": {"CriteriaName": "minecraft.crafted:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Crafted"}, "json_string": "{\"text\":\"Crimson Stairs Crafted\"}"}}, "b.amethystCluster": {"CriteriaName": "minecraft.broken:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Broken"}, "json_string": "{\"text\":\"Amethyst Cluster Broken\"}"}}, "m.blueShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Mined"}, "json_string": "{\"text\":\"Blue Shulker Box Mined\"}"}}, "p.coarseDirt": {"CriteriaName": "minecraft.picked_up:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Picked Up"}, "json_string": "{\"text\":\"Coarse Dirt Picked Up\"}"}}, "p.spruceSlab": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Picked Up"}, "json_string": "{\"text\":\"Spruce Slab Picked Up\"}"}}, "b.lightBlueWool": {"CriteriaName": "minecraft.broken:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Broken"}, "json_string": "{\"text\":\"Light Blue Wool Broken\"}"}}, "p.piglinBruteSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.piglin_brute_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Piglin Brute Spawn Egg Picked Up\"}"}}, "c.limeCandle": {"CriteriaName": "minecraft.crafted:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Crafted"}, "json_string": "{\"text\":\"Lime Candle Crafted\"}"}}, "q.chain": {"CriteriaName": "minecraft.dropped:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Dropped"}, "json_string": "{\"text\":\"Chain Dropped\"}"}}, "q.waxedCopperBlock": {"CriteriaName": "minecraft.dropped:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Dropped"}, "json_string": "{\"text\":\"Waxed Copper Block Dropped\"}"}}, "m.deadBubbleCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Mined"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Mined\"}"}}, "m.smoothQuartzStairs": {"CriteriaName": "minecraft.mined:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Mined"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Mined\"}"}}, "c.darkOakSapling": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Crafted"}, "json_string": "{\"text\":\"Dark Oak Sapling Crafted\"}"}}, "u.amethystShard": {"CriteriaName": "minecraft.used:minecraft.amethyst_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Shard Used"}, "json_string": "{\"text\":\"Amethyst Shard Used\"}"}}, "u.tubeCoral": {"CriteriaName": "minecraft.used:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Used"}, "json_string": "{\"text\":\"Tube Coral Used\"}"}}, "d.experienceBottle": {"CriteriaName": "minecraft.killed_by:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Experience Bottle"}, "json_string": "{\"text\":\"Killed by Experience Bottle\"}"}}, "c.endStoneBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Crafted"}, "json_string": "{\"text\":\"End Stone Brick Wall Crafted\"}"}}, "c.carrotOnAStick": {"CriteriaName": "minecraft.crafted:minecraft.carrot_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot On A Stick Crafted"}, "json_string": "{\"text\":\"Carrot On A Stick Crafted\"}"}}, "b.polishedGranite": {"CriteriaName": "minecraft.broken:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Broken"}, "json_string": "{\"text\":\"Polished Granite Broken\"}"}}, "u.zombieHorseSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.zombie_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Spawn Egg Used"}, "json_string": "{\"text\":\"Zombie Horse Spawn Egg Used\"}"}}, "p.codSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.cod_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Cod Spawn Egg Picked Up\"}"}}, "p.bakedPotato": {"CriteriaName": "minecraft.picked_up:minecraft.baked_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Baked Potato Picked Up"}, "json_string": "{\"text\":\"Baked Potato Picked Up\"}"}}, "q.emerald": {"CriteriaName": "minecraft.dropped:minecraft.emerald", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Dropped"}, "json_string": "{\"text\":\"Emerald Dropped\"}"}}, "q.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Dropped"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Dropped\"}"}}, "q.clayBall": {"CriteriaName": "minecraft.dropped:minecraft.clay_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Ball Dropped"}, "json_string": "{\"text\":\"Clay Ball Dropped\"}"}}, "c.birchPlanks": {"CriteriaName": "minecraft.crafted:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Crafted"}, "json_string": "{\"text\":\"Birch Planks Crafted\"}"}}, "q.pinkCarpet": {"CriteriaName": "minecraft.dropped:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Dropped"}, "json_string": "{\"text\":\"Pink Carpet Dropped\"}"}}, "u.diamondSword": {"CriteriaName": "minecraft.used:minecraft.diamond_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Sword Used"}, "json_string": "{\"text\":\"Diamond Sword Used\"}"}}, "q.yellowShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Dropped"}, "json_string": "{\"text\":\"Yellow Shulker Box Dropped\"}"}}, "p.cowSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.cow_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Cow Spawn Egg Picked Up\"}"}}, "c.redCandle": {"CriteriaName": "minecraft.crafted:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Crafted"}, "json_string": "{\"text\":\"Red Candle Crafted\"}"}}, "b.stone": {"CriteriaName": "minecraft.broken:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Broken"}, "json_string": "{\"text\":\"Stone Broken\"}"}}, "c.strippedAcaciaWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Crafted"}, "json_string": "{\"text\":\"Stripped Acacia Wood Crafted\"}"}}, "q.limeDye": {"CriteriaName": "minecraft.dropped:minecraft.lime_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Dye Dropped"}, "json_string": "{\"text\":\"Lime Dye Dropped\"}"}}, "c.diamondBoots": {"CriteriaName": "minecraft.crafted:minecraft.diamond_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Boots Crafted"}, "json_string": "{\"text\":\"Diamond Boots Crafted\"}"}}, "q.netherBrickFence": {"CriteriaName": "minecraft.dropped:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Dropped"}, "json_string": "{\"text\":\"Nether Brick Fence Dropped\"}"}}, "m.light": {"CriteriaName": "minecraft.mined:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Mined"}, "json_string": "{\"text\":\"Light Mined\"}"}}, "b.goldBlock": {"CriteriaName": "minecraft.broken:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Broken"}, "json_string": "{\"text\":\"Gold Block Broken\"}"}}, "b.pinkCandle": {"CriteriaName": "minecraft.broken:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Broken"}, "json_string": "{\"text\":\"Pink Candle Broken\"}"}}, "q.fireCharge": {"CriteriaName": "minecraft.dropped:minecraft.fire_charge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Charge Dropped"}, "json_string": "{\"text\":\"Fire Charge Dropped\"}"}}, "m.cobblestoneSlab": {"CriteriaName": "minecraft.mined:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Mined"}, "json_string": "{\"text\":\"Cobblestone Slab Mined\"}"}}, "q.cyanStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Dropped"}, "json_string": "{\"text\":\"Cyan Stained Glass Dropped\"}"}}, "g.hunger": {"CriteriaName": "food", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hunger"}, "json_string": "{\"text\":\"Hunger\"}"}}, "b.carvedPumpkin": {"CriteriaName": "minecraft.broken:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Broken"}, "json_string": "{\"text\":\"Carved Pumpkin Broken\"}"}}, "m.wetSponge": {"CriteriaName": "minecraft.mined:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Mined"}, "json_string": "{\"text\":\"Wet Sponge Mined\"}"}}, "c.mossyCobblestone": {"CriteriaName": "minecraft.crafted:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Crafted"}, "json_string": "{\"text\":\"Mossy Cobblestone Crafted\"}"}}, "c.writableBook": {"CriteriaName": "minecraft.crafted:minecraft.writable_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Writable Book Crafted"}, "json_string": "{\"text\":\"Writable Book Crafted\"}"}}, "b.crimsonSlab": {"CriteriaName": "minecraft.broken:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Broken"}, "json_string": "{\"text\":\"Crimson Slab Broken\"}"}}, "p.limeStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Picked Up"}, "json_string": "{\"text\":\"Lime Stained Glass Picked Up\"}"}}, "b.goldenHorseArmor": {"CriteriaName": "minecraft.broken:minecraft.golden_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Horse Armor Broken"}, "json_string": "{\"text\":\"Golden Horse Armor Broken\"}"}}, "b.ironHoe": {"CriteriaName": "minecraft.broken:minecraft.iron_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Hoe Broken"}, "json_string": "{\"text\":\"Iron Hoe Broken\"}"}}, "b.polishedBasalt": {"CriteriaName": "minecraft.broken:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Broken"}, "json_string": "{\"text\":\"Polished Basalt Broken\"}"}}, "c.yellowGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Crafted\"}"}}, "u.rabbitFoot": {"CriteriaName": "minecraft.used:minecraft.rabbit_foot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Foot Used"}, "json_string": "{\"text\":\"Rabbit Foot Used\"}"}}, "p.muleSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.mule_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Mule Spawn Egg Picked Up\"}"}}, "q.mossyStoneBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Dropped"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Dropped\"}"}}, "c.cocoaBeans": {"CriteriaName": "minecraft.crafted:minecraft.cocoa_beans", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Beans Crafted"}, "json_string": "{\"text\":\"Cocoa Beans Crafted\"}"}}, "m.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Mined"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Mined\"}"}}, "m.loom": {"CriteriaName": "minecraft.mined:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Mined"}, "json_string": "{\"text\":\"Loom Mined\"}"}}, "m.pottedJungleSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Jungle Sapling Mined"}, "json_string": "{\"text\":\"Potted Jungle Sapling Mined\"}"}}, "q.scute": {"CriteriaName": "minecraft.dropped:minecraft.scute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scute Dropped"}, "json_string": "{\"text\":\"Scute Dropped\"}"}}, "c.daylightDetector": {"CriteriaName": "minecraft.crafted:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Crafted"}, "json_string": "{\"text\":\"Daylight Detector Crafted\"}"}}, "b.redNetherBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Broken"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Broken\"}"}}, "m.creeperHead": {"CriteriaName": "minecraft.mined:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Mined"}, "json_string": "{\"text\":\"Creeper Head Mined\"}"}}, "q.chippedAnvil": {"CriteriaName": "minecraft.dropped:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Dropped"}, "json_string": "{\"text\":\"Chipped Anvil Dropped\"}"}}, "g.inspectDispenser": {"CriteriaName": "minecraft.custom:minecraft.inspect_dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Inspect Dispenser"}, "json_string": "{\"text\":\"Inspect Dispenser\"}"}}, "u.yellowCarpet": {"CriteriaName": "minecraft.used:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Used"}, "json_string": "{\"text\":\"Yellow Carpet Used\"}"}}, "b.witherRose": {"CriteriaName": "minecraft.broken:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Broken"}, "json_string": "{\"text\":\"Wither Rose Broken\"}"}}, "u.orangeBed": {"CriteriaName": "minecraft.used:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Used"}, "json_string": "{\"text\":\"Orange Bed Used\"}"}}, "m.birchDoor": {"CriteriaName": "minecraft.mined:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Mined"}, "json_string": "{\"text\":\"Birch Door Mined\"}"}}, "u.purpurStairs": {"CriteriaName": "minecraft.used:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Used"}, "json_string": "{\"text\":\"Purpur Stairs Used\"}"}}, "c.batSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.bat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Spawn Egg Crafted"}, "json_string": "{\"text\":\"Bat Spawn Egg Crafted\"}"}}, "c.seaPickle": {"CriteriaName": "minecraft.crafted:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Crafted"}, "json_string": "{\"text\":\"Sea Pickle Crafted\"}"}}, "u.deepslateEmeraldOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Used"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Used\"}"}}, "p.cookedBeef": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Beef Picked Up"}, "json_string": "{\"text\":\"Cooked Beef Picked Up\"}"}}, "u.itemFrame": {"CriteriaName": "minecraft.used:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Used"}, "json_string": "{\"text\":\"Item Frame Used\"}"}}, "c.terracotta": {"CriteriaName": "minecraft.crafted:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Crafted"}, "json_string": "{\"text\":\"Terracotta Crafted\"}"}}, "b.quartzPillar": {"CriteriaName": "minecraft.broken:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Broken"}, "json_string": "{\"text\":\"Quartz Pillar Broken\"}"}}, "c.pumpkin": {"CriteriaName": "minecraft.crafted:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Crafted"}, "json_string": "{\"text\":\"Pumpkin Crafted\"}"}}, "u.polishedBlackstoneStairs": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Used"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Used\"}"}}, "u.mossyStoneBrickSlab": {"CriteriaName": "minecraft.used:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Used"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Used\"}"}}, "q.emeraldBlock": {"CriteriaName": "minecraft.dropped:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Dropped"}, "json_string": "{\"text\":\"Emerald Block Dropped\"}"}}, "p.cutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Picked Up"}, "json_string": "{\"text\":\"Cut Copper Picked Up\"}"}}, "p.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Picked Up\"}"}}, "m.largeFern": {"CriteriaName": "minecraft.mined:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Mined"}, "json_string": "{\"text\":\"Large Fern Mined\"}"}}, "b.andesiteSlab": {"CriteriaName": "minecraft.broken:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Broken"}, "json_string": "{\"text\":\"Andesite Slab Broken\"}"}}, "u.jungleSign": {"CriteriaName": "minecraft.used:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Used"}, "json_string": "{\"text\":\"Jungle Sign Used\"}"}}, "m.diamondOre": {"CriteriaName": "minecraft.mined:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Mined"}, "json_string": "{\"text\":\"Diamond Ore Mined\"}"}}, "b.infestedMossyStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Broken"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Broken\"}"}}, "u.limeGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Used"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Used\"}"}}, "u.leather": {"CriteriaName": "minecraft.used:minecraft.leather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Used"}, "json_string": "{\"text\":\"Leather Used\"}"}}, "p.acaciaSapling": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Picked Up"}, "json_string": "{\"text\":\"Acacia Sapling Picked Up\"}"}}, "m.crimsonPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Mined"}, "json_string": "{\"text\":\"Crimson Pressure Plate Mined\"}"}}, "b.sandstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Broken"}, "json_string": "{\"text\":\"Sandstone Stairs Broken\"}"}}, "q.coal": {"CriteriaName": "minecraft.dropped:minecraft.coal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Dropped"}, "json_string": "{\"text\":\"Coal Dropped\"}"}}, "m.redWallBanner": {"CriteriaName": "minecraft.mined:minecraft.red_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wall Banner Mined"}, "json_string": "{\"text\":\"Red Wall Banner Mined\"}"}}, "m.copperOre": {"CriteriaName": "minecraft.mined:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Mined"}, "json_string": "{\"text\":\"Copper Ore Mined\"}"}}, "b.beehive": {"CriteriaName": "minecraft.broken:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Broken"}, "json_string": "{\"text\":\"Beehive Broken\"}"}}, "c.grayStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Crafted\"}"}}, "b.carrotOnAStick": {"CriteriaName": "minecraft.broken:minecraft.carrot_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot On A Stick Broken"}, "json_string": "{\"text\":\"Carrot On A Stick Broken\"}"}}, "b.leatherHelmet": {"CriteriaName": "minecraft.broken:minecraft.leather_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Helmet Broken"}, "json_string": "{\"text\":\"Leather Helmet Broken\"}"}}, "m.redSandstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Mined"}, "json_string": "{\"text\":\"Red Sandstone Stairs Mined\"}"}}, "c.bakedPotato": {"CriteriaName": "minecraft.crafted:minecraft.baked_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Baked Potato Crafted"}, "json_string": "{\"text\":\"Baked Potato Crafted\"}"}}, "c.codSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.cod_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Spawn Egg Crafted"}, "json_string": "{\"text\":\"Cod Spawn Egg Crafted\"}"}}, "b.crimsonFungus": {"CriteriaName": "minecraft.broken:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Broken"}, "json_string": "{\"text\":\"Crimson Fungus Broken\"}"}}, "q.structureBlock": {"CriteriaName": "minecraft.dropped:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Dropped"}, "json_string": "{\"text\":\"Structure Block Dropped\"}"}}, "tc.use_netherite": {"CriteriaName": "minecraft.used:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_netherite"}, "json_string": "{\"text\":\"tc.use_netherite\"}"}}, "b.structureVoid": {"CriteriaName": "minecraft.broken:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Broken"}, "json_string": "{\"text\":\"Structure Void Broken\"}"}}, "c.rawCopper": {"CriteriaName": "minecraft.crafted:minecraft.raw_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Crafted"}, "json_string": "{\"text\":\"Raw Copper Crafted\"}"}}, "m.birchLeaves": {"CriteriaName": "minecraft.mined:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Mined"}, "json_string": "{\"text\":\"Birch Leaves Mined\"}"}}, "q.lightGrayCandle": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Dropped"}, "json_string": "{\"text\":\"Light Gray Candle Dropped\"}"}}, "b.pufferfish": {"CriteriaName": "minecraft.broken:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Broken"}, "json_string": "{\"text\":\"Pufferfish Broken\"}"}}, "b.goldenHoe": {"CriteriaName": "minecraft.broken:minecraft.golden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Hoe Broken"}, "json_string": "{\"text\":\"Golden Hoe Broken\"}"}}, "m.deepslateLapisOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Mined"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Mined\"}"}}, "p.furnace": {"CriteriaName": "minecraft.picked_up:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Picked Up"}, "json_string": "{\"text\":\"Furnace Picked Up\"}"}}, "c.limeShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Crafted"}, "json_string": "{\"text\":\"Lime Shulker Box Crafted\"}"}}, "m.ice": {"CriteriaName": "minecraft.mined:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Mined"}, "json_string": "{\"text\":\"Ice Mined\"}"}}, "c.magentaCandle": {"CriteriaName": "minecraft.crafted:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Crafted"}, "json_string": "{\"text\":\"Magenta Candle Crafted\"}"}}, "c.poweredRail": {"CriteriaName": "minecraft.crafted:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Crafted"}, "json_string": "{\"text\":\"Powered Rail Crafted\"}"}}, "u.beef": {"CriteriaName": "minecraft.used:minecraft.beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beef Used"}, "json_string": "{\"text\":\"Beef Used\"}"}}, "q.oakDoor": {"CriteriaName": "minecraft.dropped:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Dropped"}, "json_string": "{\"text\":\"Oak Door Dropped\"}"}}, "q.darkOakLog": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Dropped"}, "json_string": "{\"text\":\"Dark Oak Log Dropped\"}"}}, "b.acaciaFenceGate": {"CriteriaName": "minecraft.broken:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Broken"}, "json_string": "{\"text\":\"Acacia Fence Gate Broken\"}"}}, "m.roseBush": {"CriteriaName": "minecraft.mined:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Mined"}, "json_string": "{\"text\":\"Rose Bush Mined\"}"}}, "p.target": {"CriteriaName": "minecraft.picked_up:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Picked Up"}, "json_string": "{\"text\":\"Target Picked Up\"}"}}, "b.limeShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Broken"}, "json_string": "{\"text\":\"Lime Shulker Box Broken\"}"}}, "c.poppedChorusFruit": {"CriteriaName": "minecraft.crafted:minecraft.popped_chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Popped Chorus Fruit Crafted"}, "json_string": "{\"text\":\"Popped Chorus Fruit Crafted\"}"}}, "m.endStoneBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Mined"}, "json_string": "{\"text\":\"End Stone Brick Stairs Mined\"}"}}, "c.chainmailLeggings": {"CriteriaName": "minecraft.crafted:minecraft.chainmail_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Leggings Crafted"}, "json_string": "{\"text\":\"Chainmail Leggings Crafted\"}"}}, "c.polishedBasalt": {"CriteriaName": "minecraft.crafted:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Crafted"}, "json_string": "{\"text\":\"Polished Basalt Crafted\"}"}}, "q.smithingTable": {"CriteriaName": "minecraft.dropped:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Dropped"}, "json_string": "{\"text\":\"Smithing Table Dropped\"}"}}, "u.ironSword": {"CriteriaName": "minecraft.used:minecraft.iron_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Sword Used"}, "json_string": "{\"text\":\"Iron Sword Used\"}"}}, "p.rabbitHide": {"CriteriaName": "minecraft.picked_up:minecraft.rabbit_hide", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Hide Picked Up"}, "json_string": "{\"text\":\"Rabbit Hide Picked Up\"}"}}, "b.whiteCarpet": {"CriteriaName": "minecraft.broken:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Broken"}, "json_string": "{\"text\":\"White Carpet Broken\"}"}}, "m.soulTorch": {"CriteriaName": "minecraft.mined:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Mined"}, "json_string": "{\"text\":\"Soul Torch Mined\"}"}}, "p.leather": {"CriteriaName": "minecraft.picked_up:minecraft.leather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Picked Up"}, "json_string": "{\"text\":\"Leather Picked Up\"}"}}, "b.debugStick": {"CriteriaName": "minecraft.broken:minecraft.debug_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Debug Stick Broken"}, "json_string": "{\"text\":\"Debug Stick Broken\"}"}}, "u.greenTerracotta": {"CriteriaName": "minecraft.used:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Used"}, "json_string": "{\"text\":\"Green Terracotta Used\"}"}}, "m.smithingTable": {"CriteriaName": "minecraft.mined:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Mined"}, "json_string": "{\"text\":\"Smithing Table Mined\"}"}}, "q.tropicalFishBucket": {"CriteriaName": "minecraft.dropped:minecraft.tropical_fish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Bucket Dropped"}, "json_string": "{\"text\":\"Tropical Fish Bucket Dropped\"}"}}, "c.spruceLeaves": {"CriteriaName": "minecraft.crafted:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Crafted"}, "json_string": "{\"text\":\"Spruce Leaves Crafted\"}"}}, "q.oakStairs": {"CriteriaName": "minecraft.dropped:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Dropped"}, "json_string": "{\"text\":\"Oak Stairs Dropped\"}"}}, "q.phantomSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.phantom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Spawn Egg Dropped"}, "json_string": "{\"text\":\"Phantom Spawn Egg Dropped\"}"}}, "b.birchSlab": {"CriteriaName": "minecraft.broken:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Broken"}, "json_string": "{\"text\":\"Birch Slab Broken\"}"}}, "u.cornflower": {"CriteriaName": "minecraft.used:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Used"}, "json_string": "{\"text\":\"Cornflower Used\"}"}}, "q.magentaConcrete": {"CriteriaName": "minecraft.dropped:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Dropped"}, "json_string": "{\"text\":\"Magenta Concrete Dropped\"}"}}, "q.junglePressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Dropped"}, "json_string": "{\"text\":\"Jungle Pressure Plate Dropped\"}"}}, "q.deadBush": {"CriteriaName": "minecraft.dropped:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Dropped"}, "json_string": "{\"text\":\"Dead Bush Dropped\"}"}}, "c.coal": {"CriteriaName": "minecraft.crafted:minecraft.coal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Crafted"}, "json_string": "{\"text\":\"Coal Crafted\"}"}}, "k.item": {"CriteriaName": "minecraft.killed:minecraft.item", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Killed"}, "json_string": "{\"text\":\"Item Killed\"}"}}, "u.exposedCutCopper": {"CriteriaName": "minecraft.used:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Used"}, "json_string": "{\"text\":\"Exposed Cut Copper Used\"}"}}, "d.turtle": {"CriteriaName": "minecraft.killed_by:minecraft.turtle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Turtle"}, "json_string": "{\"text\":\"Killed by Turtle\"}"}}, "u.spruceFence": {"CriteriaName": "minecraft.used:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Used"}, "json_string": "{\"text\":\"Spruce Fence Used\"}"}}, "q.musicDiscCat": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Cat Dropped"}, "json_string": "{\"text\":\"Music Disc Cat Dropped\"}"}}, "q.diamondAxe": {"CriteriaName": "minecraft.dropped:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Axe Dropped"}, "json_string": "{\"text\":\"Diamond Axe Dropped\"}"}}, "c.lightGrayCarpet": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Crafted"}, "json_string": "{\"text\":\"Light Gray Carpet Crafted\"}"}}, "q.warpedFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Dropped"}, "json_string": "{\"text\":\"Warped Fence Gate Dropped\"}"}}, "c.yellowStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Crafted"}, "json_string": "{\"text\":\"Yellow Stained Glass Crafted\"}"}}, "m.jungleWood": {"CriteriaName": "minecraft.mined:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Mined"}, "json_string": "{\"text\":\"Jungle Wood Mined\"}"}}, "b.quartzBlock": {"CriteriaName": "minecraft.broken:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Broken"}, "json_string": "{\"text\":\"Quartz Block Broken\"}"}}, "c.shears": {"CriteriaName": "minecraft.crafted:minecraft.shears", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shears Crafted"}, "json_string": "{\"text\":\"Shears Crafted\"}"}}, "c.jungleTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Crafted"}, "json_string": "{\"text\":\"Jungle Trapdoor Crafted\"}"}}, "c.vindicatorSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.vindicator_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Spawn Egg Crafted"}, "json_string": "{\"text\":\"Vindicator Spawn Egg Crafted\"}"}}, "m.andesiteSlab": {"CriteriaName": "minecraft.mined:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Mined"}, "json_string": "{\"text\":\"Andesite Slab Mined\"}"}}, "p.yellowBanner": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Picked Up"}, "json_string": "{\"text\":\"Yellow Banner Picked Up\"}"}}, "u.deadHornCoral": {"CriteriaName": "minecraft.used:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Used"}, "json_string": "{\"text\":\"Dead Horn Coral Used\"}"}}, "b.polishedAndesiteSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Broken"}, "json_string": "{\"text\":\"Polished Andesite Slab Broken\"}"}}, "b.exposedCopper": {"CriteriaName": "minecraft.broken:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Broken"}, "json_string": "{\"text\":\"Exposed Copper Broken\"}"}}, "q.ironSword": {"CriteriaName": "minecraft.dropped:minecraft.iron_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Sword Dropped"}, "json_string": "{\"text\":\"Iron Sword Dropped\"}"}}, "u.brownTerracotta": {"CriteriaName": "minecraft.used:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Used"}, "json_string": "{\"text\":\"Brown Terracotta Used\"}"}}, "b.prismarineBricks": {"CriteriaName": "minecraft.broken:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Broken"}, "json_string": "{\"text\":\"Prismarine Bricks Broken\"}"}}, "c.limeConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Crafted"}, "json_string": "{\"text\":\"Lime Concrete Powder Crafted\"}"}}, "b.bowl": {"CriteriaName": "minecraft.broken:minecraft.bowl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bowl Broken"}, "json_string": "{\"text\":\"Bowl Broken\"}"}}, "u.polishedBlackstoneSlab": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Used"}, "json_string": "{\"text\":\"Polished Blackstone Slab Used\"}"}}, "m.mossyStoneBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Mined"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Mined\"}"}}, "m.playerHead": {"CriteriaName": "minecraft.mined:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Mined"}, "json_string": "{\"text\":\"Player Head Mined\"}"}}, "p.warpedSign": {"CriteriaName": "minecraft.picked_up:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Picked Up"}, "json_string": "{\"text\":\"Warped Sign Picked Up\"}"}}, "u.axolotlBucket": {"CriteriaName": "minecraft.used:minecraft.axolotl_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Bucket Used"}, "json_string": "{\"text\":\"Axolotl Bucket Used\"}"}}, "p.quartzBricks": {"CriteriaName": "minecraft.picked_up:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Picked Up"}, "json_string": "{\"text\":\"Quartz Bricks Picked Up\"}"}}, "u.cookedSalmon": {"CriteriaName": "minecraft.used:minecraft.cooked_salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Salmon Used"}, "json_string": "{\"text\":\"Cooked Salmon Used\"}"}}, "u.flintAndSteel": {"CriteriaName": "minecraft.used:minecraft.flint_and_steel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint And Steel Used"}, "json_string": "{\"text\":\"Flint And Steel Used\"}"}}, "q.azaleaLeaves": {"CriteriaName": "minecraft.dropped:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Dropped"}, "json_string": "{\"text\":\"Azalea Leaves Dropped\"}"}}, "b.netherStar": {"CriteriaName": "minecraft.broken:minecraft.nether_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Star Broken"}, "json_string": "{\"text\":\"Nether Star Broken\"}"}}, "u.purpleBanner": {"CriteriaName": "minecraft.used:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Used"}, "json_string": "{\"text\":\"Purple Banner Used\"}"}}, "u.netherWart": {"CriteriaName": "minecraft.used:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Used"}, "json_string": "{\"text\":\"Nether Wart Used\"}"}}, "b.redstone": {"CriteriaName": "minecraft.broken:minecraft.redstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Broken"}, "json_string": "{\"text\":\"Redstone Broken\"}"}}, "p.cutRedSandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Picked Up\"}"}}, "k.experienceBottle": {"CriteriaName": "minecraft.killed:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Killed"}, "json_string": "{\"text\":\"Experience Bottle Killed\"}"}}, "c.cyanDye": {"CriteriaName": "minecraft.crafted:minecraft.cyan_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Dye Crafted"}, "json_string": "{\"text\":\"Cyan Dye Crafted\"}"}}, "b.leatherChestplate": {"CriteriaName": "minecraft.broken:minecraft.leather_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Chestplate Broken"}, "json_string": "{\"text\":\"Leather Chestplate Broken\"}"}}, "q.detectorRail": {"CriteriaName": "minecraft.dropped:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Dropped"}, "json_string": "{\"text\":\"Detector Rail Dropped\"}"}}, "u.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Used\"}"}}, "m.lightBlueWallBanner": {"CriteriaName": "minecraft.mined:minecraft.light_blue_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wall Banner Mined"}, "json_string": "{\"text\":\"Light Blue Wall Banner Mined\"}"}}, "p.rootedDirt": {"CriteriaName": "minecraft.picked_up:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Picked Up"}, "json_string": "{\"text\":\"Rooted Dirt Picked Up\"}"}}, "q.blackStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Black Stained Glass Pane Dropped\"}"}}, "b.vine": {"CriteriaName": "minecraft.broken:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Broken"}, "json_string": "{\"text\":\"Vine Broken\"}"}}, "q.deadFireCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Dropped"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Dropped\"}"}}, "b.netheriteBoots": {"CriteriaName": "minecraft.broken:minecraft.netherite_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Boots Broken"}, "json_string": "{\"text\":\"Netherite Boots Broken\"}"}}, "m.smoothRedSandstone": {"CriteriaName": "minecraft.mined:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Mined"}, "json_string": "{\"text\":\"Smooth Red Sandstone Mined\"}"}}, "c.brownTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Crafted"}, "json_string": "{\"text\":\"Brown Terracotta Crafted\"}"}}, "p.grayCandle": {"CriteriaName": "minecraft.picked_up:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Picked Up"}, "json_string": "{\"text\":\"Gray Candle Picked Up\"}"}}, "k.shulkerBullet": {"CriteriaName": "minecraft.killed:minecraft.shulker_bullet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Bullet Killed"}, "json_string": "{\"text\":\"Shulker Bullet Killed\"}"}}, "p.waxedCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Cut Copper Picked Up\"}"}}, "u.whiteCandle": {"CriteriaName": "minecraft.used:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Used"}, "json_string": "{\"text\":\"White Candle Used\"}"}}, "b.musicDiscWait": {"CriteriaName": "minecraft.broken:minecraft.music_disc_wait", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Wait Broken"}, "json_string": "{\"text\":\"Music Disc Wait Broken\"}"}}, "m.endStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Mined"}, "json_string": "{\"text\":\"End Stone Bricks Mined\"}"}}, "q.birchTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Dropped"}, "json_string": "{\"text\":\"Birch Trapdoor Dropped\"}"}}, "p.netherBrick": {"CriteriaName": "minecraft.picked_up:minecraft.nether_brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Picked Up"}, "json_string": "{\"text\":\"Nether Brick Picked Up\"}"}}, "b.huskSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.husk_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Spawn Egg Broken"}, "json_string": "{\"text\":\"Husk Spawn Egg Broken\"}"}}, "m.noteBlock": {"CriteriaName": "minecraft.mined:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Mined"}, "json_string": "{\"text\":\"Note Block Mined\"}"}}, "k.donkey": {"CriteriaName": "minecraft.killed:minecraft.donkey", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Killed"}, "json_string": "{\"text\":\"Donkey Killed\"}"}}, "b.deepslateCopperOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Broken"}, "json_string": "{\"text\":\"Deepslate Copper Ore Broken\"}"}}, "b.brownConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Broken"}, "json_string": "{\"text\":\"Brown Concrete Powder Broken\"}"}}, "q.brownWool": {"CriteriaName": "minecraft.dropped:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Dropped"}, "json_string": "{\"text\":\"Brown Wool Dropped\"}"}}, "b.cyanBanner": {"CriteriaName": "minecraft.broken:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Broken"}, "json_string": "{\"text\":\"Cyan Banner Broken\"}"}}, "p.quartzBlock": {"CriteriaName": "minecraft.picked_up:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Picked Up"}, "json_string": "{\"text\":\"Quartz Block Picked Up\"}"}}, "b.blueGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Broken\"}"}}, "u.chorusPlant": {"CriteriaName": "minecraft.used:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Used"}, "json_string": "{\"text\":\"Chorus Plant Used\"}"}}, "p.glowLichen": {"CriteriaName": "minecraft.picked_up:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Picked Up"}, "json_string": "{\"text\":\"Glow Lichen Picked Up\"}"}}, "b.spruceSapling": {"CriteriaName": "minecraft.broken:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Broken"}, "json_string": "{\"text\":\"Spruce Sapling Broken\"}"}}, "q.charcoal": {"CriteriaName": "minecraft.dropped:minecraft.charcoal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Charcoal Dropped"}, "json_string": "{\"text\":\"Charcoal Dropped\"}"}}, "b.orangeShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Broken"}, "json_string": "{\"text\":\"Orange Shulker Box Broken\"}"}}, "c.wanderingTraderSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.wandering_trader_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Spawn Egg Crafted"}, "json_string": "{\"text\":\"Wandering Trader Spawn Egg Crafted\"}"}}, "m.weepingVines": {"CriteriaName": "minecraft.mined:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Mined"}, "json_string": "{\"text\":\"Weeping Vines Mined\"}"}}, "c.redSandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Red Sandstone Slab Crafted\"}"}}, "m.pottedCornflower": {"CriteriaName": "minecraft.mined:minecraft.potted_cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Cornflower Mined"}, "json_string": "{\"text\":\"Potted Cornflower Mined\"}"}}, "c.limeWool": {"CriteriaName": "minecraft.crafted:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Crafted"}, "json_string": "{\"text\":\"Lime Wool Crafted\"}"}}, "b.smithingTable": {"CriteriaName": "minecraft.broken:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Broken"}, "json_string": "{\"text\":\"Smithing Table Broken\"}"}}, "c.yellowConcrete": {"CriteriaName": "minecraft.crafted:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Crafted"}, "json_string": "{\"text\":\"Yellow Concrete Crafted\"}"}}, "m.deadBubbleCoral": {"CriteriaName": "minecraft.mined:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Mined"}, "json_string": "{\"text\":\"Dead Bubble Coral Mined\"}"}}, "b.crimsonPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Broken"}, "json_string": "{\"text\":\"Crimson Pressure Plate Broken\"}"}}, "c.skeletonSkull": {"CriteriaName": "minecraft.crafted:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Crafted"}, "json_string": "{\"text\":\"Skeleton Skull Crafted\"}"}}, "c.mossyStoneBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Crafted"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Crafted\"}"}}, "q.birchStairs": {"CriteriaName": "minecraft.dropped:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Dropped"}, "json_string": "{\"text\":\"Birch Stairs Dropped\"}"}}, "p.netherBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Nether Brick Stairs Picked Up\"}"}}, "b.map": {"CriteriaName": "minecraft.broken:minecraft.map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Map Broken"}, "json_string": "{\"text\":\"Map Broken\"}"}}, "d.trident": {"CriteriaName": "minecraft.killed_by:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Trident"}, "json_string": "{\"text\":\"Killed by Trident\"}"}}, "m.magentaConcrete": {"CriteriaName": "minecraft.mined:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Mined"}, "json_string": "{\"text\":\"Magenta Concrete Mined\"}"}}, "u.dandelion": {"CriteriaName": "minecraft.used:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Used"}, "json_string": "{\"text\":\"Dandelion Used\"}"}}, "m.fireCoral": {"CriteriaName": "minecraft.mined:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Mined"}, "json_string": "{\"text\":\"Fire Coral Mined\"}"}}, "p.emeraldOre": {"CriteriaName": "minecraft.picked_up:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Picked Up"}, "json_string": "{\"text\":\"Emerald Ore Picked Up\"}"}}, "m.lightBlueStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Mined"}, "json_string": "{\"text\":\"Light Blue Stained Glass Mined\"}"}}, "m.weatheredCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Mined\"}"}}, "q.ironBlock": {"CriteriaName": "minecraft.dropped:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Dropped"}, "json_string": "{\"text\":\"Iron Block Dropped\"}"}}, "p.orangeConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Orange Concrete Powder Picked Up\"}"}}, "b.spruceWood": {"CriteriaName": "minecraft.broken:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Broken"}, "json_string": "{\"text\":\"Spruce Wood Broken\"}"}}, "m.deepslateBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Mined"}, "json_string": "{\"text\":\"Deepslate Brick Slab Mined\"}"}}, "u.blueTerracotta": {"CriteriaName": "minecraft.used:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Used"}, "json_string": "{\"text\":\"Blue Terracotta Used\"}"}}, "c.musicDiscWait": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_wait", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Wait Crafted"}, "json_string": "{\"text\":\"Music Disc Wait Crafted\"}"}}, "m.oakStairs": {"CriteriaName": "minecraft.mined:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Mined"}, "json_string": "{\"text\":\"Oak Stairs Mined\"}"}}, "b.spruceFence": {"CriteriaName": "minecraft.broken:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Broken"}, "json_string": "{\"text\":\"Spruce Fence Broken\"}"}}, "u.oakPlanks": {"CriteriaName": "minecraft.used:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Used"}, "json_string": "{\"text\":\"Oak Planks Used\"}"}}, "u.stickyPiston": {"CriteriaName": "minecraft.used:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Used"}, "json_string": "{\"text\":\"Sticky Piston Used\"}"}}, "q.lightBlueDye": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Dye Dropped"}, "json_string": "{\"text\":\"Light Blue Dye Dropped\"}"}}, "q.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Dropped"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Dropped\"}"}}, "b.netherBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Broken"}, "json_string": "{\"text\":\"Nether Brick Slab Broken\"}"}}, "q.cobweb": {"CriteriaName": "minecraft.dropped:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Dropped"}, "json_string": "{\"text\":\"Cobweb Dropped\"}"}}, "q.birchSlab": {"CriteriaName": "minecraft.dropped:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Dropped"}, "json_string": "{\"text\":\"Birch Slab Dropped\"}"}}, "p.axolotlSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.axolotl_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Axolotl Spawn Egg Picked Up\"}"}}, "b.magentaConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Broken"}, "json_string": "{\"text\":\"Magenta Concrete Powder Broken\"}"}}, "c.magentaGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Crafted\"}"}}, "q.traderLlamaSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.trader_llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Spawn Egg Dropped"}, "json_string": "{\"text\":\"Trader Llama Spawn Egg Dropped\"}"}}, "c.deepslate": {"CriteriaName": "minecraft.crafted:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Crafted"}, "json_string": "{\"text\":\"Deepslate Crafted\"}"}}, "c.cyanCandle": {"CriteriaName": "minecraft.crafted:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Crafted"}, "json_string": "{\"text\":\"Cyan Candle Crafted\"}"}}, "u.coalBlock": {"CriteriaName": "minecraft.used:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Used"}, "json_string": "{\"text\":\"Coal Block Used\"}"}}, "p.blackStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Black Stained Glass Pane Picked Up\"}"}}, "c.waxedCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Crafted"}, "json_string": "{\"text\":\"Waxed Cut Copper Crafted\"}"}}, "c.brownStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Crafted"}, "json_string": "{\"text\":\"Brown Stained Glass Crafted\"}"}}, "b.exposedCutCopper": {"CriteriaName": "minecraft.broken:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Broken"}, "json_string": "{\"text\":\"Exposed Cut Copper Broken\"}"}}, "u.carrot": {"CriteriaName": "minecraft.used:minecraft.carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot Used"}, "json_string": "{\"text\":\"Carrot Used\"}"}}, "q.beacon": {"CriteriaName": "minecraft.dropped:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Dropped"}, "json_string": "{\"text\":\"Beacon Dropped\"}"}}, "b.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Broken\"}"}}, "b.greenDye": {"CriteriaName": "minecraft.broken:minecraft.green_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Dye Broken"}, "json_string": "{\"text\":\"Green Dye Broken\"}"}}, "b.polishedBlackstoneBricks": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Broken"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Broken\"}"}}, "b.greenStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Broken"}, "json_string": "{\"text\":\"Green Stained Glass Broken\"}"}}, "c.commandBlock": {"CriteriaName": "minecraft.crafted:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Crafted"}, "json_string": "{\"text\":\"Command Block Crafted\"}"}}, "q.goldenHoe": {"CriteriaName": "minecraft.dropped:minecraft.golden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Hoe Dropped"}, "json_string": "{\"text\":\"Golden Hoe Dropped\"}"}}, "b.ironSword": {"CriteriaName": "minecraft.broken:minecraft.iron_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Sword Broken"}, "json_string": "{\"text\":\"Iron Sword Broken\"}"}}, "c.acaciaTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Crafted"}, "json_string": "{\"text\":\"Acacia Trapdoor Crafted\"}"}}, "p.jungleTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Picked Up"}, "json_string": "{\"text\":\"Jungle Trapdoor Picked Up\"}"}}, "p.fermentedSpiderEye": {"CriteriaName": "minecraft.picked_up:minecraft.fermented_spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fermented Spider Eye Picked Up"}, "json_string": "{\"text\":\"Fermented Spider Eye Picked Up\"}"}}, "u.enderChest": {"CriteriaName": "minecraft.used:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Used"}, "json_string": "{\"text\":\"Ender Chest Used\"}"}}, "p.whiteConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Picked Up"}, "json_string": "{\"text\":\"White Concrete Picked Up\"}"}}, "b.magmaBlock": {"CriteriaName": "minecraft.broken:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Broken"}, "json_string": "{\"text\":\"Magma Block Broken\"}"}}, "d.zombieHorse": {"CriteriaName": "minecraft.killed_by:minecraft.zombie_horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Zombie Horse"}, "json_string": "{\"text\":\"Killed by Zombie Horse\"}"}}, "u.horseSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Spawn Egg Used"}, "json_string": "{\"text\":\"Horse Spawn Egg Used\"}"}}, "p.spruceFence": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Picked Up"}, "json_string": "{\"text\":\"Spruce Fence Picked Up\"}"}}, "m.bricks": {"CriteriaName": "minecraft.mined:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Mined"}, "json_string": "{\"text\":\"Bricks Mined\"}"}}, "b.book": {"CriteriaName": "minecraft.broken:minecraft.book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Book Broken"}, "json_string": "{\"text\":\"Book Broken\"}"}}, "u.amethystCluster": {"CriteriaName": "minecraft.used:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Used"}, "json_string": "{\"text\":\"Amethyst Cluster Used\"}"}}, "p.fireworkStar": {"CriteriaName": "minecraft.picked_up:minecraft.firework_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Star Picked Up"}, "json_string": "{\"text\":\"Firework Star Picked Up\"}"}}, "p.blackstoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Picked Up"}, "json_string": "{\"text\":\"Blackstone Wall Picked Up\"}"}}, "p.shroomlight": {"CriteriaName": "minecraft.picked_up:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Picked Up"}, "json_string": "{\"text\":\"Shroomlight Picked Up\"}"}}, "c.whiteConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Crafted"}, "json_string": "{\"text\":\"White Concrete Powder Crafted\"}"}}, "p.graniteWall": {"CriteriaName": "minecraft.picked_up:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Picked Up"}, "json_string": "{\"text\":\"Granite Wall Picked Up\"}"}}, "q.redTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Dropped"}, "json_string": "{\"text\":\"Red Terracotta Dropped\"}"}}, "p.spiderSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Spider Spawn Egg Picked Up\"}"}}, "m.pistonHead": {"CriteriaName": "minecraft.mined:minecraft.piston_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Head Mined"}, "json_string": "{\"text\":\"Piston Head Mined\"}"}}, "u.oakSlab": {"CriteriaName": "minecraft.used:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Used"}, "json_string": "{\"text\":\"Oak Slab Used\"}"}}, "p.prismarineWall": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Picked Up"}, "json_string": "{\"text\":\"Prismarine Wall Picked Up\"}"}}, "u.spruceLog": {"CriteriaName": "minecraft.used:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Used"}, "json_string": "{\"text\":\"Spruce Log Used\"}"}}, "b.bone": {"CriteriaName": "minecraft.broken:minecraft.bone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Broken"}, "json_string": "{\"text\":\"Bone Broken\"}"}}, "q.cookedPorkchop": {"CriteriaName": "minecraft.dropped:minecraft.cooked_porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Porkchop Dropped"}, "json_string": "{\"text\":\"Cooked Porkchop Dropped\"}"}}, "b.lightGrayConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Broken"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Broken\"}"}}, "d.zombie": {"CriteriaName": "minecraft.killed_by:minecraft.zombie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Zombie"}, "json_string": "{\"text\":\"Killed by Zombie\"}"}}, "p.bread": {"CriteriaName": "minecraft.picked_up:minecraft.bread", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bread Picked Up"}, "json_string": "{\"text\":\"Bread Picked Up\"}"}}, "p.ironBoots": {"CriteriaName": "minecraft.picked_up:minecraft.iron_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Boots Picked Up"}, "json_string": "{\"text\":\"Iron Boots Picked Up\"}"}}, "m.warpedTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Mined"}, "json_string": "{\"text\":\"Warped Trapdoor Mined\"}"}}, "c.orangeTulip": {"CriteriaName": "minecraft.crafted:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Crafted"}, "json_string": "{\"text\":\"Orange Tulip Crafted\"}"}}, "c.stoneShovel": {"CriteriaName": "minecraft.crafted:minecraft.stone_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Shovel Crafted"}, "json_string": "{\"text\":\"Stone Shovel Crafted\"}"}}, "c.oakFence": {"CriteriaName": "minecraft.crafted:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Crafted"}, "json_string": "{\"text\":\"Oak Fence Crafted\"}"}}, "p.seaLantern": {"CriteriaName": "minecraft.picked_up:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Picked Up"}, "json_string": "{\"text\":\"Sea Lantern Picked Up\"}"}}, "c.magentaBed": {"CriteriaName": "minecraft.crafted:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Crafted"}, "json_string": "{\"text\":\"Magenta Bed Crafted\"}"}}, "u.lightGrayCandle": {"CriteriaName": "minecraft.used:minecraft.light_gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Used"}, "json_string": "{\"text\":\"Light Gray Candle Used\"}"}}, "c.piglinBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.piglin_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Banner Pattern Crafted"}, "json_string": "{\"text\":\"Piglin Banner Pattern Crafted\"}"}}, "c.graniteStairs": {"CriteriaName": "minecraft.crafted:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Crafted"}, "json_string": "{\"text\":\"Granite Stairs Crafted\"}"}}, "m.barrel": {"CriteriaName": "minecraft.mined:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Mined"}, "json_string": "{\"text\":\"Barrel Mined\"}"}}, "b.rottenFlesh": {"CriteriaName": "minecraft.broken:minecraft.rotten_flesh", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rotten Flesh Broken"}, "json_string": "{\"text\":\"Rotten Flesh Broken\"}"}}, "p.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Picked Up\"}"}}, "u.orangeWool": {"CriteriaName": "minecraft.used:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Used"}, "json_string": "{\"text\":\"Orange Wool Used\"}"}}, "c.lapisBlock": {"CriteriaName": "minecraft.crafted:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Crafted"}, "json_string": "{\"text\":\"Lapis Block Crafted\"}"}}, "p.blazeRod": {"CriteriaName": "minecraft.picked_up:minecraft.blaze_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Rod Picked Up"}, "json_string": "{\"text\":\"Blaze Rod Picked Up\"}"}}, "m.deadBush": {"CriteriaName": "minecraft.mined:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Mined"}, "json_string": "{\"text\":\"Dead Bush Mined\"}"}}, "b.hopperMinecart": {"CriteriaName": "minecraft.broken:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart Broken"}, "json_string": "{\"text\":\"Hopper Minecart Broken\"}"}}, "u.weatheredCopper": {"CriteriaName": "minecraft.used:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Used"}, "json_string": "{\"text\":\"Weathered Copper Used\"}"}}, "u.glass": {"CriteriaName": "minecraft.used:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Used"}, "json_string": "{\"text\":\"Glass Used\"}"}}, "c.melonSlice": {"CriteriaName": "minecraft.crafted:minecraft.melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Slice Crafted"}, "json_string": "{\"text\":\"Melon Slice Crafted\"}"}}, "u.blackGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Used"}, "json_string": "{\"text\":\"Black Glazed Terracotta Used\"}"}}, "c.netherWartBlock": {"CriteriaName": "minecraft.crafted:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Crafted"}, "json_string": "{\"text\":\"Nether Wart Block Crafted\"}"}}, "p.spyglass": {"CriteriaName": "minecraft.picked_up:minecraft.spyglass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spyglass Picked Up"}, "json_string": "{\"text\":\"Spyglass Picked Up\"}"}}, "p.smoothQuartzSlab": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Picked Up"}, "json_string": "{\"text\":\"Smooth Quartz Slab Picked Up\"}"}}, "q.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Dropped"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Dropped\"}"}}, "k.endermite": {"CriteriaName": "minecraft.killed:minecraft.endermite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Killed"}, "json_string": "{\"text\":\"Endermite Killed\"}"}}, "b.limeConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Broken"}, "json_string": "{\"text\":\"Lime Concrete Powder Broken\"}"}}, "u.acaciaFence": {"CriteriaName": "minecraft.used:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Used"}, "json_string": "{\"text\":\"Acacia Fence Used\"}"}}, "c.wheatSeeds": {"CriteriaName": "minecraft.crafted:minecraft.wheat_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Seeds Crafted"}, "json_string": "{\"text\":\"Wheat Seeds Crafted\"}"}}, "b.acaciaButton": {"CriteriaName": "minecraft.broken:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Broken"}, "json_string": "{\"text\":\"Acacia Button Broken\"}"}}, "m.pottedAzureBluet": {"CriteriaName": "minecraft.mined:minecraft.potted_azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Azure Bluet Mined"}, "json_string": "{\"text\":\"Potted Azure Bluet Mined\"}"}}, "m.brainCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Mined"}, "json_string": "{\"text\":\"Brain Coral Block Mined\"}"}}, "m.acaciaFence": {"CriteriaName": "minecraft.mined:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Mined"}, "json_string": "{\"text\":\"Acacia Fence Mined\"}"}}, "p.lightGrayStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Picked Up"}, "json_string": "{\"text\":\"Light Gray Stained Glass Picked Up\"}"}}, "p.bedrock": {"CriteriaName": "minecraft.picked_up:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Picked Up"}, "json_string": "{\"text\":\"Bedrock Picked Up\"}"}}, "c.deepslateCopperOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Copper Ore Crafted\"}"}}, "b.driedKelpBlock": {"CriteriaName": "minecraft.broken:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Broken"}, "json_string": "{\"text\":\"Dried Kelp Block Broken\"}"}}, "q.oakLog": {"CriteriaName": "minecraft.dropped:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Dropped"}, "json_string": "{\"text\":\"Oak Log Dropped\"}"}}, "b.greenShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Broken"}, "json_string": "{\"text\":\"Green Shulker Box Broken\"}"}}, "u.beehive": {"CriteriaName": "minecraft.used:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Used"}, "json_string": "{\"text\":\"Beehive Used\"}"}}, "p.chainCommandBlock": {"CriteriaName": "minecraft.picked_up:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Picked Up"}, "json_string": "{\"text\":\"Chain Command Block Picked Up\"}"}}, "d.rabbit": {"CriteriaName": "minecraft.killed_by:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Rabbit"}, "json_string": "{\"text\":\"Killed by Rabbit\"}"}}, "p.enderPearl": {"CriteriaName": "minecraft.picked_up:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Picked Up"}, "json_string": "{\"text\":\"Ender Pearl Picked Up\"}"}}, "q.lightBlueShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Dropped"}, "json_string": "{\"text\":\"Light Blue Shulker Box Dropped\"}"}}, "c.target": {"CriteriaName": "minecraft.crafted:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Crafted"}, "json_string": "{\"text\":\"Target Crafted\"}"}}, "m.strippedWarpedHyphae": {"CriteriaName": "minecraft.mined:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Mined"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Mined\"}"}}, "c.largeAmethystBud": {"CriteriaName": "minecraft.crafted:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Crafted"}, "json_string": "{\"text\":\"Large Amethyst Bud Crafted\"}"}}, "c.polishedGranite": {"CriteriaName": "minecraft.crafted:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Crafted"}, "json_string": "{\"text\":\"Polished Granite Crafted\"}"}}, "u.spyglass": {"CriteriaName": "minecraft.used:minecraft.spyglass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spyglass Used"}, "json_string": "{\"text\":\"Spyglass Used\"}"}}, "b.darkPrismarineStairs": {"CriteriaName": "minecraft.broken:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Broken"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Broken\"}"}}, "u.honeyBlock": {"CriteriaName": "minecraft.used:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Used"}, "json_string": "{\"text\":\"Honey Block Used\"}"}}, "m.blueStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Mined"}, "json_string": "{\"text\":\"Blue Stained Glass Mined\"}"}}, "p.enderEye": {"CriteriaName": "minecraft.picked_up:minecraft.ender_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Eye Picked Up"}, "json_string": "{\"text\":\"Ender Eye Picked Up\"}"}}, "d.spectralArrow": {"CriteriaName": "minecraft.killed_by:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Spectral Arrow"}, "json_string": "{\"text\":\"Killed by Spectral Arrow\"}"}}, "c.netherGoldOre": {"CriteriaName": "minecraft.crafted:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Crafted"}, "json_string": "{\"text\":\"Nether Gold Ore Crafted\"}"}}, "b.grass": {"CriteriaName": "minecraft.broken:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Broken"}, "json_string": "{\"text\":\"Grass Broken\"}"}}, "q.pumpkin": {"CriteriaName": "minecraft.dropped:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Dropped"}, "json_string": "{\"text\":\"Pumpkin Dropped\"}"}}, "c.whiteTulip": {"CriteriaName": "minecraft.crafted:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Crafted"}, "json_string": "{\"text\":\"White Tulip Crafted\"}"}}, "p.redSandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Red Sandstone Slab Picked Up\"}"}}, "c.jungleDoor": {"CriteriaName": "minecraft.crafted:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Crafted"}, "json_string": "{\"text\":\"Jungle Door Crafted\"}"}}, "q.foxSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.fox_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Spawn Egg Dropped"}, "json_string": "{\"text\":\"Fox Spawn Egg Dropped\"}"}}, "p.crimsonButton": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Picked Up"}, "json_string": "{\"text\":\"Crimson Button Picked Up\"}"}}, "b.cake": {"CriteriaName": "minecraft.broken:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Broken"}, "json_string": "{\"text\":\"Cake Broken\"}"}}, "m.lightGrayWool": {"CriteriaName": "minecraft.mined:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Mined"}, "json_string": "{\"text\":\"Light Gray Wool Mined\"}"}}, "c.lightGrayCandle": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Crafted"}, "json_string": "{\"text\":\"Light Gray Candle Crafted\"}"}}, "p.boneMeal": {"CriteriaName": "minecraft.picked_up:minecraft.bone_meal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Meal Picked Up"}, "json_string": "{\"text\":\"Bone Meal Picked Up\"}"}}, "q.blueCandle": {"CriteriaName": "minecraft.dropped:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Dropped"}, "json_string": "{\"text\":\"Blue Candle Dropped\"}"}}, "c.chorusPlant": {"CriteriaName": "minecraft.crafted:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Crafted"}, "json_string": "{\"text\":\"Chorus Plant Crafted\"}"}}, "u.carvedPumpkin": {"CriteriaName": "minecraft.used:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Used"}, "json_string": "{\"text\":\"Carved Pumpkin Used\"}"}}, "g.playMinutes": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minutes Online"}, "json_string": "{\"text\":\"Minutes Online\"}"}}, "g.openChest": {"CriteriaName": "minecraft.custom:minecraft.open_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Open Chest"}, "json_string": "{\"text\":\"Open Chest\"}"}}, "u.strippedJungleWood": {"CriteriaName": "minecraft.used:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Used"}, "json_string": "{\"text\":\"Stripped Jungle Wood Used\"}"}}, "p.yellowConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Yellow Concrete Powder Picked Up\"}"}}, "q.warpedHyphae": {"CriteriaName": "minecraft.dropped:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Dropped"}, "json_string": "{\"text\":\"Warped Hyphae Dropped\"}"}}, "u.smoker": {"CriteriaName": "minecraft.used:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Used"}, "json_string": "{\"text\":\"Smoker Used\"}"}}, "q.smoothSandstone": {"CriteriaName": "minecraft.dropped:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Dropped"}, "json_string": "{\"text\":\"Smooth Sandstone Dropped\"}"}}, "p.mutton": {"CriteriaName": "minecraft.picked_up:minecraft.mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mutton Picked Up"}, "json_string": "{\"text\":\"Mutton Picked Up\"}"}}, "m.cutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Cut Copper Stairs Mined\"}"}}, "p.infestedCobblestone": {"CriteriaName": "minecraft.picked_up:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Picked Up"}, "json_string": "{\"text\":\"Infested Cobblestone Picked Up\"}"}}, "b.andesite": {"CriteriaName": "minecraft.broken:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Broken"}, "json_string": "{\"text\":\"Andesite Broken\"}"}}, "b.whiteWool": {"CriteriaName": "minecraft.broken:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Broken"}, "json_string": "{\"text\":\"White Wool Broken\"}"}}, "m.sand": {"CriteriaName": "minecraft.mined:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Mined"}, "json_string": "{\"text\":\"Sand Mined\"}"}}, "b.totemOfUndying": {"CriteriaName": "minecraft.broken:minecraft.totem_of_undying", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Totem Of Undying Broken"}, "json_string": "{\"text\":\"Totem Of Undying Broken\"}"}}, "p.skeletonSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Skeleton Spawn Egg Picked Up\"}"}}, "u.lilac": {"CriteriaName": "minecraft.used:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Used"}, "json_string": "{\"text\":\"Lilac Used\"}"}}, "p.batSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.bat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Bat Spawn Egg Picked Up\"}"}}, "b.strippedOakWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Broken"}, "json_string": "{\"text\":\"Stripped Oak Wood Broken\"}"}}, "d.magmaCube": {"CriteriaName": "minecraft.killed_by:minecraft.magma_cube", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Magma Cube"}, "json_string": "{\"text\":\"Killed by Magma Cube\"}"}}, "c.blackstoneWall": {"CriteriaName": "minecraft.crafted:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Crafted"}, "json_string": "{\"text\":\"Blackstone Wall Crafted\"}"}}, "p.warpedPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Warped Pressure Plate Picked Up\"}"}}, "q.coalOre": {"CriteriaName": "minecraft.dropped:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Dropped"}, "json_string": "{\"text\":\"Coal Ore Dropped\"}"}}, "p.turtleEgg": {"CriteriaName": "minecraft.picked_up:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Picked Up"}, "json_string": "{\"text\":\"Turtle Egg Picked Up\"}"}}, "u.graniteSlab": {"CriteriaName": "minecraft.used:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Used"}, "json_string": "{\"text\":\"Granite Slab Used\"}"}}, "m.pinkGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Mined\"}"}}, "q.purpleShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Dropped"}, "json_string": "{\"text\":\"Purple Shulker Box Dropped\"}"}}, "q.dispenser": {"CriteriaName": "minecraft.dropped:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Dropped"}, "json_string": "{\"text\":\"Dispenser Dropped\"}"}}, "q.deepslateGoldOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Gold Ore Dropped\"}"}}, "u.codSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.cod_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Spawn Egg Used"}, "json_string": "{\"text\":\"Cod Spawn Egg Used\"}"}}, "p.glowstoneDust": {"CriteriaName": "minecraft.picked_up:minecraft.glowstone_dust", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dust Picked Up"}, "json_string": "{\"text\":\"Glowstone Dust Picked Up\"}"}}, "u.andesiteSlab": {"CriteriaName": "minecraft.used:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Used"}, "json_string": "{\"text\":\"Andesite Slab Used\"}"}}, "b.oakFence": {"CriteriaName": "minecraft.broken:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Broken"}, "json_string": "{\"text\":\"Oak Fence Broken\"}"}}, "m.sandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Mined"}, "json_string": "{\"text\":\"Sandstone Slab Mined\"}"}}, "b.purpleWool": {"CriteriaName": "minecraft.broken:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Broken"}, "json_string": "{\"text\":\"Purple Wool Broken\"}"}}, "u.loom": {"CriteriaName": "minecraft.used:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Used"}, "json_string": "{\"text\":\"Loom Used\"}"}}, "c.blackstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Crafted"}, "json_string": "{\"text\":\"Blackstone Stairs Crafted\"}"}}, "q.lodestone": {"CriteriaName": "minecraft.dropped:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Dropped"}, "json_string": "{\"text\":\"Lodestone Dropped\"}"}}, "b.mycelium": {"CriteriaName": "minecraft.broken:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Broken"}, "json_string": "{\"text\":\"Mycelium Broken\"}"}}, "q.driedKelp": {"CriteriaName": "minecraft.dropped:minecraft.dried_kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Dropped"}, "json_string": "{\"text\":\"Dried Kelp Dropped\"}"}}, "u.leatherChestplate": {"CriteriaName": "minecraft.used:minecraft.leather_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Chestplate Used"}, "json_string": "{\"text\":\"Leather Chestplate Used\"}"}}, "q.piglinBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.piglin_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Banner Pattern Dropped"}, "json_string": "{\"text\":\"Piglin Banner Pattern Dropped\"}"}}, "c.waxedExposedCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Crafted"}, "json_string": "{\"text\":\"Waxed Exposed Copper Crafted\"}"}}, "p.wanderingTraderSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.wandering_trader_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Wandering Trader Spawn Egg Picked Up\"}"}}, "c.beetrootSeeds": {"CriteriaName": "minecraft.crafted:minecraft.beetroot_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Seeds Crafted"}, "json_string": "{\"text\":\"Beetroot Seeds Crafted\"}"}}, "p.potato": {"CriteriaName": "minecraft.picked_up:minecraft.potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potato Picked Up"}, "json_string": "{\"text\":\"Potato Picked Up\"}"}}, "p.cookedMutton": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Mutton Picked Up"}, "json_string": "{\"text\":\"Cooked Mutton Picked Up\"}"}}, "m.netherBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Mined"}, "json_string": "{\"text\":\"Nether Brick Slab Mined\"}"}}, "u.whiteBed": {"CriteriaName": "minecraft.used:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Used"}, "json_string": "{\"text\":\"White Bed Used\"}"}}, "u.cobbledDeepslateWall": {"CriteriaName": "minecraft.used:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Used"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Used\"}"}}, "p.yellowBed": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Picked Up"}, "json_string": "{\"text\":\"Yellow Bed Picked Up\"}"}}, "m.greenShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Mined"}, "json_string": "{\"text\":\"Green Shulker Box Mined\"}"}}, "m.snowBlock": {"CriteriaName": "minecraft.mined:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Mined"}, "json_string": "{\"text\":\"Snow Block Mined\"}"}}, "c.crimsonNylium": {"CriteriaName": "minecraft.crafted:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Crafted"}, "json_string": "{\"text\":\"Crimson Nylium Crafted\"}"}}, "m.magentaCandleCake": {"CriteriaName": "minecraft.mined:minecraft.magenta_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Cake Mined"}, "json_string": "{\"text\":\"Magenta Candle Cake Mined\"}"}}, "c.blueTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Crafted"}, "json_string": "{\"text\":\"Blue Terracotta Crafted\"}"}}, "b.crimsonStairs": {"CriteriaName": "minecraft.broken:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Broken"}, "json_string": "{\"text\":\"Crimson Stairs Broken\"}"}}, "u.acaciaLog": {"CriteriaName": "minecraft.used:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Used"}, "json_string": "{\"text\":\"Acacia Log Used\"}"}}, "c.codBucket": {"CriteriaName": "minecraft.crafted:minecraft.cod_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Bucket Crafted"}, "json_string": "{\"text\":\"Cod Bucket Crafted\"}"}}, "p.flintAndSteel": {"CriteriaName": "minecraft.picked_up:minecraft.flint_and_steel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint And Steel Picked Up"}, "json_string": "{\"text\":\"Flint And Steel Picked Up\"}"}}, "c.emeraldOre": {"CriteriaName": "minecraft.crafted:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Crafted"}, "json_string": "{\"text\":\"Emerald Ore Crafted\"}"}}, "m.pinkTulip": {"CriteriaName": "minecraft.mined:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Mined"}, "json_string": "{\"text\":\"Pink Tulip Mined\"}"}}, "m.witherSkeletonWallSkull": {"CriteriaName": "minecraft.mined:minecraft.wither_skeleton_wall_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Wall Skull Mined"}, "json_string": "{\"text\":\"Wither Skeleton Wall Skull Mined\"}"}}, "c.witchSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.witch_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Spawn Egg Crafted"}, "json_string": "{\"text\":\"Witch Spawn Egg Crafted\"}"}}, "b.cauldron": {"CriteriaName": "minecraft.broken:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Broken"}, "json_string": "{\"text\":\"Cauldron Broken\"}"}}, "p.crackedDeepslateBricks": {"CriteriaName": "minecraft.picked_up:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Picked Up"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Picked Up\"}"}}, "p.magmaCubeSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.magma_cube_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Magma Cube Spawn Egg Picked Up\"}"}}, "c.polishedAndesiteStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Crafted"}, "json_string": "{\"text\":\"Polished Andesite Stairs Crafted\"}"}}, "p.striderSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.strider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Strider Spawn Egg Picked Up\"}"}}, "p.lightBlueBed": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Picked Up"}, "json_string": "{\"text\":\"Light Blue Bed Picked Up\"}"}}, "q.deepslateLapisOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Dropped\"}"}}, "u.fireCoral": {"CriteriaName": "minecraft.used:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Used"}, "json_string": "{\"text\":\"Fire Coral Used\"}"}}, "q.sandstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Dropped"}, "json_string": "{\"text\":\"Sandstone Stairs Dropped\"}"}}, "u.mycelium": {"CriteriaName": "minecraft.used:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Used"}, "json_string": "{\"text\":\"Mycelium Used\"}"}}, "p.spruceLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Picked Up"}, "json_string": "{\"text\":\"Spruce Leaves Picked Up\"}"}}, "p.ironBars": {"CriteriaName": "minecraft.picked_up:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Picked Up"}, "json_string": "{\"text\":\"Iron Bars Picked Up\"}"}}, "p.limeStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Picked Up\"}"}}, "c.ironChestplate": {"CriteriaName": "minecraft.crafted:minecraft.iron_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Chestplate Crafted"}, "json_string": "{\"text\":\"Iron Chestplate Crafted\"}"}}, "p.milkBucket": {"CriteriaName": "minecraft.picked_up:minecraft.milk_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Milk Bucket Picked Up"}, "json_string": "{\"text\":\"Milk Bucket Picked Up\"}"}}, "q.blueTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Dropped"}, "json_string": "{\"text\":\"Blue Terracotta Dropped\"}"}}, "c.rootedDirt": {"CriteriaName": "minecraft.crafted:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Crafted"}, "json_string": "{\"text\":\"Rooted Dirt Crafted\"}"}}, "m.carvedPumpkin": {"CriteriaName": "minecraft.mined:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Mined"}, "json_string": "{\"text\":\"Carved Pumpkin Mined\"}"}}, "p.trappedChest": {"CriteriaName": "minecraft.picked_up:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Picked Up"}, "json_string": "{\"text\":\"Trapped Chest Picked Up\"}"}}, "c.cyanCarpet": {"CriteriaName": "minecraft.crafted:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Crafted"}, "json_string": "{\"text\":\"Cyan Carpet Crafted\"}"}}, "c.junglePressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Crafted"}, "json_string": "{\"text\":\"Jungle Pressure Plate Crafted\"}"}}, "p.grayCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Picked Up"}, "json_string": "{\"text\":\"Gray Carpet Picked Up\"}"}}, "c.lapisLazuli": {"CriteriaName": "minecraft.crafted:minecraft.lapis_lazuli", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Lazuli Crafted"}, "json_string": "{\"text\":\"Lapis Lazuli Crafted\"}"}}, "b.blueStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Broken\"}"}}, "k.zoglin": {"CriteriaName": "minecraft.killed:minecraft.zoglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Killed"}, "json_string": "{\"text\":\"Zoglin Killed\"}"}}, "g.damageTaken": {"CriteriaName": "minecraft.custom:minecraft.damage_taken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Taken"}, "json_string": "{\"text\":\"Damage Taken\"}"}}, "q.cobblestoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Dropped"}, "json_string": "{\"text\":\"Cobblestone Stairs Dropped\"}"}}, "p.deepslateBricks": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Picked Up"}, "json_string": "{\"text\":\"Deepslate Bricks Picked Up\"}"}}, "b.blackCarpet": {"CriteriaName": "minecraft.broken:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Broken"}, "json_string": "{\"text\":\"Black Carpet Broken\"}"}}, "b.catSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.cat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Spawn Egg Broken"}, "json_string": "{\"text\":\"Cat Spawn Egg Broken\"}"}}, "c.ironAxe": {"CriteriaName": "minecraft.crafted:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Axe Crafted"}, "json_string": "{\"text\":\"Iron Axe Crafted\"}"}}, "c.clay": {"CriteriaName": "minecraft.crafted:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Crafted"}, "json_string": "{\"text\":\"Clay Crafted\"}"}}, "c.redstoneTorch": {"CriteriaName": "minecraft.crafted:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Crafted"}, "json_string": "{\"text\":\"Redstone Torch Crafted\"}"}}, "g.fishCaught": {"CriteriaName": "minecraft.custom:minecraft.fish_caught", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fish Caught"}, "json_string": "{\"text\":\"Fish Caught\"}"}}, "u.petrifiedOakSlab": {"CriteriaName": "minecraft.used:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Used"}, "json_string": "{\"text\":\"Petrified Oak Slab Used\"}"}}, "q.musicDiscBlocks": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_blocks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Blocks Dropped"}, "json_string": "{\"text\":\"Music Disc Blocks Dropped\"}"}}, "c.yellowCandle": {"CriteriaName": "minecraft.crafted:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Crafted"}, "json_string": "{\"text\":\"Yellow Candle Crafted\"}"}}, "q.ironBars": {"CriteriaName": "minecraft.dropped:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Dropped"}, "json_string": "{\"text\":\"Iron Bars Dropped\"}"}}, "cu.killedByDarkRedTeam": {"CriteriaName": "killedByTeam.dark_red", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Red Team"}, "json_string": "{\"text\":\"Killed by Red Team\"}"}}, "q.spruceWood": {"CriteriaName": "minecraft.dropped:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Dropped"}, "json_string": "{\"text\":\"Spruce Wood Dropped\"}"}}, "p.melonSlice": {"CriteriaName": "minecraft.picked_up:minecraft.melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Slice Picked Up"}, "json_string": "{\"text\":\"Melon Slice Picked Up\"}"}}, "q.hangingRoots": {"CriteriaName": "minecraft.dropped:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Dropped"}, "json_string": "{\"text\":\"Hanging Roots Dropped\"}"}}, "u.exposedCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Used\"}"}}, "p.deepslateEmeraldOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Picked Up\"}"}}, "b.ironChestplate": {"CriteriaName": "minecraft.broken:minecraft.iron_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Chestplate Broken"}, "json_string": "{\"text\":\"Iron Chestplate Broken\"}"}}, "b.composter": {"CriteriaName": "minecraft.broken:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Broken"}, "json_string": "{\"text\":\"Composter Broken\"}"}}, "cu.climbOneCm": {"CriteriaName": "minecraft.custom:minecraft.climb_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Climb One Cm"}, "json_string": "{\"text\":\"Climb One Cm\"}"}}, "c.warpedStairs": {"CriteriaName": "minecraft.crafted:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Crafted"}, "json_string": "{\"text\":\"Warped Stairs Crafted\"}"}}, "p.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Picked Up\"}"}}, "k.spider": {"CriteriaName": "minecraft.killed:minecraft.spider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Killed"}, "json_string": "{\"text\":\"Spider Killed\"}"}}, "b.apple": {"CriteriaName": "minecraft.broken:minecraft.apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Apple Broken"}, "json_string": "{\"text\":\"Apple Broken\"}"}}, "u.map": {"CriteriaName": "minecraft.used:minecraft.map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Map Used"}, "json_string": "{\"text\":\"Map Used\"}"}}, "u.endStoneBrickSlab": {"CriteriaName": "minecraft.used:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Used"}, "json_string": "{\"text\":\"End Stone Brick Slab Used\"}"}}, "q.darkOakPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Dropped"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Dropped\"}"}}, "q.whiteConcrete": {"CriteriaName": "minecraft.dropped:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Dropped"}, "json_string": "{\"text\":\"White Concrete Dropped\"}"}}, "m.warpedSlab": {"CriteriaName": "minecraft.mined:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Mined"}, "json_string": "{\"text\":\"Warped Slab Mined\"}"}}, "q.darkOakFence": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Dropped"}, "json_string": "{\"text\":\"Dark Oak Fence Dropped\"}"}}, "c.leatherLeggings": {"CriteriaName": "minecraft.crafted:minecraft.leather_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Leggings Crafted"}, "json_string": "{\"text\":\"Leather Leggings Crafted\"}"}}, "b.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Broken\"}"}}, "p.acaciaDoor": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Picked Up"}, "json_string": "{\"text\":\"Acacia Door Picked Up\"}"}}, "c.deadTubeCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Crafted"}, "json_string": "{\"text\":\"Dead Tube Coral Block Crafted\"}"}}, "c.darkOakTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Crafted"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Crafted\"}"}}, "c.lectern": {"CriteriaName": "minecraft.crafted:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Crafted"}, "json_string": "{\"text\":\"Lectern Crafted\"}"}}, "p.cobblestoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Picked Up"}, "json_string": "{\"text\":\"Cobblestone Wall Picked Up\"}"}}, "b.witherSkeletonSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.wither_skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Spawn Egg Broken"}, "json_string": "{\"text\":\"Wither Skeleton Spawn Egg Broken\"}"}}, "u.darkOakTrapdoor": {"CriteriaName": "minecraft.used:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Used"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Used\"}"}}, "c.acaciaDoor": {"CriteriaName": "minecraft.crafted:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Crafted"}, "json_string": "{\"text\":\"Acacia Door Crafted\"}"}}, "q.stoneSword": {"CriteriaName": "minecraft.dropped:minecraft.stone_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Sword Dropped"}, "json_string": "{\"text\":\"Stone Sword Dropped\"}"}}, "b.diamondBlock": {"CriteriaName": "minecraft.broken:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Broken"}, "json_string": "{\"text\":\"Diamond Block Broken\"}"}}, "c.mushroomStem": {"CriteriaName": "minecraft.crafted:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Crafted"}, "json_string": "{\"text\":\"Mushroom Stem Crafted\"}"}}, "b.saddle": {"CriteriaName": "minecraft.broken:minecraft.saddle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Saddle Broken"}, "json_string": "{\"text\":\"Saddle Broken\"}"}}, "b.warpedFence": {"CriteriaName": "minecraft.broken:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Broken"}, "json_string": "{\"text\":\"Warped Fence Broken\"}"}}, "b.copperOre": {"CriteriaName": "minecraft.broken:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Broken"}, "json_string": "{\"text\":\"Copper Ore Broken\"}"}}, "m.endGateway": {"CriteriaName": "minecraft.mined:minecraft.end_gateway", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Gateway Mined"}, "json_string": "{\"text\":\"End Gateway Mined\"}"}}, "q.netherStar": {"CriteriaName": "minecraft.dropped:minecraft.nether_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Star Dropped"}, "json_string": "{\"text\":\"Nether Star Dropped\"}"}}, "q.warpedPlanks": {"CriteriaName": "minecraft.dropped:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Dropped"}, "json_string": "{\"text\":\"Warped Planks Dropped\"}"}}, "c.whiteDye": {"CriteriaName": "minecraft.crafted:minecraft.white_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Dye Crafted"}, "json_string": "{\"text\":\"White Dye Crafted\"}"}}, "c.mushroomStew": {"CriteriaName": "minecraft.crafted:minecraft.mushroom_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stew Crafted"}, "json_string": "{\"text\":\"Mushroom Stew Crafted\"}"}}, "c.woodenAxe": {"CriteriaName": "minecraft.crafted:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Axe Crafted"}, "json_string": "{\"text\":\"Wooden Axe Crafted\"}"}}, "c.greenConcrete": {"CriteriaName": "minecraft.crafted:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Crafted"}, "json_string": "{\"text\":\"Green Concrete Crafted\"}"}}, "c.rawGoldBlock": {"CriteriaName": "minecraft.crafted:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Crafted"}, "json_string": "{\"text\":\"Raw Gold Block Crafted\"}"}}, "d.polarBear": {"CriteriaName": "minecraft.killed_by:minecraft.polar_bear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Polar Bear"}, "json_string": "{\"text\":\"Killed by Polar Bear\"}"}}, "m.prismarine": {"CriteriaName": "minecraft.mined:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Mined"}, "json_string": "{\"text\":\"Prismarine Mined\"}"}}, "m.brownGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Mined\"}"}}, "b.oakSlab": {"CriteriaName": "minecraft.broken:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Broken"}, "json_string": "{\"text\":\"Oak Slab Broken\"}"}}, "q.orangeCarpet": {"CriteriaName": "minecraft.dropped:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Dropped"}, "json_string": "{\"text\":\"Orange Carpet Dropped\"}"}}, "c.mossyCobblestoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Crafted"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Crafted\"}"}}, "b.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Broken\"}"}}, "u.repeater": {"CriteriaName": "minecraft.used:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Used"}, "json_string": "{\"text\":\"Repeater Used\"}"}}, "p.darkPrismarine": {"CriteriaName": "minecraft.picked_up:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Picked Up"}, "json_string": "{\"text\":\"Dark Prismarine Picked Up\"}"}}, "m.birchFence": {"CriteriaName": "minecraft.mined:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Mined"}, "json_string": "{\"text\":\"Birch Fence Mined\"}"}}, "u.slimeBall": {"CriteriaName": "minecraft.used:minecraft.slime_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Ball Used"}, "json_string": "{\"text\":\"Slime Ball Used\"}"}}, "cu.interactWithFurnace": {"CriteriaName": "minecraft.custom:minecraft.interact_with_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Furnace"}, "json_string": "{\"text\":\"Interact With Furnace\"}"}}, "q.jungleWood": {"CriteriaName": "minecraft.dropped:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Dropped"}, "json_string": "{\"text\":\"Jungle Wood Dropped\"}"}}, "p.ironShovel": {"CriteriaName": "minecraft.picked_up:minecraft.iron_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Shovel Picked Up"}, "json_string": "{\"text\":\"Iron Shovel Picked Up\"}"}}, "c.greenBed": {"CriteriaName": "minecraft.crafted:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Crafted"}, "json_string": "{\"text\":\"Green Bed Crafted\"}"}}, "m.deadHornCoral": {"CriteriaName": "minecraft.mined:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Mined"}, "json_string": "{\"text\":\"Dead Horn Coral Mined\"}"}}, "u.cyanWool": {"CriteriaName": "minecraft.used:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Used"}, "json_string": "{\"text\":\"Cyan Wool Used\"}"}}, "p.glassBottle": {"CriteriaName": "minecraft.picked_up:minecraft.glass_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Bottle Picked Up"}, "json_string": "{\"text\":\"Glass Bottle Picked Up\"}"}}, "b.musicDiscWard": {"CriteriaName": "minecraft.broken:minecraft.music_disc_ward", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Ward Broken"}, "json_string": "{\"text\":\"Music Disc Ward Broken\"}"}}, "c.ironBoots": {"CriteriaName": "minecraft.crafted:minecraft.iron_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Boots Crafted"}, "json_string": "{\"text\":\"Iron Boots Crafted\"}"}}, "p.caveSpiderSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.cave_spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Cave Spider Spawn Egg Picked Up\"}"}}, "b.crimsonHyphae": {"CriteriaName": "minecraft.broken:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Broken"}, "json_string": "{\"text\":\"Crimson Hyphae Broken\"}"}}, "b.ironHorseArmor": {"CriteriaName": "minecraft.broken:minecraft.iron_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Horse Armor Broken"}, "json_string": "{\"text\":\"Iron Horse Armor Broken\"}"}}, "b.infestedCobblestone": {"CriteriaName": "minecraft.broken:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Broken"}, "json_string": "{\"text\":\"Infested Cobblestone Broken\"}"}}, "c.leatherHelmet": {"CriteriaName": "minecraft.crafted:minecraft.leather_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Helmet Crafted"}, "json_string": "{\"text\":\"Leather Helmet Crafted\"}"}}, "p.dragonEgg": {"CriteriaName": "minecraft.picked_up:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Picked Up"}, "json_string": "{\"text\":\"Dragon Egg Picked Up\"}"}}, "u.darkOakLog": {"CriteriaName": "minecraft.used:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Used"}, "json_string": "{\"text\":\"Dark Oak Log Used\"}"}}, "p.buddingAmethyst": {"CriteriaName": "minecraft.picked_up:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Picked Up"}, "json_string": "{\"text\":\"Budding Amethyst Picked Up\"}"}}, "p.deadBrainCoral": {"CriteriaName": "minecraft.picked_up:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Picked Up"}, "json_string": "{\"text\":\"Dead Brain Coral Picked Up\"}"}}, "c.birchButton": {"CriteriaName": "minecraft.crafted:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Crafted"}, "json_string": "{\"text\":\"Birch Button Crafted\"}"}}, "u.redMushroom": {"CriteriaName": "minecraft.used:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Used"}, "json_string": "{\"text\":\"Red Mushroom Used\"}"}}, "b.acaciaTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Broken"}, "json_string": "{\"text\":\"Acacia Trapdoor Broken\"}"}}, "b.darkPrismarine": {"CriteriaName": "minecraft.broken:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Broken"}, "json_string": "{\"text\":\"Dark Prismarine Broken\"}"}}, "q.snow": {"CriteriaName": "minecraft.dropped:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Dropped"}, "json_string": "{\"text\":\"Snow Dropped\"}"}}, "b.grassBlock": {"CriteriaName": "minecraft.broken:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Broken"}, "json_string": "{\"text\":\"Grass Block Broken\"}"}}, "u.azureBluet": {"CriteriaName": "minecraft.used:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Used"}, "json_string": "{\"text\":\"Azure Bluet Used\"}"}}, "p.lightGrayDye": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Dye Picked Up"}, "json_string": "{\"text\":\"Light Gray Dye Picked Up\"}"}}, "c.lightBlueShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Crafted"}, "json_string": "{\"text\":\"Light Blue Shulker Box Crafted\"}"}}, "p.obsidian": {"CriteriaName": "minecraft.picked_up:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Picked Up"}, "json_string": "{\"text\":\"Obsidian Picked Up\"}"}}, "c.jigsaw": {"CriteriaName": "minecraft.crafted:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Crafted"}, "json_string": "{\"text\":\"Jigsaw Crafted\"}"}}, "k.panda": {"CriteriaName": "minecraft.killed:minecraft.panda", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Killed"}, "json_string": "{\"text\":\"Panda Killed\"}"}}, "u.quartzStairs": {"CriteriaName": "minecraft.used:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Used"}, "json_string": "{\"text\":\"Quartz Stairs Used\"}"}}, "m.netherWart": {"CriteriaName": "minecraft.mined:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Mined"}, "json_string": "{\"text\":\"Nether Wart Mined\"}"}}, "p.rail": {"CriteriaName": "minecraft.picked_up:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Picked Up"}, "json_string": "{\"text\":\"Rail Picked Up\"}"}}, "q.brownCarpet": {"CriteriaName": "minecraft.dropped:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Dropped"}, "json_string": "{\"text\":\"Brown Carpet Dropped\"}"}}, "q.limeConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Dropped"}, "json_string": "{\"text\":\"Lime Concrete Powder Dropped\"}"}}, "q.stoneAxe": {"CriteriaName": "minecraft.dropped:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Axe Dropped"}, "json_string": "{\"text\":\"Stone Axe Dropped\"}"}}, "p.cyanBed": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Picked Up"}, "json_string": "{\"text\":\"Cyan Bed Picked Up\"}"}}, "c.blackGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Black Glazed Terracotta Crafted\"}"}}, "p.conduit": {"CriteriaName": "minecraft.picked_up:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Picked Up"}, "json_string": "{\"text\":\"Conduit Picked Up\"}"}}, "p.whiteTulip": {"CriteriaName": "minecraft.picked_up:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Picked Up"}, "json_string": "{\"text\":\"White Tulip Picked Up\"}"}}, "b.goldNugget": {"CriteriaName": "minecraft.broken:minecraft.gold_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Nugget Broken"}, "json_string": "{\"text\":\"Gold Nugget Broken\"}"}}, "c.seaLantern": {"CriteriaName": "minecraft.crafted:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Crafted"}, "json_string": "{\"text\":\"Sea Lantern Crafted\"}"}}, "u.zombifiedPiglinSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.zombified_piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Spawn Egg Used"}, "json_string": "{\"text\":\"Zombified Piglin Spawn Egg Used\"}"}}, "q.blueBanner": {"CriteriaName": "minecraft.dropped:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Dropped"}, "json_string": "{\"text\":\"Blue Banner Dropped\"}"}}, "c.glowLichen": {"CriteriaName": "minecraft.crafted:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Crafted"}, "json_string": "{\"text\":\"Glow Lichen Crafted\"}"}}, "p.darkOakTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Picked Up"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Picked Up\"}"}}, "u.chiseledDeepslate": {"CriteriaName": "minecraft.used:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Used"}, "json_string": "{\"text\":\"Chiseled Deepslate Used\"}"}}, "b.deadBrainCoralFan": {"CriteriaName": "minecraft.broken:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Broken"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Broken\"}"}}, "c.sculkSensor": {"CriteriaName": "minecraft.crafted:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Crafted"}, "json_string": "{\"text\":\"Sculk Sensor Crafted\"}"}}, "p.calcite": {"CriteriaName": "minecraft.picked_up:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Picked Up"}, "json_string": "{\"text\":\"Calcite Picked Up\"}"}}, "q.debugStick": {"CriteriaName": "minecraft.dropped:minecraft.debug_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Debug Stick Dropped"}, "json_string": "{\"text\":\"Debug Stick Dropped\"}"}}, "q.polishedDioriteSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Dropped"}, "json_string": "{\"text\":\"Polished Diorite Slab Dropped\"}"}}, "c.smoothSandstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Crafted"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Crafted\"}"}}, "q.paper": {"CriteriaName": "minecraft.dropped:minecraft.paper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Paper Dropped"}, "json_string": "{\"text\":\"Paper Dropped\"}"}}, "b.tubeCoralFan": {"CriteriaName": "minecraft.broken:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Broken"}, "json_string": "{\"text\":\"Tube Coral Fan Broken\"}"}}, "m.netherBrickFence": {"CriteriaName": "minecraft.mined:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Mined"}, "json_string": "{\"text\":\"Nether Brick Fence Mined\"}"}}, "u.noteBlock": {"CriteriaName": "minecraft.used:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Used"}, "json_string": "{\"text\":\"Note Block Used\"}"}}, "c.melonSeeds": {"CriteriaName": "minecraft.crafted:minecraft.melon_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Seeds Crafted"}, "json_string": "{\"text\":\"Melon Seeds Crafted\"}"}}, "b.orangeGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Broken\"}"}}, "c.strippedCrimsonStem": {"CriteriaName": "minecraft.crafted:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Crafted"}, "json_string": "{\"text\":\"Stripped Crimson Stem Crafted\"}"}}, "u.crackedStoneBricks": {"CriteriaName": "minecraft.used:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Used"}, "json_string": "{\"text\":\"Cracked Stone Bricks Used\"}"}}, "m.oakTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Mined"}, "json_string": "{\"text\":\"Oak Trapdoor Mined\"}"}}, "q.diamondOre": {"CriteriaName": "minecraft.dropped:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Dropped"}, "json_string": "{\"text\":\"Diamond Ore Dropped\"}"}}, "u.yellowStainedGlass": {"CriteriaName": "minecraft.used:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Used"}, "json_string": "{\"text\":\"Yellow Stained Glass Used\"}"}}, "p.netheriteLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Leggings Picked Up"}, "json_string": "{\"text\":\"Netherite Leggings Picked Up\"}"}}, "u.acaciaButton": {"CriteriaName": "minecraft.used:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Used"}, "json_string": "{\"text\":\"Acacia Button Used\"}"}}, "u.cookedPorkchop": {"CriteriaName": "minecraft.used:minecraft.cooked_porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Porkchop Used"}, "json_string": "{\"text\":\"Cooked Porkchop Used\"}"}}, "b.magentaConcrete": {"CriteriaName": "minecraft.broken:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Broken"}, "json_string": "{\"text\":\"Magenta Concrete Broken\"}"}}, "b.pinkStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Broken\"}"}}, "q.magentaBanner": {"CriteriaName": "minecraft.dropped:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Dropped"}, "json_string": "{\"text\":\"Magenta Banner Dropped\"}"}}, "m.waterCauldron": {"CriteriaName": "minecraft.mined:minecraft.water_cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Cauldron Mined"}, "json_string": "{\"text\":\"Water Cauldron Mined\"}"}}, "c.enderPearl": {"CriteriaName": "minecraft.crafted:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Crafted"}, "json_string": "{\"text\":\"Ender Pearl Crafted\"}"}}, "b.acaciaPlanks": {"CriteriaName": "minecraft.broken:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Broken"}, "json_string": "{\"text\":\"Acacia Planks Broken\"}"}}, "p.magentaBed": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Picked Up"}, "json_string": "{\"text\":\"Magenta Bed Picked Up\"}"}}, "m.crimsonSign": {"CriteriaName": "minecraft.mined:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Mined"}, "json_string": "{\"text\":\"Crimson Sign Mined\"}"}}, "q.deepslateTileSlab": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Dropped"}, "json_string": "{\"text\":\"Deepslate Tile Slab Dropped\"}"}}, "u.redstone": {"CriteriaName": "minecraft.used:minecraft.redstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Used"}, "json_string": "{\"text\":\"Redstone Used\"}"}}, "p.campfire": {"CriteriaName": "minecraft.picked_up:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Picked Up"}, "json_string": "{\"text\":\"Campfire Picked Up\"}"}}, "u.scaffolding": {"CriteriaName": "minecraft.used:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Used"}, "json_string": "{\"text\":\"Scaffolding Used\"}"}}, "m.scaffolding": {"CriteriaName": "minecraft.mined:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Mined"}, "json_string": "{\"text\":\"Scaffolding Mined\"}"}}, "q.deadBrainCoral": {"CriteriaName": "minecraft.dropped:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Dropped"}, "json_string": "{\"text\":\"Dead Brain Coral Dropped\"}"}}, "c.crimsonPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Crafted"}, "json_string": "{\"text\":\"Crimson Pressure Plate Crafted\"}"}}, "p.blueTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Picked Up"}, "json_string": "{\"text\":\"Blue Terracotta Picked Up\"}"}}, "q.rawIron": {"CriteriaName": "minecraft.dropped:minecraft.raw_iron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Dropped"}, "json_string": "{\"text\":\"Raw Iron Dropped\"}"}}, "u.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Used"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Used\"}"}}, "u.blackstoneWall": {"CriteriaName": "minecraft.used:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Used"}, "json_string": "{\"text\":\"Blackstone Wall Used\"}"}}, "q.prismarineSlab": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Dropped"}, "json_string": "{\"text\":\"Prismarine Slab Dropped\"}"}}, "b.diamondAxe": {"CriteriaName": "minecraft.broken:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Axe Broken"}, "json_string": "{\"text\":\"Diamond Axe Broken\"}"}}, "p.lightBlueCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Picked Up"}, "json_string": "{\"text\":\"Light Blue Carpet Picked Up\"}"}}, "c.darkPrismarine": {"CriteriaName": "minecraft.crafted:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Crafted"}, "json_string": "{\"text\":\"Dark Prismarine Crafted\"}"}}, "p.weatheredCopper": {"CriteriaName": "minecraft.picked_up:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Picked Up"}, "json_string": "{\"text\":\"Weathered Copper Picked Up\"}"}}, "b.zombieHorseSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.zombie_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Spawn Egg Broken"}, "json_string": "{\"text\":\"Zombie Horse Spawn Egg Broken\"}"}}, "p.inkSac": {"CriteriaName": "minecraft.picked_up:minecraft.ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ink Sac Picked Up"}, "json_string": "{\"text\":\"Ink Sac Picked Up\"}"}}, "c.netheriteBoots": {"CriteriaName": "minecraft.crafted:minecraft.netherite_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Boots Crafted"}, "json_string": "{\"text\":\"Netherite Boots Crafted\"}"}}, "b.netheriteChestplate": {"CriteriaName": "minecraft.broken:minecraft.netherite_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Chestplate Broken"}, "json_string": "{\"text\":\"Netherite Chestplate Broken\"}"}}, "q.crimsonFence": {"CriteriaName": "minecraft.dropped:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Dropped"}, "json_string": "{\"text\":\"Crimson Fence Dropped\"}"}}, "c.skullBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.skull_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skull Banner Pattern Crafted"}, "json_string": "{\"text\":\"Skull Banner Pattern Crafted\"}"}}, "u.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Used"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Used\"}"}}, "p.lightGrayBanner": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Picked Up"}, "json_string": "{\"text\":\"Light Gray Banner Picked Up\"}"}}, "q.enchantingTable": {"CriteriaName": "minecraft.dropped:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Dropped"}, "json_string": "{\"text\":\"Enchanting Table Dropped\"}"}}, "d.strider": {"CriteriaName": "minecraft.killed_by:minecraft.strider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Strider"}, "json_string": "{\"text\":\"Killed by Strider\"}"}}, "p.brownConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Picked Up"}, "json_string": "{\"text\":\"Brown Concrete Picked Up\"}"}}, "q.exposedCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Dropped"}, "json_string": "{\"text\":\"Exposed Cut Copper Dropped\"}"}}, "m.vine": {"CriteriaName": "minecraft.mined:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Mined"}, "json_string": "{\"text\":\"Vine Mined\"}"}}, "q.cod": {"CriteriaName": "minecraft.dropped:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Dropped"}, "json_string": "{\"text\":\"Cod Dropped\"}"}}, "u.grayGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Used"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Used\"}"}}, "c.repeatingCommandBlock": {"CriteriaName": "minecraft.crafted:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Crafted"}, "json_string": "{\"text\":\"Repeating Command Block Crafted\"}"}}, "u.diamondAxe": {"CriteriaName": "minecraft.used:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Axe Used"}, "json_string": "{\"text\":\"Diamond Axe Used\"}"}}, "c.barrier": {"CriteriaName": "minecraft.crafted:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Crafted"}, "json_string": "{\"text\":\"Barrier Crafted\"}"}}, "u.sugar": {"CriteriaName": "minecraft.used:minecraft.sugar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Used"}, "json_string": "{\"text\":\"Sugar Used\"}"}}, "q.ironNugget": {"CriteriaName": "minecraft.dropped:minecraft.iron_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Nugget Dropped"}, "json_string": "{\"text\":\"Iron Nugget Dropped\"}"}}, "c.oakLeaves": {"CriteriaName": "minecraft.crafted:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Crafted"}, "json_string": "{\"text\":\"Oak Leaves Crafted\"}"}}, "q.flint": {"CriteriaName": "minecraft.dropped:minecraft.flint", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint Dropped"}, "json_string": "{\"text\":\"Flint Dropped\"}"}}, "k.ironGolem": {"CriteriaName": "minecraft.killed:minecraft.iron_golem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Golem Killed"}, "json_string": "{\"text\":\"Iron Golem Killed\"}"}}, "c.weatheredCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Crafted"}, "json_string": "{\"text\":\"Weathered Cut Copper Crafted\"}"}}, "u.tallGrass": {"CriteriaName": "minecraft.used:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Used"}, "json_string": "{\"text\":\"Tall Grass Used\"}"}}, "c.stonePickaxe": {"CriteriaName": "minecraft.crafted:minecraft.stone_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pickaxe Crafted"}, "json_string": "{\"text\":\"Stone Pickaxe Crafted\"}"}}, "q.grassBlock": {"CriteriaName": "minecraft.dropped:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Dropped"}, "json_string": "{\"text\":\"Grass Block Dropped\"}"}}, "u.stoneStairs": {"CriteriaName": "minecraft.used:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Used"}, "json_string": "{\"text\":\"Stone Stairs Used\"}"}}, "p.pumpkinSeeds": {"CriteriaName": "minecraft.picked_up:minecraft.pumpkin_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Seeds Picked Up"}, "json_string": "{\"text\":\"Pumpkin Seeds Picked Up\"}"}}, "u.rawGold": {"CriteriaName": "minecraft.used:minecraft.raw_gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Used"}, "json_string": "{\"text\":\"Raw Gold Used\"}"}}, "p.dragonHead": {"CriteriaName": "minecraft.picked_up:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Picked Up"}, "json_string": "{\"text\":\"Dragon Head Picked Up\"}"}}, "q.whiteConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Dropped"}, "json_string": "{\"text\":\"White Concrete Powder Dropped\"}"}}, "c.redNetherBricks": {"CriteriaName": "minecraft.crafted:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Crafted"}, "json_string": "{\"text\":\"Red Nether Bricks Crafted\"}"}}, "u.sugarCane": {"CriteriaName": "minecraft.used:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Used"}, "json_string": "{\"text\":\"Sugar Cane Used\"}"}}, "m.pottedAllium": {"CriteriaName": "minecraft.mined:minecraft.potted_allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Allium Mined"}, "json_string": "{\"text\":\"Potted Allium Mined\"}"}}, "b.amethystBlock": {"CriteriaName": "minecraft.broken:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Broken"}, "json_string": "{\"text\":\"Amethyst Block Broken\"}"}}, "q.chickenSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.chicken_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Spawn Egg Dropped"}, "json_string": "{\"text\":\"Chicken Spawn Egg Dropped\"}"}}, "b.birchDoor": {"CriteriaName": "minecraft.broken:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Broken"}, "json_string": "{\"text\":\"Birch Door Broken\"}"}}, "rc_help": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "show help"}, "json_string": "{\"text\":\"show help\"}"}}, "c.darkPrismarineStairs": {"CriteriaName": "minecraft.crafted:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Crafted"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Crafted\"}"}}, "c.dragonBreath": {"CriteriaName": "minecraft.crafted:minecraft.dragon_breath", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Breath Crafted"}, "json_string": "{\"text\":\"Dragon Breath Crafted\"}"}}, "b.redNetherBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Broken"}, "json_string": "{\"text\":\"Red Nether Brick Slab Broken\"}"}}, "q.elderGuardianSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.elder_guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Spawn Egg Dropped"}, "json_string": "{\"text\":\"Elder Guardian Spawn Egg Dropped\"}"}}, "q.tnt": {"CriteriaName": "minecraft.dropped:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Dropped"}, "json_string": "{\"text\":\"Tnt Dropped\"}"}}, "b.quartzStairs": {"CriteriaName": "minecraft.broken:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Broken"}, "json_string": "{\"text\":\"Quartz Stairs Broken\"}"}}, "cu.interactWithCartographyTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Cartography Table"}, "json_string": "{\"text\":\"Interact With Cartography Table\"}"}}, "c.turtleEgg": {"CriteriaName": "minecraft.crafted:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Crafted"}, "json_string": "{\"text\":\"Turtle Egg Crafted\"}"}}, "u.shulkerShell": {"CriteriaName": "minecraft.used:minecraft.shulker_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Shell Used"}, "json_string": "{\"text\":\"Shulker Shell Used\"}"}}, "p.rawCopperBlock": {"CriteriaName": "minecraft.picked_up:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Picked Up"}, "json_string": "{\"text\":\"Raw Copper Block Picked Up\"}"}}, "q.blueDye": {"CriteriaName": "minecraft.dropped:minecraft.blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Dye Dropped"}, "json_string": "{\"text\":\"Blue Dye Dropped\"}"}}, "b.honeyBottle": {"CriteriaName": "minecraft.broken:minecraft.honey_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Bottle Broken"}, "json_string": "{\"text\":\"Honey Bottle Broken\"}"}}, "b.filledMap": {"CriteriaName": "minecraft.broken:minecraft.filled_map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Filled Map Broken"}, "json_string": "{\"text\":\"Filled Map Broken\"}"}}, "b.waxedCutCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Broken"}, "json_string": "{\"text\":\"Waxed Cut Copper Broken\"}"}}, "p.elytra": {"CriteriaName": "minecraft.picked_up:minecraft.elytra", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elytra Picked Up"}, "json_string": "{\"text\":\"Elytra Picked Up\"}"}}, "q.dioriteSlab": {"CriteriaName": "minecraft.dropped:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Dropped"}, "json_string": "{\"text\":\"Diorite Slab Dropped\"}"}}, "b.crimsonDoor": {"CriteriaName": "minecraft.broken:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Broken"}, "json_string": "{\"text\":\"Crimson Door Broken\"}"}}, "d.pig": {"CriteriaName": "minecraft.killed_by:minecraft.pig", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Pig"}, "json_string": "{\"text\":\"Killed by Pig\"}"}}, "b.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Broken"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Broken\"}"}}, "p.magentaStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Picked Up"}, "json_string": "{\"text\":\"Magenta Stained Glass Picked Up\"}"}}, "m.grayBanner": {"CriteriaName": "minecraft.mined:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Mined"}, "json_string": "{\"text\":\"Gray Banner Mined\"}"}}, "u.pinkCarpet": {"CriteriaName": "minecraft.used:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Used"}, "json_string": "{\"text\":\"Pink Carpet Used\"}"}}, "b.quartz": {"CriteriaName": "minecraft.broken:minecraft.quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Broken"}, "json_string": "{\"text\":\"Quartz Broken\"}"}}, "c.cookedBeef": {"CriteriaName": "minecraft.crafted:minecraft.cooked_beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Beef Crafted"}, "json_string": "{\"text\":\"Cooked Beef Crafted\"}"}}, "q.sponge": {"CriteriaName": "minecraft.dropped:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Dropped"}, "json_string": "{\"text\":\"Sponge Dropped\"}"}}, "q.soulLantern": {"CriteriaName": "minecraft.dropped:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Dropped"}, "json_string": "{\"text\":\"Soul Lantern Dropped\"}"}}, "c.ironHorseArmor": {"CriteriaName": "minecraft.crafted:minecraft.iron_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Horse Armor Crafted"}, "json_string": "{\"text\":\"Iron Horse Armor Crafted\"}"}}, "u.redstoneOre": {"CriteriaName": "minecraft.used:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Used"}, "json_string": "{\"text\":\"Redstone Ore Used\"}"}}, "p.acaciaLog": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Picked Up"}, "json_string": "{\"text\":\"Acacia Log Picked Up\"}"}}, "m.prismarineBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Mined"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Mined\"}"}}, "q.redstoneLamp": {"CriteriaName": "minecraft.dropped:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Dropped"}, "json_string": "{\"text\":\"Redstone Lamp Dropped\"}"}}, "q.melon": {"CriteriaName": "minecraft.dropped:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Dropped"}, "json_string": "{\"text\":\"Melon Dropped\"}"}}, "b.purpleCarpet": {"CriteriaName": "minecraft.broken:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Broken"}, "json_string": "{\"text\":\"Purple Carpet Broken\"}"}}, "q.purpleWool": {"CriteriaName": "minecraft.dropped:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Dropped"}, "json_string": "{\"text\":\"Purple Wool Dropped\"}"}}, "c.polishedGraniteStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Crafted"}, "json_string": "{\"text\":\"Polished Granite Stairs Crafted\"}"}}, "u.pufferfishSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.pufferfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Spawn Egg Used"}, "json_string": "{\"text\":\"Pufferfish Spawn Egg Used\"}"}}, "q.brownShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Dropped"}, "json_string": "{\"text\":\"Brown Shulker Box Dropped\"}"}}, "q.enderEye": {"CriteriaName": "minecraft.dropped:minecraft.ender_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Eye Dropped"}, "json_string": "{\"text\":\"Ender Eye Dropped\"}"}}, "u.carrotOnAStick": {"CriteriaName": "minecraft.used:minecraft.carrot_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot On A Stick Used"}, "json_string": "{\"text\":\"Carrot On A Stick Used\"}"}}, "b.whiteDye": {"CriteriaName": "minecraft.broken:minecraft.white_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Dye Broken"}, "json_string": "{\"text\":\"White Dye Broken\"}"}}, "c.oakWood": {"CriteriaName": "minecraft.crafted:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Crafted"}, "json_string": "{\"text\":\"Oak Wood Crafted\"}"}}, "p.oakTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Picked Up"}, "json_string": "{\"text\":\"Oak Trapdoor Picked Up\"}"}}, "c.buddingAmethyst": {"CriteriaName": "minecraft.crafted:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Crafted"}, "json_string": "{\"text\":\"Budding Amethyst Crafted\"}"}}, "p.lightBlueConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Picked Up"}, "json_string": "{\"text\":\"Light Blue Concrete Picked Up\"}"}}, "q.tallGrass": {"CriteriaName": "minecraft.dropped:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Dropped"}, "json_string": "{\"text\":\"Tall Grass Dropped\"}"}}, "p.deadFireCoral": {"CriteriaName": "minecraft.picked_up:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Picked Up"}, "json_string": "{\"text\":\"Dead Fire Coral Picked Up\"}"}}, "p.deadFireCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Picked Up"}, "json_string": "{\"text\":\"Dead Fire Coral Block Picked Up\"}"}}, "m.yellowStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Mined\"}"}}, "p.cocoaBeans": {"CriteriaName": "minecraft.picked_up:minecraft.cocoa_beans", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Beans Picked Up"}, "json_string": "{\"text\":\"Cocoa Beans Picked Up\"}"}}, "b.yellowConcrete": {"CriteriaName": "minecraft.broken:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Broken"}, "json_string": "{\"text\":\"Yellow Concrete Broken\"}"}}, "q.mediumAmethystBud": {"CriteriaName": "minecraft.dropped:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Dropped"}, "json_string": "{\"text\":\"Medium Amethyst Bud Dropped\"}"}}, "b.jungleTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Broken"}, "json_string": "{\"text\":\"Jungle Trapdoor Broken\"}"}}, "b.cutRedSandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Broken"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Broken\"}"}}, "q.orangeCandle": {"CriteriaName": "minecraft.dropped:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Dropped"}, "json_string": "{\"text\":\"Orange Candle Dropped\"}"}}, "u.prismarineBrickStairs": {"CriteriaName": "minecraft.used:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Used"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Used\"}"}}, "u.lightBlueBed": {"CriteriaName": "minecraft.used:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Used"}, "json_string": "{\"text\":\"Light Blue Bed Used\"}"}}, "u.rabbit": {"CriteriaName": "minecraft.used:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Used"}, "json_string": "{\"text\":\"Rabbit Used\"}"}}, "m.oakWallSign": {"CriteriaName": "minecraft.mined:minecraft.oak_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wall Sign Mined"}, "json_string": "{\"text\":\"Oak Wall Sign Mined\"}"}}, "p.mossyCobblestoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Picked Up"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Picked Up\"}"}}, "c.warpedHyphae": {"CriteriaName": "minecraft.crafted:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Crafted"}, "json_string": "{\"text\":\"Warped Hyphae Crafted\"}"}}, "u.evokerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.evoker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Spawn Egg Used"}, "json_string": "{\"text\":\"Evoker Spawn Egg Used\"}"}}, "b.tuff": {"CriteriaName": "minecraft.broken:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Broken"}, "json_string": "{\"text\":\"Tuff Broken\"}"}}, "q.sugarCane": {"CriteriaName": "minecraft.dropped:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Dropped"}, "json_string": "{\"text\":\"Sugar Cane Dropped\"}"}}, "c.cutRedSandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Crafted\"}"}}, "q.infestedMossyStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Dropped"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Dropped\"}"}}, "c.woodenPickaxe": {"CriteriaName": "minecraft.crafted:minecraft.wooden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Pickaxe Crafted"}, "json_string": "{\"text\":\"Wooden Pickaxe Crafted\"}"}}, "u.sandstoneStairs": {"CriteriaName": "minecraft.used:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Used"}, "json_string": "{\"text\":\"Sandstone Stairs Used\"}"}}, "m.limeWallBanner": {"CriteriaName": "minecraft.mined:minecraft.lime_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wall Banner Mined"}, "json_string": "{\"text\":\"Lime Wall Banner Mined\"}"}}, "m.zombieHead": {"CriteriaName": "minecraft.mined:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Mined"}, "json_string": "{\"text\":\"Zombie Head Mined\"}"}}, "q.goldenApple": {"CriteriaName": "minecraft.dropped:minecraft.golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Apple Dropped"}, "json_string": "{\"text\":\"Golden Apple Dropped\"}"}}, "c.mycelium": {"CriteriaName": "minecraft.crafted:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Crafted"}, "json_string": "{\"text\":\"Mycelium Crafted\"}"}}, "q.floweringAzaleaLeaves": {"CriteriaName": "minecraft.dropped:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Dropped"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Dropped\"}"}}, "c.writtenBook": {"CriteriaName": "minecraft.crafted:minecraft.written_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Written Book Crafted"}, "json_string": "{\"text\":\"Written Book Crafted\"}"}}, "b.orangeBanner": {"CriteriaName": "minecraft.broken:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Broken"}, "json_string": "{\"text\":\"Orange Banner Broken\"}"}}, "b.repeatingCommandBlock": {"CriteriaName": "minecraft.broken:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Broken"}, "json_string": "{\"text\":\"Repeating Command Block Broken\"}"}}, "m.mossCarpet": {"CriteriaName": "minecraft.mined:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Mined"}, "json_string": "{\"text\":\"Moss Carpet Mined\"}"}}, "c.mossyStoneBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Crafted"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Crafted\"}"}}, "p.terracotta": {"CriteriaName": "minecraft.picked_up:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Picked Up"}, "json_string": "{\"text\":\"Terracotta Picked Up\"}"}}, "b.dioriteStairs": {"CriteriaName": "minecraft.broken:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Broken"}, "json_string": "{\"text\":\"Diorite Stairs Broken\"}"}}, "d.illusioner": {"CriteriaName": "minecraft.killed_by:minecraft.illusioner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Illusioner"}, "json_string": "{\"text\":\"Killed by Illusioner\"}"}}, "g.cleanArmor": {"CriteriaName": "minecraft.custom:minecraft.clean_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clean Armor"}, "json_string": "{\"text\":\"Clean Armor\"}"}}, "k.fox": {"CriteriaName": "minecraft.killed:minecraft.fox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Killed"}, "json_string": "{\"text\":\"Fox Killed\"}"}}, "u.dirt": {"CriteriaName": "minecraft.used:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Used"}, "json_string": "{\"text\":\"Dirt Used\"}"}}, "u.tubeCoralFan": {"CriteriaName": "minecraft.used:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Used"}, "json_string": "{\"text\":\"Tube Coral Fan Used\"}"}}, "c.creeperSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.creeper_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Spawn Egg Crafted"}, "json_string": "{\"text\":\"Creeper Spawn Egg Crafted\"}"}}, "u.strippedSpruceWood": {"CriteriaName": "minecraft.used:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Used"}, "json_string": "{\"text\":\"Stripped Spruce Wood Used\"}"}}, "m.tubeCoralFan": {"CriteriaName": "minecraft.mined:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Mined"}, "json_string": "{\"text\":\"Tube Coral Fan Mined\"}"}}, "m.grayWallBanner": {"CriteriaName": "minecraft.mined:minecraft.gray_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wall Banner Mined"}, "json_string": "{\"text\":\"Gray Wall Banner Mined\"}"}}, "cu.sprintOneCm": {"CriteriaName": "minecraft.custom:minecraft.sprint_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sprint One Cm"}, "json_string": "{\"text\":\"Sprint One Cm\"}"}}, "u.warpedFenceGate": {"CriteriaName": "minecraft.used:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Used"}, "json_string": "{\"text\":\"Warped Fence Gate Used\"}"}}, "u.grayShulkerBox": {"CriteriaName": "minecraft.used:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Used"}, "json_string": "{\"text\":\"Gray Shulker Box Used\"}"}}, "b.chorusFruit": {"CriteriaName": "minecraft.broken:minecraft.chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Fruit Broken"}, "json_string": "{\"text\":\"Chorus Fruit Broken\"}"}}, "c.limeConcrete": {"CriteriaName": "minecraft.crafted:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Crafted"}, "json_string": "{\"text\":\"Lime Concrete Crafted\"}"}}, "p.petrifiedOakSlab": {"CriteriaName": "minecraft.picked_up:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Picked Up"}, "json_string": "{\"text\":\"Petrified Oak Slab Picked Up\"}"}}, "c.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Crafted\"}"}}, "b.glassBottle": {"CriteriaName": "minecraft.broken:minecraft.glass_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Bottle Broken"}, "json_string": "{\"text\":\"Glass Bottle Broken\"}"}}, "c.redShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Crafted"}, "json_string": "{\"text\":\"Red Shulker Box Crafted\"}"}}, "m.warpedDoor": {"CriteriaName": "minecraft.mined:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Mined"}, "json_string": "{\"text\":\"Warped Door Mined\"}"}}, "q.polishedBlackstoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Dropped\"}"}}, "c.redstone": {"CriteriaName": "minecraft.crafted:minecraft.redstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Crafted"}, "json_string": "{\"text\":\"Redstone Crafted\"}"}}, "q.blackConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Dropped"}, "json_string": "{\"text\":\"Black Concrete Powder Dropped\"}"}}, "m.orangeCandleCake": {"CriteriaName": "minecraft.mined:minecraft.orange_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Cake Mined"}, "json_string": "{\"text\":\"Orange Candle Cake Mined\"}"}}, "c.jungleButton": {"CriteriaName": "minecraft.crafted:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Crafted"}, "json_string": "{\"text\":\"Jungle Button Crafted\"}"}}, "b.magentaBanner": {"CriteriaName": "minecraft.broken:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Broken"}, "json_string": "{\"text\":\"Magenta Banner Broken\"}"}}, "u.acaciaFenceGate": {"CriteriaName": "minecraft.used:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Used"}, "json_string": "{\"text\":\"Acacia Fence Gate Used\"}"}}, "u.weatheredCutCopper": {"CriteriaName": "minecraft.used:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Used"}, "json_string": "{\"text\":\"Weathered Cut Copper Used\"}"}}, "q.warpedFungusOnAStick": {"CriteriaName": "minecraft.dropped:minecraft.warped_fungus_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus On A Stick Dropped"}, "json_string": "{\"text\":\"Warped Fungus On A Stick Dropped\"}"}}, "q.spruceSapling": {"CriteriaName": "minecraft.dropped:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Dropped"}, "json_string": "{\"text\":\"Spruce Sapling Dropped\"}"}}, "m.lantern": {"CriteriaName": "minecraft.mined:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Mined"}, "json_string": "{\"text\":\"Lantern Mined\"}"}}, "p.orangeStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Picked Up"}, "json_string": "{\"text\":\"Orange Stained Glass Picked Up\"}"}}, "p.endStoneBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Picked Up"}, "json_string": "{\"text\":\"End Stone Brick Wall Picked Up\"}"}}, "b.darkOakLeaves": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Broken"}, "json_string": "{\"text\":\"Dark Oak Leaves Broken\"}"}}, "p.goatSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.goat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Goat Spawn Egg Picked Up\"}"}}, "q.chorusFruit": {"CriteriaName": "minecraft.dropped:minecraft.chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Fruit Dropped"}, "json_string": "{\"text\":\"Chorus Fruit Dropped\"}"}}, "p.acaciaButton": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Picked Up"}, "json_string": "{\"text\":\"Acacia Button Picked Up\"}"}}, "p.dirt": {"CriteriaName": "minecraft.picked_up:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Picked Up"}, "json_string": "{\"text\":\"Dirt Picked Up\"}"}}, "p.azureBluet": {"CriteriaName": "minecraft.picked_up:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Picked Up"}, "json_string": "{\"text\":\"Azure Bluet Picked Up\"}"}}, "g.damageAbsorbed": {"CriteriaName": "minecraft.custom:minecraft.damage_absorbed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Absorbed"}, "json_string": "{\"text\":\"Damage Absorbed\"}"}}, "c.straySpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.stray_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Spawn Egg Crafted"}, "json_string": "{\"text\":\"Stray Spawn Egg Crafted\"}"}}, "cu.killedByDarkGrayTeam": {"CriteriaName": "killedByTeam.dark_gray", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Gray Team"}, "json_string": "{\"text\":\"Killed by Gray Team\"}"}}, "q.acaciaPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Dropped"}, "json_string": "{\"text\":\"Acacia Pressure Plate Dropped\"}"}}, "u.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Used"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Used\"}"}}, "m.furnace": {"CriteriaName": "minecraft.mined:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Mined"}, "json_string": "{\"text\":\"Furnace Mined\"}"}}, "p.strippedWarpedStem": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Picked Up"}, "json_string": "{\"text\":\"Stripped Warped Stem Picked Up\"}"}}, "u.muleSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.mule_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Spawn Egg Used"}, "json_string": "{\"text\":\"Mule Spawn Egg Used\"}"}}, "p.amethystShard": {"CriteriaName": "minecraft.picked_up:minecraft.amethyst_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Shard Picked Up"}, "json_string": "{\"text\":\"Amethyst Shard Picked Up\"}"}}, "c.brownBanner": {"CriteriaName": "minecraft.crafted:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Crafted"}, "json_string": "{\"text\":\"Brown Banner Crafted\"}"}}, "q.blackstoneWall": {"CriteriaName": "minecraft.dropped:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Dropped"}, "json_string": "{\"text\":\"Blackstone Wall Dropped\"}"}}, "k.illusioner": {"CriteriaName": "minecraft.killed:minecraft.illusioner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Illusioner Killed"}, "json_string": "{\"text\":\"Illusioner Killed\"}"}}, "m.poppy": {"CriteriaName": "minecraft.mined:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Mined"}, "json_string": "{\"text\":\"Poppy Mined\"}"}}, "q.brownCandle": {"CriteriaName": "minecraft.dropped:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Dropped"}, "json_string": "{\"text\":\"Brown Candle Dropped\"}"}}, "c.blueOrchid": {"CriteriaName": "minecraft.crafted:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Crafted"}, "json_string": "{\"text\":\"Blue Orchid Crafted\"}"}}, "q.cookedRabbit": {"CriteriaName": "minecraft.dropped:minecraft.cooked_rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Rabbit Dropped"}, "json_string": "{\"text\":\"Cooked Rabbit Dropped\"}"}}, "q.spiderSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Spawn Egg Dropped"}, "json_string": "{\"text\":\"Spider Spawn Egg Dropped\"}"}}, "q.poweredRail": {"CriteriaName": "minecraft.dropped:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Dropped"}, "json_string": "{\"text\":\"Powered Rail Dropped\"}"}}, "p.clock": {"CriteriaName": "minecraft.picked_up:minecraft.clock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clock Picked Up"}, "json_string": "{\"text\":\"Clock Picked Up\"}"}}, "u.tntMinecart": {"CriteriaName": "minecraft.used:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Used"}, "json_string": "{\"text\":\"Tnt Minecart Used\"}"}}, "q.strippedJungleWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Dropped"}, "json_string": "{\"text\":\"Stripped Jungle Wood Dropped\"}"}}, "q.snowBlock": {"CriteriaName": "minecraft.dropped:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Dropped"}, "json_string": "{\"text\":\"Snow Block Dropped\"}"}}, "p.lever": {"CriteriaName": "minecraft.picked_up:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Picked Up"}, "json_string": "{\"text\":\"Lever Picked Up\"}"}}, "m.deadBubbleCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.dead_bubble_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Dead Bubble Coral Wall Fan Mined\"}"}}, "u.greenCandle": {"CriteriaName": "minecraft.used:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Used"}, "json_string": "{\"text\":\"Green Candle Used\"}"}}, "m.gravel": {"CriteriaName": "minecraft.mined:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Mined"}, "json_string": "{\"text\":\"Gravel Mined\"}"}}, "q.warpedStairs": {"CriteriaName": "minecraft.dropped:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Dropped"}, "json_string": "{\"text\":\"Warped Stairs Dropped\"}"}}, "q.turtleSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.turtle_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Spawn Egg Dropped"}, "json_string": "{\"text\":\"Turtle Spawn Egg Dropped\"}"}}, "g.totalWorldTime": {"CriteriaName": "minecraft.custom:minecraft.total_world_time", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Total World Time"}, "json_string": "{\"text\":\"Total World Time\"}"}}, "c.driedKelpBlock": {"CriteriaName": "minecraft.crafted:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Crafted"}, "json_string": "{\"text\":\"Dried Kelp Block Crafted\"}"}}, "b.blueIce": {"CriteriaName": "minecraft.broken:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Broken"}, "json_string": "{\"text\":\"Blue Ice Broken\"}"}}, "b.orangeStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Broken"}, "json_string": "{\"text\":\"Orange Stained Glass Broken\"}"}}, "q.knowledgeBook": {"CriteriaName": "minecraft.dropped:minecraft.knowledge_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Knowledge Book Dropped"}, "json_string": "{\"text\":\"Knowledge Book Dropped\"}"}}, "m.limeBed": {"CriteriaName": "minecraft.mined:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Mined"}, "json_string": "{\"text\":\"Lime Bed Mined\"}"}}, "c.creeperBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.creeper_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Banner Pattern Crafted"}, "json_string": "{\"text\":\"Creeper Banner Pattern Crafted\"}"}}, "p.jungleBoat": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Boat Picked Up"}, "json_string": "{\"text\":\"Jungle Boat Picked Up\"}"}}, "p.whiteBed": {"CriteriaName": "minecraft.picked_up:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Picked Up"}, "json_string": "{\"text\":\"White Bed Picked Up\"}"}}, "u.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Used"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Used\"}"}}, "c.magmaCream": {"CriteriaName": "minecraft.crafted:minecraft.magma_cream", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cream Crafted"}, "json_string": "{\"text\":\"Magma Cream Crafted\"}"}}, "p.codBucket": {"CriteriaName": "minecraft.picked_up:minecraft.cod_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Bucket Picked Up"}, "json_string": "{\"text\":\"Cod Bucket Picked Up\"}"}}, "c.smoothStoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Crafted"}, "json_string": "{\"text\":\"Smooth Stone Slab Crafted\"}"}}, "p.chiseledSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Picked Up"}, "json_string": "{\"text\":\"Chiseled Sandstone Picked Up\"}"}}, "c.ironPickaxe": {"CriteriaName": "minecraft.crafted:minecraft.iron_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Pickaxe Crafted"}, "json_string": "{\"text\":\"Iron Pickaxe Crafted\"}"}}, "p.purpurStairs": {"CriteriaName": "minecraft.picked_up:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Picked Up"}, "json_string": "{\"text\":\"Purpur Stairs Picked Up\"}"}}, "m.deepslateCoalOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Mined"}, "json_string": "{\"text\":\"Deepslate Coal Ore Mined\"}"}}, "c.polishedBlackstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Crafted\"}"}}, "u.melon": {"CriteriaName": "minecraft.used:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Used"}, "json_string": "{\"text\":\"Melon Used\"}"}}, "b.creeperBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.creeper_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Banner Pattern Broken"}, "json_string": "{\"text\":\"Creeper Banner Pattern Broken\"}"}}, "m.redBanner": {"CriteriaName": "minecraft.mined:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Mined"}, "json_string": "{\"text\":\"Red Banner Mined\"}"}}, "c.acaciaPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Crafted"}, "json_string": "{\"text\":\"Acacia Pressure Plate Crafted\"}"}}, "c.jungleSapling": {"CriteriaName": "minecraft.crafted:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Crafted"}, "json_string": "{\"text\":\"Jungle Sapling Crafted\"}"}}, "b.piston": {"CriteriaName": "minecraft.broken:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Broken"}, "json_string": "{\"text\":\"Piston Broken\"}"}}, "u.rawCopperBlock": {"CriteriaName": "minecraft.used:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Used"}, "json_string": "{\"text\":\"Raw Copper Block Used\"}"}}, "u.dioriteWall": {"CriteriaName": "minecraft.used:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Used"}, "json_string": "{\"text\":\"Diorite Wall Used\"}"}}, "d.husk": {"CriteriaName": "minecraft.killed_by:minecraft.husk", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Husk"}, "json_string": "{\"text\":\"Killed by Husk\"}"}}, "p.lilyPad": {"CriteriaName": "minecraft.picked_up:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Picked Up"}, "json_string": "{\"text\":\"Lily Pad Picked Up\"}"}}, "u.suspiciousStew": {"CriteriaName": "minecraft.used:minecraft.suspicious_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Suspicious Stew Used"}, "json_string": "{\"text\":\"Suspicious Stew Used\"}"}}, "q.polarBearSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.polar_bear_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Spawn Egg Dropped"}, "json_string": "{\"text\":\"Polar Bear Spawn Egg Dropped\"}"}}, "q.redSandstone": {"CriteriaName": "minecraft.dropped:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Dropped"}, "json_string": "{\"text\":\"Red Sandstone Dropped\"}"}}, "b.greenWool": {"CriteriaName": "minecraft.broken:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Broken"}, "json_string": "{\"text\":\"Green Wool Broken\"}"}}, "c.fern": {"CriteriaName": "minecraft.crafted:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Crafted"}, "json_string": "{\"text\":\"Fern Crafted\"}"}}, "m.spruceLog": {"CriteriaName": "minecraft.mined:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Mined"}, "json_string": "{\"text\":\"Spruce Log Mined\"}"}}, "q.redBed": {"CriteriaName": "minecraft.dropped:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Dropped"}, "json_string": "{\"text\":\"Red Bed Dropped\"}"}}, "b.greenStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Green Stained Glass Pane Broken\"}"}}, "m.spruceFenceGate": {"CriteriaName": "minecraft.mined:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Mined"}, "json_string": "{\"text\":\"Spruce Fence Gate Mined\"}"}}, "u.parrotSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.parrot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Spawn Egg Used"}, "json_string": "{\"text\":\"Parrot Spawn Egg Used\"}"}}, "p.ice": {"CriteriaName": "minecraft.picked_up:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Picked Up"}, "json_string": "{\"text\":\"Ice Picked Up\"}"}}, "m.warpedPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Mined"}, "json_string": "{\"text\":\"Warped Pressure Plate Mined\"}"}}, "b.splashPotion": {"CriteriaName": "minecraft.broken:minecraft.splash_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Splash Potion Broken"}, "json_string": "{\"text\":\"Splash Potion Broken\"}"}}, "b.purpleShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Broken"}, "json_string": "{\"text\":\"Purple Shulker Box Broken\"}"}}, "c.grayConcrete": {"CriteriaName": "minecraft.crafted:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Crafted"}, "json_string": "{\"text\":\"Gray Concrete Crafted\"}"}}, "p.porkchop": {"CriteriaName": "minecraft.picked_up:minecraft.porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Porkchop Picked Up"}, "json_string": "{\"text\":\"Porkchop Picked Up\"}"}}, "b.zombieVillagerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.zombie_villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Spawn Egg Broken"}, "json_string": "{\"text\":\"Zombie Villager Spawn Egg Broken\"}"}}, "m.blackstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Mined"}, "json_string": "{\"text\":\"Blackstone Stairs Mined\"}"}}, "u.woodenHoe": {"CriteriaName": "minecraft.used:minecraft.wooden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Hoe Used"}, "json_string": "{\"text\":\"Wooden Hoe Used\"}"}}, "u.oakSapling": {"CriteriaName": "minecraft.used:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Used"}, "json_string": "{\"text\":\"Oak Sapling Used\"}"}}, "c.netheriteHelmet": {"CriteriaName": "minecraft.crafted:minecraft.netherite_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Helmet Crafted"}, "json_string": "{\"text\":\"Netherite Helmet Crafted\"}"}}, "m.birchPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Mined"}, "json_string": "{\"text\":\"Birch Pressure Plate Mined\"}"}}, "b.beetrootSoup": {"CriteriaName": "minecraft.broken:minecraft.beetroot_soup", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Soup Broken"}, "json_string": "{\"text\":\"Beetroot Soup Broken\"}"}}, "u.smallDripleaf": {"CriteriaName": "minecraft.used:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Used"}, "json_string": "{\"text\":\"Small Dripleaf Used\"}"}}, "b.chiseledNetherBricks": {"CriteriaName": "minecraft.broken:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Broken"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Broken\"}"}}, "c.limeBed": {"CriteriaName": "minecraft.crafted:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Crafted"}, "json_string": "{\"text\":\"Lime Bed Crafted\"}"}}, "q.obsidian": {"CriteriaName": "minecraft.dropped:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Dropped"}, "json_string": "{\"text\":\"Obsidian Dropped\"}"}}, "m.deepslateGoldOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Mined"}, "json_string": "{\"text\":\"Deepslate Gold Ore Mined\"}"}}, "u.andesite": {"CriteriaName": "minecraft.used:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Used"}, "json_string": "{\"text\":\"Andesite Used\"}"}}, "c.endCrystal": {"CriteriaName": "minecraft.crafted:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Crafted"}, "json_string": "{\"text\":\"End Crystal Crafted\"}"}}, "p.quartz": {"CriteriaName": "minecraft.picked_up:minecraft.quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Picked Up"}, "json_string": "{\"text\":\"Quartz Picked Up\"}"}}, "u.brownConcretePowder": {"CriteriaName": "minecraft.used:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Used"}, "json_string": "{\"text\":\"Brown Concrete Powder Used\"}"}}, "p.smoothQuartzStairs": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Picked Up"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Picked Up\"}"}}, "q.endStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Dropped"}, "json_string": "{\"text\":\"End Stone Bricks Dropped\"}"}}, "c.anvil": {"CriteriaName": "minecraft.crafted:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Crafted"}, "json_string": "{\"text\":\"Anvil Crafted\"}"}}, "m.pottedFloweringAzaleaBush": {"CriteriaName": "minecraft.mined:minecraft.potted_flowering_azalea_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Flowering Azalea Bush Mined"}, "json_string": "{\"text\":\"Potted Flowering Azalea Bush Mined\"}"}}, "b.birchLeaves": {"CriteriaName": "minecraft.broken:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Broken"}, "json_string": "{\"text\":\"Birch Leaves Broken\"}"}}, "c.blazeRod": {"CriteriaName": "minecraft.crafted:minecraft.blaze_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Rod Crafted"}, "json_string": "{\"text\":\"Blaze Rod Crafted\"}"}}, "p.bubbleCoral": {"CriteriaName": "minecraft.picked_up:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Picked Up"}, "json_string": "{\"text\":\"Bubble Coral Picked Up\"}"}}, "b.elytra": {"CriteriaName": "minecraft.broken:minecraft.elytra", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elytra Broken"}, "json_string": "{\"text\":\"Elytra Broken\"}"}}, "p.stoneAxe": {"CriteriaName": "minecraft.picked_up:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Axe Picked Up"}, "json_string": "{\"text\":\"Stone Axe Picked Up\"}"}}, "u.deepslateRedstoneOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Used"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Used\"}"}}, "p.musicDiscChirp": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_chirp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Chirp Picked Up"}, "json_string": "{\"text\":\"Music Disc Chirp Picked Up\"}"}}, "b.deadTubeCoralFan": {"CriteriaName": "minecraft.broken:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Broken"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Broken\"}"}}, "q.waxedCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Dropped\"}"}}, "c.andesite": {"CriteriaName": "minecraft.crafted:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Crafted"}, "json_string": "{\"text\":\"Andesite Crafted\"}"}}, "u.beetroot": {"CriteriaName": "minecraft.used:minecraft.beetroot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Used"}, "json_string": "{\"text\":\"Beetroot Used\"}"}}, "p.weepingVines": {"CriteriaName": "minecraft.picked_up:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Picked Up"}, "json_string": "{\"text\":\"Weeping Vines Picked Up\"}"}}, "c.sponge": {"CriteriaName": "minecraft.crafted:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Crafted"}, "json_string": "{\"text\":\"Sponge Crafted\"}"}}, "b.magentaStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Broken"}, "json_string": "{\"text\":\"Magenta Stained Glass Broken\"}"}}, "u.brownMushroom": {"CriteriaName": "minecraft.used:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Used"}, "json_string": "{\"text\":\"Brown Mushroom Used\"}"}}, "p.ironOre": {"CriteriaName": "minecraft.picked_up:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Picked Up"}, "json_string": "{\"text\":\"Iron Ore Picked Up\"}"}}, "m.lightBlueBed": {"CriteriaName": "minecraft.mined:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Mined"}, "json_string": "{\"text\":\"Light Blue Bed Mined\"}"}}, "c.dragonEgg": {"CriteriaName": "minecraft.crafted:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Crafted"}, "json_string": "{\"text\":\"Dragon Egg Crafted\"}"}}, "u.andesiteStairs": {"CriteriaName": "minecraft.used:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Used"}, "json_string": "{\"text\":\"Andesite Stairs Used\"}"}}, "b.purpleDye": {"CriteriaName": "minecraft.broken:minecraft.purple_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Dye Broken"}, "json_string": "{\"text\":\"Purple Dye Broken\"}"}}, "p.magentaTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Picked Up"}, "json_string": "{\"text\":\"Magenta Terracotta Picked Up\"}"}}, "b.greenTerracotta": {"CriteriaName": "minecraft.broken:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Broken"}, "json_string": "{\"text\":\"Green Terracotta Broken\"}"}}, "b.chiseledDeepslate": {"CriteriaName": "minecraft.broken:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Broken"}, "json_string": "{\"text\":\"Chiseled Deepslate Broken\"}"}}, "u.birchButton": {"CriteriaName": "minecraft.used:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Used"}, "json_string": "{\"text\":\"Birch Button Used\"}"}}, "c.strippedJungleLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Crafted"}, "json_string": "{\"text\":\"Stripped Jungle Log Crafted\"}"}}, "u.musicDisc13": {"CriteriaName": "minecraft.used:minecraft.music_disc_13", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 13 Used"}, "json_string": "{\"text\":\"Music Disc 13 Used\"}"}}, "q.warpedFungus": {"CriteriaName": "minecraft.dropped:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Dropped"}, "json_string": "{\"text\":\"Warped Fungus Dropped\"}"}}, "u.musicDisc11": {"CriteriaName": "minecraft.used:minecraft.music_disc_11", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 11 Used"}, "json_string": "{\"text\":\"Music Disc 11 Used\"}"}}, "m.cobblestoneStairs": {"CriteriaName": "minecraft.mined:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Mined"}, "json_string": "{\"text\":\"Cobblestone Stairs Mined\"}"}}, "c.junglePlanks": {"CriteriaName": "minecraft.crafted:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Crafted"}, "json_string": "{\"text\":\"Jungle Planks Crafted\"}"}}, "u.azalea": {"CriteriaName": "minecraft.used:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Used"}, "json_string": "{\"text\":\"Azalea Used\"}"}}, "u.polishedGraniteStairs": {"CriteriaName": "minecraft.used:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Used"}, "json_string": "{\"text\":\"Polished Granite Stairs Used\"}"}}, "b.purpleCandle": {"CriteriaName": "minecraft.broken:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Broken"}, "json_string": "{\"text\":\"Purple Candle Broken\"}"}}, "q.salmon": {"CriteriaName": "minecraft.dropped:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Dropped"}, "json_string": "{\"text\":\"Salmon Dropped\"}"}}, "u.sheepSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.sheep_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Spawn Egg Used"}, "json_string": "{\"text\":\"Sheep Spawn Egg Used\"}"}}, "m.blueOrchid": {"CriteriaName": "minecraft.mined:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Mined"}, "json_string": "{\"text\":\"Blue Orchid Mined\"}"}}, "m.largeAmethystBud": {"CriteriaName": "minecraft.mined:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Mined"}, "json_string": "{\"text\":\"Large Amethyst Bud Mined\"}"}}, "q.carrotOnAStick": {"CriteriaName": "minecraft.dropped:minecraft.carrot_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot On A Stick Dropped"}, "json_string": "{\"text\":\"Carrot On A Stick Dropped\"}"}}, "p.piglinBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.piglin_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Piglin Banner Pattern Picked Up\"}"}}, "u.rail": {"CriteriaName": "minecraft.used:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Used"}, "json_string": "{\"text\":\"Rail Used\"}"}}, "p.crimsonTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Picked Up"}, "json_string": "{\"text\":\"Crimson Trapdoor Picked Up\"}"}}, "q.hayBlock": {"CriteriaName": "minecraft.dropped:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Dropped"}, "json_string": "{\"text\":\"Hay Block Dropped\"}"}}, "c.yellowTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Crafted"}, "json_string": "{\"text\":\"Yellow Terracotta Crafted\"}"}}, "m.graniteWall": {"CriteriaName": "minecraft.mined:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Mined"}, "json_string": "{\"text\":\"Granite Wall Mined\"}"}}, "q.dioriteStairs": {"CriteriaName": "minecraft.dropped:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Dropped"}, "json_string": "{\"text\":\"Diorite Stairs Dropped\"}"}}, "c.cyanGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Crafted\"}"}}, "m.pottedWarpedRoots": {"CriteriaName": "minecraft.mined:minecraft.potted_warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Warped Roots Mined"}, "json_string": "{\"text\":\"Potted Warped Roots Mined\"}"}}, "b.darkOakSign": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Broken"}, "json_string": "{\"text\":\"Dark Oak Sign Broken\"}"}}, "p.wolfSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.wolf_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Wolf Spawn Egg Picked Up\"}"}}, "c.poppy": {"CriteriaName": "minecraft.crafted:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Crafted"}, "json_string": "{\"text\":\"Poppy Crafted\"}"}}, "b.mutton": {"CriteriaName": "minecraft.broken:minecraft.mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mutton Broken"}, "json_string": "{\"text\":\"Mutton Broken\"}"}}, "m.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Mined\"}"}}, "p.enderChest": {"CriteriaName": "minecraft.picked_up:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Picked Up"}, "json_string": "{\"text\":\"Ender Chest Picked Up\"}"}}, "q.smoothQuartzStairs": {"CriteriaName": "minecraft.dropped:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Dropped"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Dropped\"}"}}, "d.eyeOfEnder": {"CriteriaName": "minecraft.killed_by:minecraft.eye_of_ender", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Eye Of Ender"}, "json_string": "{\"text\":\"Killed by Eye Of Ender\"}"}}, "u.flint": {"CriteriaName": "minecraft.used:minecraft.flint", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint Used"}, "json_string": "{\"text\":\"Flint Used\"}"}}, "c.basalt": {"CriteriaName": "minecraft.crafted:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Crafted"}, "json_string": "{\"text\":\"Basalt Crafted\"}"}}, "u.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Used"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Used\"}"}}, "u.acaciaSign": {"CriteriaName": "minecraft.used:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Used"}, "json_string": "{\"text\":\"Acacia Sign Used\"}"}}, "u.turtleSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.turtle_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Spawn Egg Used"}, "json_string": "{\"text\":\"Turtle Spawn Egg Used\"}"}}, "p.endStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Picked Up"}, "json_string": "{\"text\":\"End Stone Bricks Picked Up\"}"}}, "m.smallDripleaf": {"CriteriaName": "minecraft.mined:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Mined"}, "json_string": "{\"text\":\"Small Dripleaf Mined\"}"}}, "u.deadBrainCoralFan": {"CriteriaName": "minecraft.used:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Used"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Used\"}"}}, "p.huskSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.husk_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Husk Spawn Egg Picked Up\"}"}}, "u.chiseledRedSandstone": {"CriteriaName": "minecraft.used:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Used"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Used\"}"}}, "q.mossyStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Dropped"}, "json_string": "{\"text\":\"Mossy Stone Bricks Dropped\"}"}}, "c.spruceBoat": {"CriteriaName": "minecraft.crafted:minecraft.spruce_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Boat Crafted"}, "json_string": "{\"text\":\"Spruce Boat Crafted\"}"}}, "m.tuff": {"CriteriaName": "minecraft.mined:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Mined"}, "json_string": "{\"text\":\"Tuff Mined\"}"}}, "q.redWool": {"CriteriaName": "minecraft.dropped:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Dropped"}, "json_string": "{\"text\":\"Red Wool Dropped\"}"}}, "u.snowBlock": {"CriteriaName": "minecraft.used:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Used"}, "json_string": "{\"text\":\"Snow Block Used\"}"}}, "tc.disabled": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.disabled"}, "json_string": "{\"text\":\"tc.disabled\"}"}}, "u.blazeRod": {"CriteriaName": "minecraft.used:minecraft.blaze_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Rod Used"}, "json_string": "{\"text\":\"Blaze Rod Used\"}"}}, "b.sand": {"CriteriaName": "minecraft.broken:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Broken"}, "json_string": "{\"text\":\"Sand Broken\"}"}}, "u.pinkCandle": {"CriteriaName": "minecraft.used:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Used"}, "json_string": "{\"text\":\"Pink Candle Used\"}"}}, "b.creeperHead": {"CriteriaName": "minecraft.broken:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Broken"}, "json_string": "{\"text\":\"Creeper Head Broken\"}"}}, "u.twistingVines": {"CriteriaName": "minecraft.used:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Used"}, "json_string": "{\"text\":\"Twisting Vines Used\"}"}}, "m.lightBlueTerracotta": {"CriteriaName": "minecraft.mined:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Mined"}, "json_string": "{\"text\":\"Light Blue Terracotta Mined\"}"}}, "c.yellowWool": {"CriteriaName": "minecraft.crafted:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Crafted"}, "json_string": "{\"text\":\"Yellow Wool Crafted\"}"}}, "u.chainmailChestplate": {"CriteriaName": "minecraft.used:minecraft.chainmail_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Chestplate Used"}, "json_string": "{\"text\":\"Chainmail Chestplate Used\"}"}}, "b.redTerracotta": {"CriteriaName": "minecraft.broken:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Broken"}, "json_string": "{\"text\":\"Red Terracotta Broken\"}"}}, "b.piglinSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Spawn Egg Broken"}, "json_string": "{\"text\":\"Piglin Spawn Egg Broken\"}"}}, "c.strippedOakLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Crafted"}, "json_string": "{\"text\":\"Stripped Oak Log Crafted\"}"}}, "q.diamond": {"CriteriaName": "minecraft.dropped:minecraft.diamond", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Dropped"}, "json_string": "{\"text\":\"Diamond Dropped\"}"}}, "c.spyglass": {"CriteriaName": "minecraft.crafted:minecraft.spyglass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spyglass Crafted"}, "json_string": "{\"text\":\"Spyglass Crafted\"}"}}, "u.lightGrayCarpet": {"CriteriaName": "minecraft.used:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Used"}, "json_string": "{\"text\":\"Light Gray Carpet Used\"}"}}, "m.quartzStairs": {"CriteriaName": "minecraft.mined:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Mined"}, "json_string": "{\"text\":\"Quartz Stairs Mined\"}"}}, "p.glowInkSac": {"CriteriaName": "minecraft.picked_up:minecraft.glow_ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Ink Sac Picked Up"}, "json_string": "{\"text\":\"Glow Ink Sac Picked Up\"}"}}, "b.witchSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.witch_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Spawn Egg Broken"}, "json_string": "{\"text\":\"Witch Spawn Egg Broken\"}"}}, "u.blueIce": {"CriteriaName": "minecraft.used:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Used"}, "json_string": "{\"text\":\"Blue Ice Used\"}"}}, "m.pointedDripstone": {"CriteriaName": "minecraft.mined:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Mined"}, "json_string": "{\"text\":\"Pointed Dripstone Mined\"}"}}, "m.bubbleCoral": {"CriteriaName": "minecraft.mined:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Mined"}, "json_string": "{\"text\":\"Bubble Coral Mined\"}"}}, "q.darkOakLeaves": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Dropped"}, "json_string": "{\"text\":\"Dark Oak Leaves Dropped\"}"}}, "b.deepslateEmeraldOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Broken"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Broken\"}"}}, "q.farmland": {"CriteriaName": "minecraft.dropped:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Dropped"}, "json_string": "{\"text\":\"Farmland Dropped\"}"}}, "p.waxedExposedCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Picked Up\"}"}}, "p.cutSandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Cut Sandstone Slab Picked Up\"}"}}, "p.orangeWool": {"CriteriaName": "minecraft.picked_up:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Picked Up"}, "json_string": "{\"text\":\"Orange Wool Picked Up\"}"}}, "u.greenCarpet": {"CriteriaName": "minecraft.used:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Used"}, "json_string": "{\"text\":\"Green Carpet Used\"}"}}, "p.rottenFlesh": {"CriteriaName": "minecraft.picked_up:minecraft.rotten_flesh", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rotten Flesh Picked Up"}, "json_string": "{\"text\":\"Rotten Flesh Picked Up\"}"}}, "p.yellowStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Picked Up\"}"}}, "q.boneMeal": {"CriteriaName": "minecraft.dropped:minecraft.bone_meal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Meal Dropped"}, "json_string": "{\"text\":\"Bone Meal Dropped\"}"}}, "b.smoothSandstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Broken"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Broken\"}"}}, "b.oxidizedCopper": {"CriteriaName": "minecraft.broken:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Broken"}, "json_string": "{\"text\":\"Oxidized Copper Broken\"}"}}, "m.twistingVines": {"CriteriaName": "minecraft.mined:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Mined"}, "json_string": "{\"text\":\"Twisting Vines Mined\"}"}}, "b.knowledgeBook": {"CriteriaName": "minecraft.broken:minecraft.knowledge_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Knowledge Book Broken"}, "json_string": "{\"text\":\"Knowledge Book Broken\"}"}}, "p.charcoal": {"CriteriaName": "minecraft.picked_up:minecraft.charcoal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Charcoal Picked Up"}, "json_string": "{\"text\":\"Charcoal Picked Up\"}"}}, "g.potFlowers": {"CriteriaName": "minecraft.custom:minecraft.pot_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pot Flowers"}, "json_string": "{\"text\":\"Pot Flowers\"}"}}, "m.brownMushroom": {"CriteriaName": "minecraft.mined:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Mined"}, "json_string": "{\"text\":\"Brown Mushroom Mined\"}"}}, "q.chorusFlower": {"CriteriaName": "minecraft.dropped:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Dropped"}, "json_string": "{\"text\":\"Chorus Flower Dropped\"}"}}, "c.exposedCopper": {"CriteriaName": "minecraft.crafted:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Crafted"}, "json_string": "{\"text\":\"Exposed Copper Crafted\"}"}}, "c.acaciaSlab": {"CriteriaName": "minecraft.crafted:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Crafted"}, "json_string": "{\"text\":\"Acacia Slab Crafted\"}"}}, "c.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Crafted\"}"}}, "b.chainmailHelmet": {"CriteriaName": "minecraft.broken:minecraft.chainmail_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Helmet Broken"}, "json_string": "{\"text\":\"Chainmail Helmet Broken\"}"}}, "c.piglinSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Spawn Egg Crafted"}, "json_string": "{\"text\":\"Piglin Spawn Egg Crafted\"}"}}, "q.orangeStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Dropped"}, "json_string": "{\"text\":\"Orange Stained Glass Dropped\"}"}}, "p.netherWartBlock": {"CriteriaName": "minecraft.picked_up:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Picked Up"}, "json_string": "{\"text\":\"Nether Wart Block Picked Up\"}"}}, "u.yellowConcretePowder": {"CriteriaName": "minecraft.used:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Used"}, "json_string": "{\"text\":\"Yellow Concrete Powder Used\"}"}}, "c.floweringAzalea": {"CriteriaName": "minecraft.crafted:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Crafted"}, "json_string": "{\"text\":\"Flowering Azalea Crafted\"}"}}, "c.foxSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.fox_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Spawn Egg Crafted"}, "json_string": "{\"text\":\"Fox Spawn Egg Crafted\"}"}}, "m.zombieWallHead": {"CriteriaName": "minecraft.mined:minecraft.zombie_wall_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Wall Head Mined"}, "json_string": "{\"text\":\"Zombie Wall Head Mined\"}"}}, "b.blueBanner": {"CriteriaName": "minecraft.broken:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Broken"}, "json_string": "{\"text\":\"Blue Banner Broken\"}"}}, "b.endStoneBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Broken"}, "json_string": "{\"text\":\"End Stone Brick Slab Broken\"}"}}, "u.netheriteHoe": {"CriteriaName": "minecraft.used:minecraft.netherite_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Hoe Used"}, "json_string": "{\"text\":\"Netherite Hoe Used\"}"}}, "q.spruceLog": {"CriteriaName": "minecraft.dropped:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Dropped"}, "json_string": "{\"text\":\"Spruce Log Dropped\"}"}}, "q.sugar": {"CriteriaName": "minecraft.dropped:minecraft.sugar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Dropped"}, "json_string": "{\"text\":\"Sugar Dropped\"}"}}, "u.cowSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.cow_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Spawn Egg Used"}, "json_string": "{\"text\":\"Cow Spawn Egg Used\"}"}}, "c.greenConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Crafted"}, "json_string": "{\"text\":\"Green Concrete Powder Crafted\"}"}}, "u.goldenPickaxe": {"CriteriaName": "minecraft.used:minecraft.golden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Pickaxe Used"}, "json_string": "{\"text\":\"Golden Pickaxe Used\"}"}}, "q.woodenHoe": {"CriteriaName": "minecraft.dropped:minecraft.wooden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Hoe Dropped"}, "json_string": "{\"text\":\"Wooden Hoe Dropped\"}"}}, "k.elderGuardian": {"CriteriaName": "minecraft.killed:minecraft.elder_guardian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Killed"}, "json_string": "{\"text\":\"Elder Guardian Killed\"}"}}, "p.carrotOnAStick": {"CriteriaName": "minecraft.picked_up:minecraft.carrot_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot On A Stick Picked Up"}, "json_string": "{\"text\":\"Carrot On A Stick Picked Up\"}"}}, "u.chiseledStoneBricks": {"CriteriaName": "minecraft.used:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Used"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Used\"}"}}, "q.nameTag": {"CriteriaName": "minecraft.dropped:minecraft.name_tag", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Name Tag Dropped"}, "json_string": "{\"text\":\"Name Tag Dropped\"}"}}, "m.acaciaButton": {"CriteriaName": "minecraft.mined:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Mined"}, "json_string": "{\"text\":\"Acacia Button Mined\"}"}}, "m.spruceFence": {"CriteriaName": "minecraft.mined:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Mined"}, "json_string": "{\"text\":\"Spruce Fence Mined\"}"}}, "b.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Broken\"}"}}, "c.weatheredCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Crafted\"}"}}, "c.purpurPillar": {"CriteriaName": "minecraft.crafted:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Crafted"}, "json_string": "{\"text\":\"Purpur Pillar Crafted\"}"}}, "q.yellowGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Dropped\"}"}}, "c.glowSquidSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.glow_squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid Spawn Egg Crafted"}, "json_string": "{\"text\":\"Glow Squid Spawn Egg Crafted\"}"}}, "m.coalBlock": {"CriteriaName": "minecraft.mined:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Mined"}, "json_string": "{\"text\":\"Coal Block Mined\"}"}}, "m.netherrack": {"CriteriaName": "minecraft.mined:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Mined"}, "json_string": "{\"text\":\"Netherrack Mined\"}"}}, "b.goldOre": {"CriteriaName": "minecraft.broken:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Broken"}, "json_string": "{\"text\":\"Gold Ore Broken\"}"}}, "p.ocelotSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.ocelot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Ocelot Spawn Egg Picked Up\"}"}}, "u.polishedBlackstoneBricks": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Used"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Used\"}"}}, "q.warpedSlab": {"CriteriaName": "minecraft.dropped:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Dropped"}, "json_string": "{\"text\":\"Warped Slab Dropped\"}"}}, "u.elderGuardianSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.elder_guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Spawn Egg Used"}, "json_string": "{\"text\":\"Elder Guardian Spawn Egg Used\"}"}}, "b.yellowGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Broken\"}"}}, "k.snowball": {"CriteriaName": "minecraft.killed:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Killed"}, "json_string": "{\"text\":\"Snowball Killed\"}"}}, "d.elderGuardian": {"CriteriaName": "minecraft.killed_by:minecraft.elder_guardian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Elder Guardian"}, "json_string": "{\"text\":\"Killed by Elder Guardian\"}"}}, "b.enchantedBook": {"CriteriaName": "minecraft.broken:minecraft.enchanted_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Book Broken"}, "json_string": "{\"text\":\"Enchanted Book Broken\"}"}}, "c.acaciaSapling": {"CriteriaName": "minecraft.crafted:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Crafted"}, "json_string": "{\"text\":\"Acacia Sapling Crafted\"}"}}, "m.lightBlueBanner": {"CriteriaName": "minecraft.mined:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Mined"}, "json_string": "{\"text\":\"Light Blue Banner Mined\"}"}}, "p.whiteDye": {"CriteriaName": "minecraft.picked_up:minecraft.white_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Dye Picked Up"}, "json_string": "{\"text\":\"White Dye Picked Up\"}"}}, "g.playTime": {"CriteriaName": "minecraft.custom:minecraft.play_time", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Play Time"}, "json_string": "{\"text\":\"Play Time\"}"}}, "m.grayCandleCake": {"CriteriaName": "minecraft.mined:minecraft.gray_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Cake Mined"}, "json_string": "{\"text\":\"Gray Candle Cake Mined\"}"}}, "u.musicDiscMellohi": {"CriteriaName": "minecraft.used:minecraft.music_disc_mellohi", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mellohi Used"}, "json_string": "{\"text\":\"Music Disc Mellohi Used\"}"}}, "q.leatherLeggings": {"CriteriaName": "minecraft.dropped:minecraft.leather_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Leggings Dropped"}, "json_string": "{\"text\":\"Leather Leggings Dropped\"}"}}, "p.whiteCandle": {"CriteriaName": "minecraft.picked_up:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Picked Up"}, "json_string": "{\"text\":\"White Candle Picked Up\"}"}}, "cu.tradedWithVillager": {"CriteriaName": "minecraft.custom:minecraft.traded_with_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Traded With Villager"}, "json_string": "{\"text\":\"Traded With Villager\"}"}}, "b.cryingObsidian": {"CriteriaName": "minecraft.broken:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Broken"}, "json_string": "{\"text\":\"Crying Obsidian Broken\"}"}}, "q.limeShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Dropped"}, "json_string": "{\"text\":\"Lime Shulker Box Dropped\"}"}}, "q.musicDiscFar": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_far", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Far Dropped"}, "json_string": "{\"text\":\"Music Disc Far Dropped\"}"}}, "m.netheriteBlock": {"CriteriaName": "minecraft.mined:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Mined"}, "json_string": "{\"text\":\"Netherite Block Mined\"}"}}, "b.itemFrame": {"CriteriaName": "minecraft.broken:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Broken"}, "json_string": "{\"text\":\"Item Frame Broken\"}"}}, "q.redDye": {"CriteriaName": "minecraft.dropped:minecraft.red_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Dye Dropped"}, "json_string": "{\"text\":\"Red Dye Dropped\"}"}}, "c.smoothSandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Crafted\"}"}}, "b.brownBed": {"CriteriaName": "minecraft.broken:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Broken"}, "json_string": "{\"text\":\"Brown Bed Broken\"}"}}, "m.waxedOxidizedCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Mined"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Mined\"}"}}, "q.oakPlanks": {"CriteriaName": "minecraft.dropped:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Dropped"}, "json_string": "{\"text\":\"Oak Planks Dropped\"}"}}, "u.snowball": {"CriteriaName": "minecraft.used:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Used"}, "json_string": "{\"text\":\"Snowball Used\"}"}}, "q.bookshelf": {"CriteriaName": "minecraft.dropped:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Dropped"}, "json_string": "{\"text\":\"Bookshelf Dropped\"}"}}, "u.experienceBottle": {"CriteriaName": "minecraft.used:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Used"}, "json_string": "{\"text\":\"Experience Bottle Used\"}"}}, "cu.playTime": {"CriteriaName": "minecraft.custom:minecraft.play_time", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Play Time"}, "json_string": "{\"text\":\"Play Time\"}"}}, "q.mooshroomSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.mooshroom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Spawn Egg Dropped"}, "json_string": "{\"text\":\"Mooshroom Spawn Egg Dropped\"}"}}, "u.boneBlock": {"CriteriaName": "minecraft.used:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Used"}, "json_string": "{\"text\":\"Bone Block Used\"}"}}, "q.piglinBruteSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.piglin_brute_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Spawn Egg Dropped"}, "json_string": "{\"text\":\"Piglin Brute Spawn Egg Dropped\"}"}}, "b.cobblestoneWall": {"CriteriaName": "minecraft.broken:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Broken"}, "json_string": "{\"text\":\"Cobblestone Wall Broken\"}"}}, "c.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Crafted"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Crafted\"}"}}, "u.tintedGlass": {"CriteriaName": "minecraft.used:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Used"}, "json_string": "{\"text\":\"Tinted Glass Used\"}"}}, "u.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.used:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Used"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Used\"}"}}, "c.slimeBall": {"CriteriaName": "minecraft.crafted:minecraft.slime_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Ball Crafted"}, "json_string": "{\"text\":\"Slime Ball Crafted\"}"}}, "m.darkPrismarine": {"CriteriaName": "minecraft.mined:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Mined"}, "json_string": "{\"text\":\"Dark Prismarine Mined\"}"}}, "u.limeTerracotta": {"CriteriaName": "minecraft.used:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Used"}, "json_string": "{\"text\":\"Lime Terracotta Used\"}"}}, "p.oakWood": {"CriteriaName": "minecraft.picked_up:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Picked Up"}, "json_string": "{\"text\":\"Oak Wood Picked Up\"}"}}, "c.redConcrete": {"CriteriaName": "minecraft.crafted:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Crafted"}, "json_string": "{\"text\":\"Red Concrete Crafted\"}"}}, "c.spruceButton": {"CriteriaName": "minecraft.crafted:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Crafted"}, "json_string": "{\"text\":\"Spruce Button Crafted\"}"}}, "q.tubeCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Dropped"}, "json_string": "{\"text\":\"Tube Coral Block Dropped\"}"}}, "p.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Picked Up"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Picked Up\"}"}}, "q.totemOfUndying": {"CriteriaName": "minecraft.dropped:minecraft.totem_of_undying", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Totem Of Undying Dropped"}, "json_string": "{\"text\":\"Totem Of Undying Dropped\"}"}}, "k.dragonFireball": {"CriteriaName": "minecraft.killed:minecraft.dragon_fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Fireball Killed"}, "json_string": "{\"text\":\"Dragon Fireball Killed\"}"}}, "q.packedIce": {"CriteriaName": "minecraft.dropped:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Dropped"}, "json_string": "{\"text\":\"Packed Ice Dropped\"}"}}, "c.limeBanner": {"CriteriaName": "minecraft.crafted:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Crafted"}, "json_string": "{\"text\":\"Lime Banner Crafted\"}"}}, "c.blackstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Crafted"}, "json_string": "{\"text\":\"Blackstone Slab Crafted\"}"}}, "u.jungleWood": {"CriteriaName": "minecraft.used:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Used"}, "json_string": "{\"text\":\"Jungle Wood Used\"}"}}, "p.turtleSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.turtle_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Turtle Spawn Egg Picked Up\"}"}}, "q.netherBrick": {"CriteriaName": "minecraft.dropped:minecraft.nether_brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Dropped"}, "json_string": "{\"text\":\"Nether Brick Dropped\"}"}}, "k.guardian": {"CriteriaName": "minecraft.killed:minecraft.guardian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian"}, "json_string": "{\"text\":\"Guardian\"}"}}, "c.evokerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.evoker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Spawn Egg Crafted"}, "json_string": "{\"text\":\"Evoker Spawn Egg Crafted\"}"}}, "c.bigDripleaf": {"CriteriaName": "minecraft.crafted:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Crafted"}, "json_string": "{\"text\":\"Big Dripleaf Crafted\"}"}}, "q.zoglinSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.zoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Spawn Egg Dropped"}, "json_string": "{\"text\":\"Zoglin Spawn Egg Dropped\"}"}}, "p.prismarineSlab": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Picked Up"}, "json_string": "{\"text\":\"Prismarine Slab Picked Up\"}"}}, "p.oakFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Picked Up"}, "json_string": "{\"text\":\"Oak Fence Gate Picked Up\"}"}}, "leafDec.mangroveS": {"CriteriaName": "minecraft.mined:minecraft.mangrove_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.mangroveS"}, "json_string": "{\"text\":\"leafDec.mangroveS\"}"}}, "q.vine": {"CriteriaName": "minecraft.dropped:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Dropped"}, "json_string": "{\"text\":\"Vine Dropped\"}"}}, "m.seaPickle": {"CriteriaName": "minecraft.mined:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Mined"}, "json_string": "{\"text\":\"Sea Pickle Mined\"}"}}, "leafDec.mangroveL": {"CriteriaName": "minecraft.mined:minecraft.mangrove_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.mangroveL"}, "json_string": "{\"text\":\"leafDec.mangroveL\"}"}}, "u.rawGoldBlock": {"CriteriaName": "minecraft.used:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Used"}, "json_string": "{\"text\":\"Raw Gold Block Used\"}"}}, "u.salmonBucket": {"CriteriaName": "minecraft.used:minecraft.salmon_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Bucket Used"}, "json_string": "{\"text\":\"Salmon Bucket Used\"}"}}, "q.structureVoid": {"CriteriaName": "minecraft.dropped:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Dropped"}, "json_string": "{\"text\":\"Structure Void Dropped\"}"}}, "u.skeletonSkull": {"CriteriaName": "minecraft.used:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Used"}, "json_string": "{\"text\":\"Skeleton Skull Used\"}"}}, "p.map": {"CriteriaName": "minecraft.picked_up:minecraft.map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Map Picked Up"}, "json_string": "{\"text\":\"Map Picked Up\"}"}}, "p.rabbitFoot": {"CriteriaName": "minecraft.picked_up:minecraft.rabbit_foot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Foot Picked Up"}, "json_string": "{\"text\":\"Rabbit Foot Picked Up\"}"}}, "m.quartzBricks": {"CriteriaName": "minecraft.mined:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Mined"}, "json_string": "{\"text\":\"Quartz Bricks Mined\"}"}}, "c.cookedCod": {"CriteriaName": "minecraft.crafted:minecraft.cooked_cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Cod Crafted"}, "json_string": "{\"text\":\"Cooked Cod Crafted\"}"}}, "p.birchSign": {"CriteriaName": "minecraft.picked_up:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Picked Up"}, "json_string": "{\"text\":\"Birch Sign Picked Up\"}"}}, "k.squid": {"CriteriaName": "minecraft.killed:minecraft.squid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Killed"}, "json_string": "{\"text\":\"Squid Killed\"}"}}, "u.dragonHead": {"CriteriaName": "minecraft.used:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Used"}, "json_string": "{\"text\":\"Dragon Head Used\"}"}}, "q.quartzBricks": {"CriteriaName": "minecraft.dropped:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Dropped"}, "json_string": "{\"text\":\"Quartz Bricks Dropped\"}"}}, "m.strippedSpruceWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Mined"}, "json_string": "{\"text\":\"Stripped Spruce Wood Mined\"}"}}, "u.musicDiscWait": {"CriteriaName": "minecraft.used:minecraft.music_disc_wait", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Wait Used"}, "json_string": "{\"text\":\"Music Disc Wait Used\"}"}}, "b.ghastTear": {"CriteriaName": "minecraft.broken:minecraft.ghast_tear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Tear Broken"}, "json_string": "{\"text\":\"Ghast Tear Broken\"}"}}, "g.interactWithCartographyTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Cartography Table"}, "json_string": "{\"text\":\"Interact with Cartography Table\"}"}}, "p.redBanner": {"CriteriaName": "minecraft.picked_up:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Picked Up"}, "json_string": "{\"text\":\"Red Banner Picked Up\"}"}}, "q.bowl": {"CriteriaName": "minecraft.dropped:minecraft.bowl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bowl Dropped"}, "json_string": "{\"text\":\"Bowl Dropped\"}"}}, "m.magentaGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Mined\"}"}}, "p.glassPane": {"CriteriaName": "minecraft.picked_up:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Picked Up"}, "json_string": "{\"text\":\"Glass Pane Picked Up\"}"}}, "m.tintedGlass": {"CriteriaName": "minecraft.mined:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Mined"}, "json_string": "{\"text\":\"Tinted Glass Mined\"}"}}, "b.whiteTerracotta": {"CriteriaName": "minecraft.broken:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Broken"}, "json_string": "{\"text\":\"White Terracotta Broken\"}"}}, "u.purpleConcrete": {"CriteriaName": "minecraft.used:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Used"}, "json_string": "{\"text\":\"Purple Concrete Used\"}"}}, "u.woodenShovel": {"CriteriaName": "minecraft.used:minecraft.wooden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Shovel Used"}, "json_string": "{\"text\":\"Wooden Shovel Used\"}"}}, "u.paper": {"CriteriaName": "minecraft.used:minecraft.paper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Paper Used"}, "json_string": "{\"text\":\"Paper Used\"}"}}, "b.piglinBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.piglin_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Banner Pattern Broken"}, "json_string": "{\"text\":\"Piglin Banner Pattern Broken\"}"}}, "m.sandstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Mined"}, "json_string": "{\"text\":\"Sandstone Stairs Mined\"}"}}, "c.redStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Red Stained Glass Pane Crafted\"}"}}, "m.grayTerracotta": {"CriteriaName": "minecraft.mined:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Mined"}, "json_string": "{\"text\":\"Gray Terracotta Mined\"}"}}, "b.blastFurnace": {"CriteriaName": "minecraft.broken:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Broken"}, "json_string": "{\"text\":\"Blast Furnace Broken\"}"}}, "b.bookshelf": {"CriteriaName": "minecraft.broken:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Broken"}, "json_string": "{\"text\":\"Bookshelf Broken\"}"}}, "rc_hours": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hours"}, "json_string": "{\"text\":\"Hours\"}"}}, "k.zombieVillager": {"CriteriaName": "minecraft.killed:minecraft.zombie_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Killed"}, "json_string": "{\"text\":\"Zombie Villager Killed\"}"}}, "c.huskSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.husk_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Spawn Egg Crafted"}, "json_string": "{\"text\":\"Husk Spawn Egg Crafted\"}"}}, "u.netheriteAxe": {"CriteriaName": "minecraft.used:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Axe Used"}, "json_string": "{\"text\":\"Netherite Axe Used\"}"}}, "c.crackedDeepslateBricks": {"CriteriaName": "minecraft.crafted:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Crafted"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Crafted\"}"}}, "q.batSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.bat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Spawn Egg Dropped"}, "json_string": "{\"text\":\"Bat Spawn Egg Dropped\"}"}}, "u.floweringAzaleaLeaves": {"CriteriaName": "minecraft.used:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Used"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Used\"}"}}, "p.gunpowder": {"CriteriaName": "minecraft.picked_up:minecraft.gunpowder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gunpowder Picked Up"}, "json_string": "{\"text\":\"Gunpowder Picked Up\"}"}}, "u.blackConcrete": {"CriteriaName": "minecraft.used:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Used"}, "json_string": "{\"text\":\"Black Concrete Used\"}"}}, "b.zombifiedPiglinSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.zombified_piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Spawn Egg Broken"}, "json_string": "{\"text\":\"Zombified Piglin Spawn Egg Broken\"}"}}, "q.netheriteAxe": {"CriteriaName": "minecraft.dropped:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Axe Dropped"}, "json_string": "{\"text\":\"Netherite Axe Dropped\"}"}}, "b.strippedAcaciaWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Broken"}, "json_string": "{\"text\":\"Stripped Acacia Wood Broken\"}"}}, "c.birchSapling": {"CriteriaName": "minecraft.crafted:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Crafted"}, "json_string": "{\"text\":\"Birch Sapling Crafted\"}"}}, "u.ironBlock": {"CriteriaName": "minecraft.used:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Used"}, "json_string": "{\"text\":\"Iron Block Used\"}"}}, "c.grass": {"CriteriaName": "minecraft.crafted:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Crafted"}, "json_string": "{\"text\":\"Grass Crafted\"}"}}, "p.jungleSapling": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Picked Up"}, "json_string": "{\"text\":\"Jungle Sapling Picked Up\"}"}}, "p.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Picked Up\"}"}}, "q.redSand": {"CriteriaName": "minecraft.dropped:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Dropped"}, "json_string": "{\"text\":\"Red Sand Dropped\"}"}}, "p.stoneBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Stone Brick Stairs Picked Up\"}"}}, "u.crimsonNylium": {"CriteriaName": "minecraft.used:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Used"}, "json_string": "{\"text\":\"Crimson Nylium Used\"}"}}, "m.redSandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Mined"}, "json_string": "{\"text\":\"Red Sandstone Slab Mined\"}"}}, "u.magentaBed": {"CriteriaName": "minecraft.used:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Used"}, "json_string": "{\"text\":\"Magenta Bed Used\"}"}}, "p.diorite": {"CriteriaName": "minecraft.picked_up:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Picked Up"}, "json_string": "{\"text\":\"Diorite Picked Up\"}"}}, "q.musicDiscWard": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_ward", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Ward Dropped"}, "json_string": "{\"text\":\"Music Disc Ward Dropped\"}"}}, "m.infestedDeepslate": {"CriteriaName": "minecraft.mined:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Mined"}, "json_string": "{\"text\":\"Infested Deepslate Mined\"}"}}, "p.cookedSalmon": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Salmon Picked Up"}, "json_string": "{\"text\":\"Cooked Salmon Picked Up\"}"}}, "b.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Broken\"}"}}, "q.redGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Red Glazed Terracotta Dropped\"}"}}, "b.orangeTulip": {"CriteriaName": "minecraft.broken:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Broken"}, "json_string": "{\"text\":\"Orange Tulip Broken\"}"}}, "c.bowl": {"CriteriaName": "minecraft.crafted:minecraft.bowl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bowl Crafted"}, "json_string": "{\"text\":\"Bowl Crafted\"}"}}, "m.redSandstone": {"CriteriaName": "minecraft.mined:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Mined"}, "json_string": "{\"text\":\"Red Sandstone Mined\"}"}}, "b.goldenPickaxe": {"CriteriaName": "minecraft.broken:minecraft.golden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Pickaxe Broken"}, "json_string": "{\"text\":\"Golden Pickaxe Broken\"}"}}, "c.oxeyeDaisy": {"CriteriaName": "minecraft.crafted:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Crafted"}, "json_string": "{\"text\":\"Oxeye Daisy Crafted\"}"}}, "m.waxedCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Mined\"}"}}, "c.chiseledDeepslate": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Crafted"}, "json_string": "{\"text\":\"Chiseled Deepslate Crafted\"}"}}, "u.glowInkSac": {"CriteriaName": "minecraft.used:minecraft.glow_ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Ink Sac Used"}, "json_string": "{\"text\":\"Glow Ink Sac Used\"}"}}, "m.orangeStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Mined\"}"}}, "p.crimsonRoots": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Picked Up"}, "json_string": "{\"text\":\"Crimson Roots Picked Up\"}"}}, "p.deadTubeCoral": {"CriteriaName": "minecraft.picked_up:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Picked Up"}, "json_string": "{\"text\":\"Dead Tube Coral Picked Up\"}"}}, "p.spruceSign": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Picked Up"}, "json_string": "{\"text\":\"Spruce Sign Picked Up\"}"}}, "g.triggerTrappedChest": {"CriteriaName": "minecraft.custom:minecraft.trigger_trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trigger Trapped Chest"}, "json_string": "{\"text\":\"Trigger Trapped Chest\"}"}}, "q.brick": {"CriteriaName": "minecraft.dropped:minecraft.brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Dropped"}, "json_string": "{\"text\":\"Brick Dropped\"}"}}, "p.quartzStairs": {"CriteriaName": "minecraft.picked_up:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Picked Up"}, "json_string": "{\"text\":\"Quartz Stairs Picked Up\"}"}}, "q.darkOakSlab": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Dropped"}, "json_string": "{\"text\":\"Dark Oak Slab Dropped\"}"}}, "u.grayWool": {"CriteriaName": "minecraft.used:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Used"}, "json_string": "{\"text\":\"Gray Wool Used\"}"}}, "u.darkOakSlab": {"CriteriaName": "minecraft.used:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Used"}, "json_string": "{\"text\":\"Dark Oak Slab Used\"}"}}, "d.axolotl": {"CriteriaName": "minecraft.killed_by:minecraft.axolotl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Axolotl"}, "json_string": "{\"text\":\"Killed by Axolotl\"}"}}, "q.gunpowder": {"CriteriaName": "minecraft.dropped:minecraft.gunpowder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gunpowder Dropped"}, "json_string": "{\"text\":\"Gunpowder Dropped\"}"}}, "q.redSandstoneWall": {"CriteriaName": "minecraft.dropped:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Dropped"}, "json_string": "{\"text\":\"Red Sandstone Wall Dropped\"}"}}, "u.limeStainedGlass": {"CriteriaName": "minecraft.used:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Used"}, "json_string": "{\"text\":\"Lime Stained Glass Used\"}"}}, "p.polishedAndesiteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Picked Up"}, "json_string": "{\"text\":\"Polished Andesite Slab Picked Up\"}"}}, "k.parrot": {"CriteriaName": "minecraft.killed:minecraft.parrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Killed"}, "json_string": "{\"text\":\"Parrot Killed\"}"}}, "c.whiteBed": {"CriteriaName": "minecraft.crafted:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Crafted"}, "json_string": "{\"text\":\"White Bed Crafted\"}"}}, "d.piglin": {"CriteriaName": "minecraft.killed_by:minecraft.piglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Piglin"}, "json_string": "{\"text\":\"Killed by Piglin\"}"}}, "g.raidWin": {"CriteriaName": "minecraft.custom:minecraft.raid_win", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raid Win"}, "json_string": "{\"text\":\"Raid Win\"}"}}, "p.strippedBirchWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Birch Wood Picked Up\"}"}}, "c.copperBlock": {"CriteriaName": "minecraft.crafted:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Crafted"}, "json_string": "{\"text\":\"Copper Block Crafted\"}"}}, "p.prismarineShard": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Shard Picked Up"}, "json_string": "{\"text\":\"Prismarine Shard Picked Up\"}"}}, "c.nautilusShell": {"CriteriaName": "minecraft.crafted:minecraft.nautilus_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nautilus Shell Crafted"}, "json_string": "{\"text\":\"Nautilus Shell Crafted\"}"}}, "p.blueGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Picked Up\"}"}}, "p.mossyStoneBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Picked Up\"}"}}, "q.deepslateTiles": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Dropped"}, "json_string": "{\"text\":\"Deepslate Tiles Dropped\"}"}}, "u.ironOre": {"CriteriaName": "minecraft.used:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Used"}, "json_string": "{\"text\":\"Iron Ore Used\"}"}}, "m.crimsonHyphae": {"CriteriaName": "minecraft.mined:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Mined"}, "json_string": "{\"text\":\"Crimson Hyphae Mined\"}"}}, "b.cookedCod": {"CriteriaName": "minecraft.broken:minecraft.cooked_cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Cod Broken"}, "json_string": "{\"text\":\"Cooked Cod Broken\"}"}}, "u.fireworkRocket": {"CriteriaName": "minecraft.used:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Used"}, "json_string": "{\"text\":\"Firework Rocket Used\"}"}}, "k.drowned": {"CriteriaName": "minecraft.killed:minecraft.drowned", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Killed"}, "json_string": "{\"text\":\"Drowned Killed\"}"}}, "q.strippedOakWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Dropped"}, "json_string": "{\"text\":\"Stripped Oak Wood Dropped\"}"}}, "u.waxedCopperBlock": {"CriteriaName": "minecraft.used:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Used"}, "json_string": "{\"text\":\"Waxed Copper Block Used\"}"}}, "p.mossyCobblestoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Picked Up"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Picked Up\"}"}}, "b.parrotSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.parrot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Spawn Egg Broken"}, "json_string": "{\"text\":\"Parrot Spawn Egg Broken\"}"}}, "b.polishedBlackstoneButton": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Broken"}, "json_string": "{\"text\":\"Polished Blackstone Button Broken\"}"}}, "q.limeBanner": {"CriteriaName": "minecraft.dropped:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Dropped"}, "json_string": "{\"text\":\"Lime Banner Dropped\"}"}}, "c.enchantedGoldenApple": {"CriteriaName": "minecraft.crafted:minecraft.enchanted_golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Golden Apple Crafted"}, "json_string": "{\"text\":\"Enchanted Golden Apple Crafted\"}"}}, "p.leatherChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.leather_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Chestplate Picked Up"}, "json_string": "{\"text\":\"Leather Chestplate Picked Up\"}"}}, "k.witherSkull": {"CriteriaName": "minecraft.killed:minecraft.wither_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skull Killed"}, "json_string": "{\"text\":\"Wither Skull Killed\"}"}}, "c.pinkDye": {"CriteriaName": "minecraft.crafted:minecraft.pink_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Dye Crafted"}, "json_string": "{\"text\":\"Pink Dye Crafted\"}"}}, "g.deathCount": {"CriteriaName": "deathCount", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deaths"}, "json_string": "{\"text\":\"Deaths\"}"}}, "b.birchSign": {"CriteriaName": "minecraft.broken:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Broken"}, "json_string": "{\"text\":\"Birch Sign Broken\"}"}}, "d.sheep": {"CriteriaName": "minecraft.killed_by:minecraft.sheep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Sheep"}, "json_string": "{\"text\":\"Killed by Sheep\"}"}}, "b.musicDiscStrad": {"CriteriaName": "minecraft.broken:minecraft.music_disc_strad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Strad Broken"}, "json_string": "{\"text\":\"Music Disc Strad Broken\"}"}}, "q.armorStand": {"CriteriaName": "minecraft.dropped:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Dropped"}, "json_string": "{\"text\":\"Armor Stand Dropped\"}"}}, "m.dirtPath": {"CriteriaName": "minecraft.mined:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Mined"}, "json_string": "{\"text\":\"Dirt Path Mined\"}"}}, "q.bone": {"CriteriaName": "minecraft.dropped:minecraft.bone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Dropped"}, "json_string": "{\"text\":\"Bone Dropped\"}"}}, "k.pufferfish": {"CriteriaName": "minecraft.killed:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Killed"}, "json_string": "{\"text\":\"Pufferfish Killed\"}"}}, "u.cyanConcrete": {"CriteriaName": "minecraft.used:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Used"}, "json_string": "{\"text\":\"Cyan Concrete Used\"}"}}, "b.warpedStem": {"CriteriaName": "minecraft.broken:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Broken"}, "json_string": "{\"text\":\"Warped Stem Broken\"}"}}, "m.purpleConcrete": {"CriteriaName": "minecraft.mined:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Mined"}, "json_string": "{\"text\":\"Purple Concrete Mined\"}"}}, "u.musicDiscWard": {"CriteriaName": "minecraft.used:minecraft.music_disc_ward", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Ward Used"}, "json_string": "{\"text\":\"Music Disc Ward Used\"}"}}, "c.spruceFence": {"CriteriaName": "minecraft.crafted:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Crafted"}, "json_string": "{\"text\":\"Spruce Fence Crafted\"}"}}, "p.fletchingTable": {"CriteriaName": "minecraft.picked_up:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Picked Up"}, "json_string": "{\"text\":\"Fletching Table Picked Up\"}"}}, "u.hayBlock": {"CriteriaName": "minecraft.used:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Used"}, "json_string": "{\"text\":\"Hay Block Used\"}"}}, "q.sprucePlanks": {"CriteriaName": "minecraft.dropped:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Dropped"}, "json_string": "{\"text\":\"Spruce Planks Dropped\"}"}}, "q.book": {"CriteriaName": "minecraft.dropped:minecraft.book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Book Dropped"}, "json_string": "{\"text\":\"Book Dropped\"}"}}, "k.skeletonHorse": {"CriteriaName": "minecraft.killed:minecraft.skeleton_horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Killed"}, "json_string": "{\"text\":\"Skeleton Horse Killed\"}"}}, "u.infestedDeepslate": {"CriteriaName": "minecraft.used:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Used"}, "json_string": "{\"text\":\"Infested Deepslate Used\"}"}}, "q.goldenAxe": {"CriteriaName": "minecraft.dropped:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Axe Dropped"}, "json_string": "{\"text\":\"Golden Axe Dropped\"}"}}, "m.blackGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Black Glazed Terracotta Mined\"}"}}, "p.beehive": {"CriteriaName": "minecraft.picked_up:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Picked Up"}, "json_string": "{\"text\":\"Beehive Picked Up\"}"}}, "p.grayConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Gray Concrete Powder Picked Up\"}"}}, "b.crackedStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Broken"}, "json_string": "{\"text\":\"Cracked Stone Bricks Broken\"}"}}, "b.brownGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Broken\"}"}}, "q.darkPrismarineSlab": {"CriteriaName": "minecraft.dropped:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Dropped"}, "json_string": "{\"text\":\"Dark Prismarine Slab Dropped\"}"}}, "c.stoneBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Crafted"}, "json_string": "{\"text\":\"Stone Brick Stairs Crafted\"}"}}, "m.emeraldOre": {"CriteriaName": "minecraft.mined:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Mined"}, "json_string": "{\"text\":\"Emerald Ore Mined\"}"}}, "b.redNetherBricks": {"CriteriaName": "minecraft.broken:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Broken"}, "json_string": "{\"text\":\"Red Nether Bricks Broken\"}"}}, "q.bakedPotato": {"CriteriaName": "minecraft.dropped:minecraft.baked_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Baked Potato Dropped"}, "json_string": "{\"text\":\"Baked Potato Dropped\"}"}}, "p.purpleGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Picked Up\"}"}}, "u.bubbleCoralBlock": {"CriteriaName": "minecraft.used:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Used"}, "json_string": "{\"text\":\"Bubble Coral Block Used\"}"}}, "p.purpleDye": {"CriteriaName": "minecraft.picked_up:minecraft.purple_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Dye Picked Up"}, "json_string": "{\"text\":\"Purple Dye Picked Up\"}"}}, "c.vine": {"CriteriaName": "minecraft.crafted:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Crafted"}, "json_string": "{\"text\":\"Vine Crafted\"}"}}, "d.witherSkeleton": {"CriteriaName": "minecraft.killed_by:minecraft.wither_skeleton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Wither Skeleton"}, "json_string": "{\"text\":\"Killed by Wither Skeleton\"}"}}, "m.ironDoor": {"CriteriaName": "minecraft.mined:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Mined"}, "json_string": "{\"text\":\"Iron Door Mined\"}"}}, "m.lapisBlock": {"CriteriaName": "minecraft.mined:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Mined"}, "json_string": "{\"text\":\"Lapis Block Mined\"}"}}, "p.smithingTable": {"CriteriaName": "minecraft.picked_up:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Picked Up"}, "json_string": "{\"text\":\"Smithing Table Picked Up\"}"}}, "q.pinkBanner": {"CriteriaName": "minecraft.dropped:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Dropped"}, "json_string": "{\"text\":\"Pink Banner Dropped\"}"}}, "c.whiteShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Crafted"}, "json_string": "{\"text\":\"White Shulker Box Crafted\"}"}}, "q.netheritePickaxe": {"CriteriaName": "minecraft.dropped:minecraft.netherite_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Pickaxe Dropped"}, "json_string": "{\"text\":\"Netherite Pickaxe Dropped\"}"}}, "c.brainCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Crafted"}, "json_string": "{\"text\":\"Brain Coral Block Crafted\"}"}}, "c.musicDiscStrad": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_strad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Strad Crafted"}, "json_string": "{\"text\":\"Music Disc Strad Crafted\"}"}}, "p.bell": {"CriteriaName": "minecraft.picked_up:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Picked Up"}, "json_string": "{\"text\":\"Bell Picked Up\"}"}}, "p.packedIce": {"CriteriaName": "minecraft.picked_up:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Picked Up"}, "json_string": "{\"text\":\"Packed Ice Picked Up\"}"}}, "q.cake": {"CriteriaName": "minecraft.dropped:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Dropped"}, "json_string": "{\"text\":\"Cake Dropped\"}"}}, "p.limeBanner": {"CriteriaName": "minecraft.picked_up:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Picked Up"}, "json_string": "{\"text\":\"Lime Banner Picked Up\"}"}}, "m.deepslateBrickWall": {"CriteriaName": "minecraft.mined:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Mined"}, "json_string": "{\"text\":\"Deepslate Brick Wall Mined\"}"}}, "u.crimsonStairs": {"CriteriaName": "minecraft.used:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Used"}, "json_string": "{\"text\":\"Crimson Stairs Used\"}"}}, "m.cyanGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Mined\"}"}}, "q.orangeWool": {"CriteriaName": "minecraft.dropped:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Dropped"}, "json_string": "{\"text\":\"Orange Wool Dropped\"}"}}, "g.interactWithSmithingTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Smithing Table"}, "json_string": "{\"text\":\"Interact with Smithing Table\"}"}}, "c.book": {"CriteriaName": "minecraft.crafted:minecraft.book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Book Crafted"}, "json_string": "{\"text\":\"Book Crafted\"}"}}, "u.structureVoid": {"CriteriaName": "minecraft.used:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Used"}, "json_string": "{\"text\":\"Structure Void Used\"}"}}, "q.yellowConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Dropped"}, "json_string": "{\"text\":\"Yellow Concrete Powder Dropped\"}"}}, "p.mushroomStew": {"CriteriaName": "minecraft.picked_up:minecraft.mushroom_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stew Picked Up"}, "json_string": "{\"text\":\"Mushroom Stew Picked Up\"}"}}, "q.beetrootSoup": {"CriteriaName": "minecraft.dropped:minecraft.beetroot_soup", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Soup Dropped"}, "json_string": "{\"text\":\"Beetroot Soup Dropped\"}"}}, "q.glisteringMelonSlice": {"CriteriaName": "minecraft.dropped:minecraft.glistering_melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glistering Melon Slice Dropped"}, "json_string": "{\"text\":\"Glistering Melon Slice Dropped\"}"}}, "q.greenWool": {"CriteriaName": "minecraft.dropped:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Dropped"}, "json_string": "{\"text\":\"Green Wool Dropped\"}"}}, "p.cobbledDeepslateWall": {"CriteriaName": "minecraft.picked_up:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Picked Up"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Picked Up\"}"}}, "b.beetroot": {"CriteriaName": "minecraft.broken:minecraft.beetroot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Broken"}, "json_string": "{\"text\":\"Beetroot Broken\"}"}}, "q.honeyBlock": {"CriteriaName": "minecraft.dropped:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Dropped"}, "json_string": "{\"text\":\"Honey Block Dropped\"}"}}, "b.mojangBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.mojang_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mojang Banner Pattern Broken"}, "json_string": "{\"text\":\"Mojang Banner Pattern Broken\"}"}}, "b.warpedFungus": {"CriteriaName": "minecraft.broken:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Broken"}, "json_string": "{\"text\":\"Warped Fungus Broken\"}"}}, "c.birchFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Crafted"}, "json_string": "{\"text\":\"Birch Fence Gate Crafted\"}"}}, "c.fireCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Crafted"}, "json_string": "{\"text\":\"Fire Coral Block Crafted\"}"}}, "q.strippedSpruceLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Dropped"}, "json_string": "{\"text\":\"Stripped Spruce Log Dropped\"}"}}, "u.brownStainedGlass": {"CriteriaName": "minecraft.used:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Used"}, "json_string": "{\"text\":\"Brown Stained Glass Used\"}"}}, "b.oakPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Broken"}, "json_string": "{\"text\":\"Oak Pressure Plate Broken\"}"}}, "c.pigSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.pig_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Spawn Egg Crafted"}, "json_string": "{\"text\":\"Pig Spawn Egg Crafted\"}"}}, "c.birchPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Crafted"}, "json_string": "{\"text\":\"Birch Pressure Plate Crafted\"}"}}, "u.grayTerracotta": {"CriteriaName": "minecraft.used:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Used"}, "json_string": "{\"text\":\"Gray Terracotta Used\"}"}}, "c.poisonousPotato": {"CriteriaName": "minecraft.crafted:minecraft.poisonous_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poisonous Potato Crafted"}, "json_string": "{\"text\":\"Poisonous Potato Crafted\"}"}}, "b.deadBrainCoral": {"CriteriaName": "minecraft.broken:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Broken"}, "json_string": "{\"text\":\"Dead Brain Coral Broken\"}"}}, "p.smoker": {"CriteriaName": "minecraft.picked_up:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Picked Up"}, "json_string": "{\"text\":\"Smoker Picked Up\"}"}}, "m.deepslate": {"CriteriaName": "minecraft.mined:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Mined"}, "json_string": "{\"text\":\"Deepslate Mined\"}"}}, "m.exposedCutCopper": {"CriteriaName": "minecraft.mined:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Mined"}, "json_string": "{\"text\":\"Exposed Cut Copper Mined\"}"}}, "c.redTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Crafted"}, "json_string": "{\"text\":\"Red Terracotta Crafted\"}"}}, "k.fallingBlock": {"CriteriaName": "minecraft.killed:minecraft.falling_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Falling Block Killed"}, "json_string": "{\"text\":\"Falling Block Killed\"}"}}, "u.limeWool": {"CriteriaName": "minecraft.used:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Used"}, "json_string": "{\"text\":\"Lime Wool Used\"}"}}, "g.air": {"CriteriaName": "air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air"}, "json_string": "{\"text\":\"Air\"}"}}, "b.crimsonSign": {"CriteriaName": "minecraft.broken:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Broken"}, "json_string": "{\"text\":\"Crimson Sign Broken\"}"}}, "m.pottedCactus": {"CriteriaName": "minecraft.mined:minecraft.potted_cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Cactus Mined"}, "json_string": "{\"text\":\"Potted Cactus Mined\"}"}}, "b.codSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.cod_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Spawn Egg Broken"}, "json_string": "{\"text\":\"Cod Spawn Egg Broken\"}"}}, "c.ghastTear": {"CriteriaName": "minecraft.crafted:minecraft.ghast_tear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Tear Crafted"}, "json_string": "{\"text\":\"Ghast Tear Crafted\"}"}}, "b.pandaSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.panda_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Spawn Egg Broken"}, "json_string": "{\"text\":\"Panda Spawn Egg Broken\"}"}}, "c.bucket": {"CriteriaName": "minecraft.crafted:minecraft.bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bucket Crafted"}, "json_string": "{\"text\":\"Bucket Crafted\"}"}}, "b.darkOakStairs": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Broken"}, "json_string": "{\"text\":\"Dark Oak Stairs Broken\"}"}}, "u.ladder": {"CriteriaName": "minecraft.used:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Used"}, "json_string": "{\"text\":\"Ladder Used\"}"}}, "c.cobweb": {"CriteriaName": "minecraft.crafted:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Crafted"}, "json_string": "{\"text\":\"Cobweb Crafted\"}"}}, "q.rawGoldBlock": {"CriteriaName": "minecraft.dropped:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Dropped"}, "json_string": "{\"text\":\"Raw Gold Block Dropped\"}"}}, "c.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Crafted\"}"}}, "p.crimsonPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Picked Up"}, "json_string": "{\"text\":\"Crimson Planks Picked Up\"}"}}, "c.glowstone": {"CriteriaName": "minecraft.crafted:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Crafted"}, "json_string": "{\"text\":\"Glowstone Crafted\"}"}}, "m.limeCandleCake": {"CriteriaName": "minecraft.mined:minecraft.lime_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Cake Mined"}, "json_string": "{\"text\":\"Lime Candle Cake Mined\"}"}}, "q.seagrass": {"CriteriaName": "minecraft.dropped:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Dropped"}, "json_string": "{\"text\":\"Seagrass Dropped\"}"}}, "q.diamondShovel": {"CriteriaName": "minecraft.dropped:minecraft.diamond_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Shovel Dropped"}, "json_string": "{\"text\":\"Diamond Shovel Dropped\"}"}}, "b.slimeBall": {"CriteriaName": "minecraft.broken:minecraft.slime_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Ball Broken"}, "json_string": "{\"text\":\"Slime Ball Broken\"}"}}, "m.strippedAcaciaWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Mined"}, "json_string": "{\"text\":\"Stripped Acacia Wood Mined\"}"}}, "c.bone": {"CriteriaName": "minecraft.crafted:minecraft.bone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Crafted"}, "json_string": "{\"text\":\"Bone Crafted\"}"}}, "m.brownWallBanner": {"CriteriaName": "minecraft.mined:minecraft.brown_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wall Banner Mined"}, "json_string": "{\"text\":\"Brown Wall Banner Mined\"}"}}, "m.chiseledSandstone": {"CriteriaName": "minecraft.mined:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Mined"}, "json_string": "{\"text\":\"Chiseled Sandstone Mined\"}"}}, "p.warpedNylium": {"CriteriaName": "minecraft.picked_up:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Picked Up"}, "json_string": "{\"text\":\"Warped Nylium Picked Up\"}"}}, "u.blackConcretePowder": {"CriteriaName": "minecraft.used:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Used"}, "json_string": "{\"text\":\"Black Concrete Powder Used\"}"}}, "m.grayBed": {"CriteriaName": "minecraft.mined:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Mined"}, "json_string": "{\"text\":\"Gray Bed Mined\"}"}}, "c.spruceSign": {"CriteriaName": "minecraft.crafted:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Crafted"}, "json_string": "{\"text\":\"Spruce Sign Crafted\"}"}}, "duraPing.armor": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "duraPing.armor"}, "json_string": "{\"text\":\"duraPing.armor\"}"}}, "c.smoothQuartzStairs": {"CriteriaName": "minecraft.crafted:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Crafted"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Crafted\"}"}}, "u.whiteGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Used"}, "json_string": "{\"text\":\"White Glazed Terracotta Used\"}"}}, "d.cat": {"CriteriaName": "minecraft.killed_by:minecraft.cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Cat"}, "json_string": "{\"text\":\"Killed by Cat\"}"}}, "p.purpleStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Picked Up"}, "json_string": "{\"text\":\"Purple Stained Glass Picked Up\"}"}}, "c.acaciaButton": {"CriteriaName": "minecraft.crafted:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Crafted"}, "json_string": "{\"text\":\"Acacia Button Crafted\"}"}}, "b.deadHornCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Broken"}, "json_string": "{\"text\":\"Dead Horn Coral Block Broken\"}"}}, "g.damageDealtResisted": {"CriteriaName": "minecraft.custom:minecraft.damage_dealt_resisted", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Dealt Resisted"}, "json_string": "{\"text\":\"Damage Dealt Resisted\"}"}}, "p.mossyStoneBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Picked Up"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Picked Up\"}"}}, "u.polishedDioriteStairs": {"CriteriaName": "minecraft.used:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Used"}, "json_string": "{\"text\":\"Polished Diorite Stairs Used\"}"}}, "b.bell": {"CriteriaName": "minecraft.broken:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Broken"}, "json_string": "{\"text\":\"Bell Broken\"}"}}, "c.brownBed": {"CriteriaName": "minecraft.crafted:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Crafted"}, "json_string": "{\"text\":\"Brown Bed Crafted\"}"}}, "m.crackedDeepslateBricks": {"CriteriaName": "minecraft.mined:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Mined"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Mined\"}"}}, "m.jungleTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Mined"}, "json_string": "{\"text\":\"Jungle Trapdoor Mined\"}"}}, "c.ice": {"CriteriaName": "minecraft.crafted:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Crafted"}, "json_string": "{\"text\":\"Ice Crafted\"}"}}, "q.goldenChestplate": {"CriteriaName": "minecraft.dropped:minecraft.golden_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Chestplate Dropped"}, "json_string": "{\"text\":\"Golden Chestplate Dropped\"}"}}, "p.cobblestone": {"CriteriaName": "minecraft.picked_up:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Picked Up"}, "json_string": "{\"text\":\"Cobblestone Picked Up\"}"}}, "c.crimsonSlab": {"CriteriaName": "minecraft.crafted:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Crafted"}, "json_string": "{\"text\":\"Crimson Slab Crafted\"}"}}, "b.axolotlSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.axolotl_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Spawn Egg Broken"}, "json_string": "{\"text\":\"Axolotl Spawn Egg Broken\"}"}}, "p.pointedDripstone": {"CriteriaName": "minecraft.picked_up:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Picked Up"}, "json_string": "{\"text\":\"Pointed Dripstone Picked Up\"}"}}, "m.graniteStairs": {"CriteriaName": "minecraft.mined:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Mined"}, "json_string": "{\"text\":\"Granite Stairs Mined\"}"}}, "c.apple": {"CriteriaName": "minecraft.crafted:minecraft.apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Apple Crafted"}, "json_string": "{\"text\":\"Apple Crafted\"}"}}, "u.smoothSandstone": {"CriteriaName": "minecraft.used:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Used"}, "json_string": "{\"text\":\"Smooth Sandstone Used\"}"}}, "m.infestedCobblestone": {"CriteriaName": "minecraft.mined:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Mined"}, "json_string": "{\"text\":\"Infested Cobblestone Mined\"}"}}, "p.paper": {"CriteriaName": "minecraft.picked_up:minecraft.paper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Paper Picked Up"}, "json_string": "{\"text\":\"Paper Picked Up\"}"}}, "q.dragonBreath": {"CriteriaName": "minecraft.dropped:minecraft.dragon_breath", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Breath Dropped"}, "json_string": "{\"text\":\"Dragon Breath Dropped\"}"}}, "c.lantern": {"CriteriaName": "minecraft.crafted:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Crafted"}, "json_string": "{\"text\":\"Lantern Crafted\"}"}}, "c.grayDye": {"CriteriaName": "minecraft.crafted:minecraft.gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Dye Crafted"}, "json_string": "{\"text\":\"Gray Dye Crafted\"}"}}, "u.cyanGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Used"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Used\"}"}}, "c.smoker": {"CriteriaName": "minecraft.crafted:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Crafted"}, "json_string": "{\"text\":\"Smoker Crafted\"}"}}, "q.skeletonHorseSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.skeleton_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Spawn Egg Dropped"}, "json_string": "{\"text\":\"Skeleton Horse Spawn Egg Dropped\"}"}}, "m.rawIronBlock": {"CriteriaName": "minecraft.mined:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Mined"}, "json_string": "{\"text\":\"Raw Iron Block Mined\"}"}}, "u.trident": {"CriteriaName": "minecraft.used:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Used"}, "json_string": "{\"text\":\"Trident Used\"}"}}, "p.beef": {"CriteriaName": "minecraft.picked_up:minecraft.beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beef Picked Up"}, "json_string": "{\"text\":\"Beef Picked Up\"}"}}, "c.cobblestoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Crafted"}, "json_string": "{\"text\":\"Cobblestone Stairs Crafted\"}"}}, "b.azureBluet": {"CriteriaName": "minecraft.broken:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Broken"}, "json_string": "{\"text\":\"Azure Bluet Broken\"}"}}, "c.pinkConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Crafted"}, "json_string": "{\"text\":\"Pink Concrete Powder Crafted\"}"}}, "u.witherSkeletonSkull": {"CriteriaName": "minecraft.used:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Used"}, "json_string": "{\"text\":\"Wither Skeleton Skull Used\"}"}}, "m.shroomlight": {"CriteriaName": "minecraft.mined:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Mined"}, "json_string": "{\"text\":\"Shroomlight Mined\"}"}}, "q.smoothStoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Dropped"}, "json_string": "{\"text\":\"Smooth Stone Slab Dropped\"}"}}, "c.cake": {"CriteriaName": "minecraft.crafted:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Crafted"}, "json_string": "{\"text\":\"Cake Crafted\"}"}}, "d.fishingBobber": {"CriteriaName": "minecraft.killed_by:minecraft.fishing_bobber", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Fishing Bobber"}, "json_string": "{\"text\":\"Killed by Fishing Bobber\"}"}}, "q.deadTubeCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Dropped"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Dropped\"}"}}, "b.cookedMutton": {"CriteriaName": "minecraft.broken:minecraft.cooked_mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Mutton Broken"}, "json_string": "{\"text\":\"Cooked Mutton Broken\"}"}}, "c.purpleConcrete": {"CriteriaName": "minecraft.crafted:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Crafted"}, "json_string": "{\"text\":\"Purple Concrete Crafted\"}"}}, "b.evokerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.evoker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Spawn Egg Broken"}, "json_string": "{\"text\":\"Evoker Spawn Egg Broken\"}"}}, "c.deadHornCoral": {"CriteriaName": "minecraft.crafted:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Crafted"}, "json_string": "{\"text\":\"Dead Horn Coral Crafted\"}"}}, "c.stoneBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Crafted"}, "json_string": "{\"text\":\"Stone Brick Slab Crafted\"}"}}, "d.skeleton": {"CriteriaName": "minecraft.killed_by:minecraft.skeleton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Skeleton"}, "json_string": "{\"text\":\"Killed by Skeleton\"}"}}, "b.cobbledDeepslate": {"CriteriaName": "minecraft.broken:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Broken"}, "json_string": "{\"text\":\"Cobbled Deepslate Broken\"}"}}, "b.exposedCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Broken\"}"}}, "b.goldenApple": {"CriteriaName": "minecraft.broken:minecraft.golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Apple Broken"}, "json_string": "{\"text\":\"Golden Apple Broken\"}"}}, "u.lead": {"CriteriaName": "minecraft.used:minecraft.lead", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lead Used"}, "json_string": "{\"text\":\"Lead Used\"}"}}, "p.zombieHorseSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.zombie_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Zombie Horse Spawn Egg Picked Up\"}"}}, "q.blueStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Dropped"}, "json_string": "{\"text\":\"Blue Stained Glass Dropped\"}"}}, "q.deepslateBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Dropped"}, "json_string": "{\"text\":\"Deepslate Brick Wall Dropped\"}"}}, "c.glassBottle": {"CriteriaName": "minecraft.crafted:minecraft.glass_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Bottle Crafted"}, "json_string": "{\"text\":\"Glass Bottle Crafted\"}"}}, "b.deepslateTileStairs": {"CriteriaName": "minecraft.broken:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Broken"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Broken\"}"}}, "u.yellowBanner": {"CriteriaName": "minecraft.used:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Used"}, "json_string": "{\"text\":\"Yellow Banner Used\"}"}}, "p.diamondLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Leggings Picked Up"}, "json_string": "{\"text\":\"Diamond Leggings Picked Up\"}"}}, "b.largeFern": {"CriteriaName": "minecraft.broken:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Broken"}, "json_string": "{\"text\":\"Large Fern Broken\"}"}}, "u.cutRedSandstone": {"CriteriaName": "minecraft.used:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Used"}, "json_string": "{\"text\":\"Cut Red Sandstone Used\"}"}}, "c.copperOre": {"CriteriaName": "minecraft.crafted:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Crafted"}, "json_string": "{\"text\":\"Copper Ore Crafted\"}"}}, "u.polarBearSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.polar_bear_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Spawn Egg Used"}, "json_string": "{\"text\":\"Polar Bear Spawn Egg Used\"}"}}, "q.graniteWall": {"CriteriaName": "minecraft.dropped:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Dropped"}, "json_string": "{\"text\":\"Granite Wall Dropped\"}"}}, "d.armorStand": {"CriteriaName": "minecraft.killed_by:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Armor Stand"}, "json_string": "{\"text\":\"Killed by Armor Stand\"}"}}, "m.deadFireCoral": {"CriteriaName": "minecraft.mined:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Mined"}, "json_string": "{\"text\":\"Dead Fire Coral Mined\"}"}}, "m.observer": {"CriteriaName": "minecraft.mined:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Mined"}, "json_string": "{\"text\":\"Observer Mined\"}"}}, "m.lightBlueWool": {"CriteriaName": "minecraft.mined:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Mined"}, "json_string": "{\"text\":\"Light Blue Wool Mined\"}"}}, "u.potato": {"CriteriaName": "minecraft.used:minecraft.potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potato Used"}, "json_string": "{\"text\":\"Potato Used\"}"}}, "q.magentaGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Dropped\"}"}}, "m.mossyCobblestone": {"CriteriaName": "minecraft.mined:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Mined"}, "json_string": "{\"text\":\"Mossy Cobblestone Mined\"}"}}, "c.cutSandstone": {"CriteriaName": "minecraft.crafted:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Crafted"}, "json_string": "{\"text\":\"Cut Sandstone Crafted\"}"}}, "c.largeFern": {"CriteriaName": "minecraft.crafted:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Crafted"}, "json_string": "{\"text\":\"Large Fern Crafted\"}"}}, "b.birchStairs": {"CriteriaName": "minecraft.broken:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Broken"}, "json_string": "{\"text\":\"Birch Stairs Broken\"}"}}, "p.smallDripleaf": {"CriteriaName": "minecraft.picked_up:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Picked Up"}, "json_string": "{\"text\":\"Small Dripleaf Picked Up\"}"}}, "c.wetSponge": {"CriteriaName": "minecraft.crafted:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Crafted"}, "json_string": "{\"text\":\"Wet Sponge Crafted\"}"}}, "cu.killedByLightPurpleTeam": {"CriteriaName": "killedByTeam.light_purple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Light Purple Team"}, "json_string": "{\"text\":\"Killed by Light Purple Team\"}"}}, "c.brickStairs": {"CriteriaName": "minecraft.crafted:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Crafted"}, "json_string": "{\"text\":\"Brick Stairs Crafted\"}"}}, "c.goldenHelmet": {"CriteriaName": "minecraft.crafted:minecraft.golden_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Helmet Crafted"}, "json_string": "{\"text\":\"Golden Helmet Crafted\"}"}}, "q.waxedExposedCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Dropped"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Dropped\"}"}}, "u.netherGoldOre": {"CriteriaName": "minecraft.used:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Used"}, "json_string": "{\"text\":\"Nether Gold Ore Used\"}"}}, "q.witherSkeletonSkull": {"CriteriaName": "minecraft.dropped:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Dropped"}, "json_string": "{\"text\":\"Wither Skeleton Skull Dropped\"}"}}, "p.quartzSlab": {"CriteriaName": "minecraft.picked_up:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Picked Up"}, "json_string": "{\"text\":\"Quartz Slab Picked Up\"}"}}, "m.jigsaw": {"CriteriaName": "minecraft.mined:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Mined"}, "json_string": "{\"text\":\"Jigsaw Mined\"}"}}, "c.quartzPillar": {"CriteriaName": "minecraft.crafted:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Crafted"}, "json_string": "{\"text\":\"Quartz Pillar Crafted\"}"}}, "m.andesiteStairs": {"CriteriaName": "minecraft.mined:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Mined"}, "json_string": "{\"text\":\"Andesite Stairs Mined\"}"}}, "p.villagerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Villager Spawn Egg Picked Up\"}"}}, "c.jungleFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Crafted"}, "json_string": "{\"text\":\"Jungle Fence Gate Crafted\"}"}}, "m.pottedPoppy": {"CriteriaName": "minecraft.mined:minecraft.potted_poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Poppy Mined"}, "json_string": "{\"text\":\"Potted Poppy Mined\"}"}}, "m.yellowShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Mined"}, "json_string": "{\"text\":\"Yellow Shulker Box Mined\"}"}}, "c.tropicalFishBucket": {"CriteriaName": "minecraft.crafted:minecraft.tropical_fish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Bucket Crafted"}, "json_string": "{\"text\":\"Tropical Fish Bucket Crafted\"}"}}, "b.lightGrayDye": {"CriteriaName": "minecraft.broken:minecraft.light_gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Dye Broken"}, "json_string": "{\"text\":\"Light Gray Dye Broken\"}"}}, "m.cyanCandleCake": {"CriteriaName": "minecraft.mined:minecraft.cyan_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Cake Mined"}, "json_string": "{\"text\":\"Cyan Candle Cake Mined\"}"}}, "u.skullBannerPattern": {"CriteriaName": "minecraft.used:minecraft.skull_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skull Banner Pattern Used"}, "json_string": "{\"text\":\"Skull Banner Pattern Used\"}"}}, "u.crackedNetherBricks": {"CriteriaName": "minecraft.used:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Used"}, "json_string": "{\"text\":\"Cracked Nether Bricks Used\"}"}}, "m.cake": {"CriteriaName": "minecraft.mined:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Mined"}, "json_string": "{\"text\":\"Cake Mined\"}"}}, "q.graniteStairs": {"CriteriaName": "minecraft.dropped:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Dropped"}, "json_string": "{\"text\":\"Granite Stairs Dropped\"}"}}, "b.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Broken"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Broken\"}"}}, "g.cleanBanner": {"CriteriaName": "minecraft.custom:minecraft.clean_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clean Banner"}, "json_string": "{\"text\":\"Clean Banner\"}"}}, "c.carvedPumpkin": {"CriteriaName": "minecraft.crafted:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Crafted"}, "json_string": "{\"text\":\"Carved Pumpkin Crafted\"}"}}, "k.eyeOfEnder": {"CriteriaName": "minecraft.killed:minecraft.eye_of_ender", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Eye Of Ender Killed"}, "json_string": "{\"text\":\"Eye Of Ender Killed\"}"}}, "m.tallGrass": {"CriteriaName": "minecraft.mined:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Mined"}, "json_string": "{\"text\":\"Tall Grass Mined\"}"}}, "q.brownStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Dropped\"}"}}, "q.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Dropped\"}"}}, "b.birchFenceGate": {"CriteriaName": "minecraft.broken:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Broken"}, "json_string": "{\"text\":\"Birch Fence Gate Broken\"}"}}, "u.piglinBruteSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.piglin_brute_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Spawn Egg Used"}, "json_string": "{\"text\":\"Piglin Brute Spawn Egg Used\"}"}}, "p.diamondChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Chestplate Picked Up"}, "json_string": "{\"text\":\"Diamond Chestplate Picked Up\"}"}}, "b.beef": {"CriteriaName": "minecraft.broken:minecraft.beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beef Broken"}, "json_string": "{\"text\":\"Beef Broken\"}"}}, "c.grayConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Crafted"}, "json_string": "{\"text\":\"Gray Concrete Powder Crafted\"}"}}, "m.netherWartBlock": {"CriteriaName": "minecraft.mined:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Mined"}, "json_string": "{\"text\":\"Nether Wart Block Mined\"}"}}, "p.darkOakDoor": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Picked Up"}, "json_string": "{\"text\":\"Dark Oak Door Picked Up\"}"}}, "q.crackedNetherBricks": {"CriteriaName": "minecraft.dropped:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Dropped"}, "json_string": "{\"text\":\"Cracked Nether Bricks Dropped\"}"}}, "c.stoneButton": {"CriteriaName": "minecraft.crafted:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Crafted"}, "json_string": "{\"text\":\"Stone Button Crafted\"}"}}, "u.netheriteBlock": {"CriteriaName": "minecraft.used:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Used"}, "json_string": "{\"text\":\"Netherite Block Used\"}"}}, "u.dropper": {"CriteriaName": "minecraft.used:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Used"}, "json_string": "{\"text\":\"Dropper Used\"}"}}, "b.flintAndSteel": {"CriteriaName": "minecraft.broken:minecraft.flint_and_steel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint And Steel Broken"}, "json_string": "{\"text\":\"Flint And Steel Broken\"}"}}, "u.trappedChest": {"CriteriaName": "minecraft.used:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Used"}, "json_string": "{\"text\":\"Trapped Chest Used\"}"}}, "q.hopper": {"CriteriaName": "minecraft.dropped:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Dropped"}, "json_string": "{\"text\":\"Hopper Dropped\"}"}}, "p.twistingVines": {"CriteriaName": "minecraft.picked_up:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Picked Up"}, "json_string": "{\"text\":\"Twisting Vines Picked Up\"}"}}, "b.inkSac": {"CriteriaName": "minecraft.broken:minecraft.ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ink Sac Broken"}, "json_string": "{\"text\":\"Ink Sac Broken\"}"}}, "b.woodenAxe": {"CriteriaName": "minecraft.broken:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Axe Broken"}, "json_string": "{\"text\":\"Wooden Axe Broken\"}"}}, "u.conduit": {"CriteriaName": "minecraft.used:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Used"}, "json_string": "{\"text\":\"Conduit Used\"}"}}, "b.wetSponge": {"CriteriaName": "minecraft.broken:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Broken"}, "json_string": "{\"text\":\"Wet Sponge Broken\"}"}}, "c.ironDoor": {"CriteriaName": "minecraft.crafted:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Crafted"}, "json_string": "{\"text\":\"Iron Door Crafted\"}"}}, "b.brainCoral": {"CriteriaName": "minecraft.broken:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Broken"}, "json_string": "{\"text\":\"Brain Coral Broken\"}"}}, "u.smoothStone": {"CriteriaName": "minecraft.used:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Used"}, "json_string": "{\"text\":\"Smooth Stone Used\"}"}}, "m.crimsonFence": {"CriteriaName": "minecraft.mined:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Mined"}, "json_string": "{\"text\":\"Crimson Fence Mined\"}"}}, "c.oakLog": {"CriteriaName": "minecraft.crafted:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Crafted"}, "json_string": "{\"text\":\"Oak Log Crafted\"}"}}, "b.whiteStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Broken"}, "json_string": "{\"text\":\"White Stained Glass Pane Broken\"}"}}, "q.blackDye": {"CriteriaName": "minecraft.dropped:minecraft.black_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Dye Dropped"}, "json_string": "{\"text\":\"Black Dye Dropped\"}"}}, "c.lightBlueConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Crafted"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Crafted\"}"}}, "u.oakButton": {"CriteriaName": "minecraft.used:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Used"}, "json_string": "{\"text\":\"Oak Button Used\"}"}}, "c.brewingStand": {"CriteriaName": "minecraft.crafted:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Crafted"}, "json_string": "{\"text\":\"Brewing Stand Crafted\"}"}}, "q.cobbledDeepslate": {"CriteriaName": "minecraft.dropped:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Dropped"}, "json_string": "{\"text\":\"Cobbled Deepslate Dropped\"}"}}, "m.attachedMelonStem": {"CriteriaName": "minecraft.mined:minecraft.attached_melon_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Attached Melon Stem Mined"}, "json_string": "{\"text\":\"Attached Melon Stem Mined\"}"}}, "c.lilac": {"CriteriaName": "minecraft.crafted:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Crafted"}, "json_string": "{\"text\":\"Lilac Crafted\"}"}}, "q.pumpkinSeeds": {"CriteriaName": "minecraft.dropped:minecraft.pumpkin_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Seeds Dropped"}, "json_string": "{\"text\":\"Pumpkin Seeds Dropped\"}"}}, "m.tubeCoral": {"CriteriaName": "minecraft.mined:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Mined"}, "json_string": "{\"text\":\"Tube Coral Mined\"}"}}, "p.prismarine": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Picked Up"}, "json_string": "{\"text\":\"Prismarine Picked Up\"}"}}, "c.infestedCobblestone": {"CriteriaName": "minecraft.crafted:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Crafted"}, "json_string": "{\"text\":\"Infested Cobblestone Crafted\"}"}}, "c.lightGrayTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Crafted"}, "json_string": "{\"text\":\"Light Gray Terracotta Crafted\"}"}}, "c.witherSkeletonSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.wither_skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Spawn Egg Crafted"}, "json_string": "{\"text\":\"Wither Skeleton Spawn Egg Crafted\"}"}}, "q.slimeSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.slime_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Spawn Egg Dropped"}, "json_string": "{\"text\":\"Slime Spawn Egg Dropped\"}"}}, "p.netherBricks": {"CriteriaName": "minecraft.picked_up:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Picked Up"}, "json_string": "{\"text\":\"Nether Bricks Picked Up\"}"}}, "u.smallAmethystBud": {"CriteriaName": "minecraft.used:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Used"}, "json_string": "{\"text\":\"Small Amethyst Bud Used\"}"}}, "p.stoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Picked Up"}, "json_string": "{\"text\":\"Stone Stairs Picked Up\"}"}}, "u.dolphinSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.dolphin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Spawn Egg Used"}, "json_string": "{\"text\":\"Dolphin Spawn Egg Used\"}"}}, "m.powderSnowCauldron": {"CriteriaName": "minecraft.mined:minecraft.powder_snow_cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Cauldron Mined"}, "json_string": "{\"text\":\"Powder Snow Cauldron Mined\"}"}}, "c.goldenAxe": {"CriteriaName": "minecraft.crafted:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Axe Crafted"}, "json_string": "{\"text\":\"Golden Axe Crafted\"}"}}, "b.waxedCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Broken\"}"}}, "b.ravagerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.ravager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Spawn Egg Broken"}, "json_string": "{\"text\":\"Ravager Spawn Egg Broken\"}"}}, "u.charcoal": {"CriteriaName": "minecraft.used:minecraft.charcoal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Charcoal Used"}, "json_string": "{\"text\":\"Charcoal Used\"}"}}, "d.llamaSpit": {"CriteriaName": "minecraft.killed_by:minecraft.llama_spit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Llama Spit"}, "json_string": "{\"text\":\"Killed by Llama Spit\"}"}}, "c.warpedDoor": {"CriteriaName": "minecraft.crafted:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Crafted"}, "json_string": "{\"text\":\"Warped Door Crafted\"}"}}, "u.cyanBanner": {"CriteriaName": "minecraft.used:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Used"}, "json_string": "{\"text\":\"Cyan Banner Used\"}"}}, "c.driedKelp": {"CriteriaName": "minecraft.crafted:minecraft.dried_kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Crafted"}, "json_string": "{\"text\":\"Dried Kelp Crafted\"}"}}, "u.commandBlock": {"CriteriaName": "minecraft.used:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Used"}, "json_string": "{\"text\":\"Command Block Used\"}"}}, "p.shulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Picked Up"}, "json_string": "{\"text\":\"Shulker Box Picked Up\"}"}}, "q.orangeShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Dropped"}, "json_string": "{\"text\":\"Orange Shulker Box Dropped\"}"}}, "q.birchDoor": {"CriteriaName": "minecraft.dropped:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Dropped"}, "json_string": "{\"text\":\"Birch Door Dropped\"}"}}, "q.painting": {"CriteriaName": "minecraft.dropped:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Dropped"}, "json_string": "{\"text\":\"Painting Dropped\"}"}}, "g.talkedToVillager": {"CriteriaName": "minecraft.custom:minecraft.talked_to_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Talked to Villager"}, "json_string": "{\"text\":\"Talked to Villager\"}"}}, "p.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Picked Up\"}"}}, "b.ladder": {"CriteriaName": "minecraft.broken:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Broken"}, "json_string": "{\"text\":\"Ladder Broken\"}"}}, "c.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Crafted\"}"}}, "m.diamondBlock": {"CriteriaName": "minecraft.mined:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Mined"}, "json_string": "{\"text\":\"Diamond Block Mined\"}"}}, "m.orangeGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Mined\"}"}}, "p.waxedWeatheredCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Weathered Copper Picked Up\"}"}}, "u.redNetherBrickSlab": {"CriteriaName": "minecraft.used:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Used"}, "json_string": "{\"text\":\"Red Nether Brick Slab Used\"}"}}, "u.strippedDarkOakWood": {"CriteriaName": "minecraft.used:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Used"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Used\"}"}}, "m.orangeBed": {"CriteriaName": "minecraft.mined:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Mined"}, "json_string": "{\"text\":\"Orange Bed Mined\"}"}}, "q.mossCarpet": {"CriteriaName": "minecraft.dropped:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Dropped"}, "json_string": "{\"text\":\"Moss Carpet Dropped\"}"}}, "p.acaciaBoat": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Boat Picked Up"}, "json_string": "{\"text\":\"Acacia Boat Picked Up\"}"}}, "q.blueWool": {"CriteriaName": "minecraft.dropped:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Dropped"}, "json_string": "{\"text\":\"Blue Wool Dropped\"}"}}, "m.brownBanner": {"CriteriaName": "minecraft.mined:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Mined"}, "json_string": "{\"text\":\"Brown Banner Mined\"}"}}, "q.jungleStairs": {"CriteriaName": "minecraft.dropped:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Dropped"}, "json_string": "{\"text\":\"Jungle Stairs Dropped\"}"}}, "p.honeyBlock": {"CriteriaName": "minecraft.picked_up:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Picked Up"}, "json_string": "{\"text\":\"Honey Block Picked Up\"}"}}, "m.chest": {"CriteriaName": "minecraft.mined:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Mined"}, "json_string": "{\"text\":\"Chest Mined\"}"}}, "p.vexSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.vex_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Vex Spawn Egg Picked Up\"}"}}, "c.prismarineBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Crafted"}, "json_string": "{\"text\":\"Prismarine Brick Slab Crafted\"}"}}, "q.sand": {"CriteriaName": "minecraft.dropped:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Dropped"}, "json_string": "{\"text\":\"Sand Dropped\"}"}}, "b.prismarine": {"CriteriaName": "minecraft.broken:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Broken"}, "json_string": "{\"text\":\"Prismarine Broken\"}"}}, "c.beeNest": {"CriteriaName": "minecraft.crafted:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Crafted"}, "json_string": "{\"text\":\"Bee Nest Crafted\"}"}}, "q.ocelotSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.ocelot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Spawn Egg Dropped"}, "json_string": "{\"text\":\"Ocelot Spawn Egg Dropped\"}"}}, "q.tropicalFish": {"CriteriaName": "minecraft.dropped:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Dropped"}, "json_string": "{\"text\":\"Tropical Fish Dropped\"}"}}, "m.polishedGranite": {"CriteriaName": "minecraft.mined:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Mined"}, "json_string": "{\"text\":\"Polished Granite Mined\"}"}}, "c.orangeStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Crafted\"}"}}, "k.arrow": {"CriteriaName": "minecraft.killed:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Killed"}, "json_string": "{\"text\":\"Arrow Killed\"}"}}, "k.fireworkRocket": {"CriteriaName": "minecraft.killed:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Killed"}, "json_string": "{\"text\":\"Firework Rocket Killed\"}"}}, "c.sand": {"CriteriaName": "minecraft.crafted:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Crafted"}, "json_string": "{\"text\":\"Sand Crafted\"}"}}, "c.magentaStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Crafted\"}"}}, "p.sculkSensor": {"CriteriaName": "minecraft.picked_up:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Picked Up"}, "json_string": "{\"text\":\"Sculk Sensor Picked Up\"}"}}, "b.blackstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Broken"}, "json_string": "{\"text\":\"Blackstone Stairs Broken\"}"}}, "b.enderChest": {"CriteriaName": "minecraft.broken:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Broken"}, "json_string": "{\"text\":\"Ender Chest Broken\"}"}}, "q.fishingRod": {"CriteriaName": "minecraft.dropped:minecraft.fishing_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Rod Dropped"}, "json_string": "{\"text\":\"Fishing Rod Dropped\"}"}}, "u.quartz": {"CriteriaName": "minecraft.used:minecraft.quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Used"}, "json_string": "{\"text\":\"Quartz Used\"}"}}, "q.beehive": {"CriteriaName": "minecraft.dropped:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Dropped"}, "json_string": "{\"text\":\"Beehive Dropped\"}"}}, "q.weatheredCopper": {"CriteriaName": "minecraft.dropped:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Dropped"}, "json_string": "{\"text\":\"Weathered Copper Dropped\"}"}}, "d.itemFrame": {"CriteriaName": "minecraft.killed_by:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Item Frame"}, "json_string": "{\"text\":\"Killed by Item Frame\"}"}}, "p.strippedOakLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Picked Up"}, "json_string": "{\"text\":\"Stripped Oak Log Picked Up\"}"}}, "m.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.mined:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Mined"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Mined\"}"}}, "u.dioriteSlab": {"CriteriaName": "minecraft.used:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Used"}, "json_string": "{\"text\":\"Diorite Slab Used\"}"}}, "c.cobblestoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Crafted"}, "json_string": "{\"text\":\"Cobblestone Slab Crafted\"}"}}, "u.basalt": {"CriteriaName": "minecraft.used:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Used"}, "json_string": "{\"text\":\"Basalt Used\"}"}}, "c.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Crafted"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Crafted\"}"}}, "c.oakFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Crafted"}, "json_string": "{\"text\":\"Oak Fence Gate Crafted\"}"}}, "u.redNetherBricks": {"CriteriaName": "minecraft.used:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Used"}, "json_string": "{\"text\":\"Red Nether Bricks Used\"}"}}, "u.cutRedSandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Used"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Used\"}"}}, "u.scute": {"CriteriaName": "minecraft.used:minecraft.scute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scute Used"}, "json_string": "{\"text\":\"Scute Used\"}"}}, "b.grayStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Broken\"}"}}, "m.redstoneOre": {"CriteriaName": "minecraft.mined:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Mined"}, "json_string": "{\"text\":\"Redstone Ore Mined\"}"}}, "p.glowBerries": {"CriteriaName": "minecraft.picked_up:minecraft.glow_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Berries Picked Up"}, "json_string": "{\"text\":\"Glow Berries Picked Up\"}"}}, "u.turtleHelmet": {"CriteriaName": "minecraft.used:minecraft.turtle_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Helmet Used"}, "json_string": "{\"text\":\"Turtle Helmet Used\"}"}}, "p.rabbit": {"CriteriaName": "minecraft.picked_up:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Picked Up"}, "json_string": "{\"text\":\"Rabbit Picked Up\"}"}}, "g.dummy": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dummy :D"}, "json_string": "{\"text\":\"Dummy :D\"}"}}, "m.netherBricks": {"CriteriaName": "minecraft.mined:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Mined"}, "json_string": "{\"text\":\"Nether Bricks Mined\"}"}}, "c.yellowConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Crafted"}, "json_string": "{\"text\":\"Yellow Concrete Powder Crafted\"}"}}, "u.copperOre": {"CriteriaName": "minecraft.used:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Used"}, "json_string": "{\"text\":\"Copper Ore Used\"}"}}, "p.enchantedGoldenApple": {"CriteriaName": "minecraft.picked_up:minecraft.enchanted_golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Golden Apple Picked Up"}, "json_string": "{\"text\":\"Enchanted Golden Apple Picked Up\"}"}}, "u.spruceLeaves": {"CriteriaName": "minecraft.used:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Used"}, "json_string": "{\"text\":\"Spruce Leaves Used\"}"}}, "p.tntMinecart": {"CriteriaName": "minecraft.picked_up:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Picked Up"}, "json_string": "{\"text\":\"Tnt Minecart Picked Up\"}"}}, "b.flowerPot": {"CriteriaName": "minecraft.broken:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Broken"}, "json_string": "{\"text\":\"Flower Pot Broken\"}"}}, "c.deadBrainCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Crafted"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Crafted\"}"}}, "c.damagedAnvil": {"CriteriaName": "minecraft.crafted:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Crafted"}, "json_string": "{\"text\":\"Damaged Anvil Crafted\"}"}}, "b.woodenSword": {"CriteriaName": "minecraft.broken:minecraft.wooden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Sword Broken"}, "json_string": "{\"text\":\"Wooden Sword Broken\"}"}}, "c.villagerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Spawn Egg Crafted"}, "json_string": "{\"text\":\"Villager Spawn Egg Crafted\"}"}}, "b.rabbitStew": {"CriteriaName": "minecraft.broken:minecraft.rabbit_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Stew Broken"}, "json_string": "{\"text\":\"Rabbit Stew Broken\"}"}}, "u.soulLantern": {"CriteriaName": "minecraft.used:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Used"}, "json_string": "{\"text\":\"Soul Lantern Used\"}"}}, "u.glowLichen": {"CriteriaName": "minecraft.used:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Used"}, "json_string": "{\"text\":\"Glow Lichen Used\"}"}}, "m.exposedCopper": {"CriteriaName": "minecraft.mined:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Mined"}, "json_string": "{\"text\":\"Exposed Copper Mined\"}"}}, "b.glowstone": {"CriteriaName": "minecraft.broken:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Broken"}, "json_string": "{\"text\":\"Glowstone Broken\"}"}}, "b.goldIngot": {"CriteriaName": "minecraft.broken:minecraft.gold_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ingot Broken"}, "json_string": "{\"text\":\"Gold Ingot Broken\"}"}}, "b.infestedDeepslate": {"CriteriaName": "minecraft.broken:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Broken"}, "json_string": "{\"text\":\"Infested Deepslate Broken\"}"}}, "tc.break_birch": {"CriteriaName": "minecraft.mined:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_birch"}, "json_string": "{\"text\":\"tc.break_birch\"}"}}, "c.furnaceMinecart": {"CriteriaName": "minecraft.crafted:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Crafted"}, "json_string": "{\"text\":\"Furnace Minecart Crafted\"}"}}, "b.polishedDeepslate": {"CriteriaName": "minecraft.broken:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Broken"}, "json_string": "{\"text\":\"Polished Deepslate Broken\"}"}}, "c.purpurSlab": {"CriteriaName": "minecraft.crafted:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Crafted"}, "json_string": "{\"text\":\"Purpur Slab Crafted\"}"}}, "u.goldenHorseArmor": {"CriteriaName": "minecraft.used:minecraft.golden_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Horse Armor Used"}, "json_string": "{\"text\":\"Golden Horse Armor Used\"}"}}, "cu.interactWithCampfire": {"CriteriaName": "minecraft.custom:minecraft.interact_with_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Campfire"}, "json_string": "{\"text\":\"Interact With Campfire\"}"}}, "u.spruceWood": {"CriteriaName": "minecraft.used:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Used"}, "json_string": "{\"text\":\"Spruce Wood Used\"}"}}, "c.stoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Crafted"}, "json_string": "{\"text\":\"Stone Bricks Crafted\"}"}}, "m.redConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Mined"}, "json_string": "{\"text\":\"Red Concrete Powder Mined\"}"}}, "b.largeAmethystBud": {"CriteriaName": "minecraft.broken:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Broken"}, "json_string": "{\"text\":\"Large Amethyst Bud Broken\"}"}}, "c.warpedFence": {"CriteriaName": "minecraft.crafted:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Crafted"}, "json_string": "{\"text\":\"Warped Fence Crafted\"}"}}, "p.crackedDeepslateTiles": {"CriteriaName": "minecraft.picked_up:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Picked Up"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Picked Up\"}"}}, "q.woodenAxe": {"CriteriaName": "minecraft.dropped:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Axe Dropped"}, "json_string": "{\"text\":\"Wooden Axe Dropped\"}"}}, "p.phantomSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.phantom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Phantom Spawn Egg Picked Up\"}"}}, "u.glowstone": {"CriteriaName": "minecraft.used:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Used"}, "json_string": "{\"text\":\"Glowstone Used\"}"}}, "p.darkOakStairs": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Picked Up"}, "json_string": "{\"text\":\"Dark Oak Stairs Picked Up\"}"}}, "p.warpedWartBlock": {"CriteriaName": "minecraft.picked_up:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Picked Up"}, "json_string": "{\"text\":\"Warped Wart Block Picked Up\"}"}}, "k.silverfish": {"CriteriaName": "minecraft.killed:minecraft.silverfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Killed"}, "json_string": "{\"text\":\"Silverfish Killed\"}"}}, "p.magentaShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Picked Up"}, "json_string": "{\"text\":\"Magenta Shulker Box Picked Up\"}"}}, "c.spruceDoor": {"CriteriaName": "minecraft.crafted:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Crafted"}, "json_string": "{\"text\":\"Spruce Door Crafted\"}"}}, "u.pufferfishBucket": {"CriteriaName": "minecraft.used:minecraft.pufferfish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Bucket Used"}, "json_string": "{\"text\":\"Pufferfish Bucket Used\"}"}}, "c.glisteringMelonSlice": {"CriteriaName": "minecraft.crafted:minecraft.glistering_melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glistering Melon Slice Crafted"}, "json_string": "{\"text\":\"Glistering Melon Slice Crafted\"}"}}, "m.strippedJungleWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Mined"}, "json_string": "{\"text\":\"Stripped Jungle Wood Mined\"}"}}, "b.leather": {"CriteriaName": "minecraft.broken:minecraft.leather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Broken"}, "json_string": "{\"text\":\"Leather Broken\"}"}}, "p.warpedFence": {"CriteriaName": "minecraft.picked_up:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Picked Up"}, "json_string": "{\"text\":\"Warped Fence Picked Up\"}"}}, "b.chiseledSandstone": {"CriteriaName": "minecraft.broken:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Broken"}, "json_string": "{\"text\":\"Chiseled Sandstone Broken\"}"}}, "m.lightBlueCandleCake": {"CriteriaName": "minecraft.mined:minecraft.light_blue_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Cake Mined"}, "json_string": "{\"text\":\"Light Blue Candle Cake Mined\"}"}}, "p.torch": {"CriteriaName": "minecraft.picked_up:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Picked Up"}, "json_string": "{\"text\":\"Torch Picked Up\"}"}}, "p.cookedPorkchop": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Porkchop Picked Up"}, "json_string": "{\"text\":\"Cooked Porkchop Picked Up\"}"}}, "b.andesiteStairs": {"CriteriaName": "minecraft.broken:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Broken"}, "json_string": "{\"text\":\"Andesite Stairs Broken\"}"}}, "p.melonSeeds": {"CriteriaName": "minecraft.picked_up:minecraft.melon_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Seeds Picked Up"}, "json_string": "{\"text\":\"Melon Seeds Picked Up\"}"}}, "p.cactus": {"CriteriaName": "minecraft.picked_up:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Picked Up"}, "json_string": "{\"text\":\"Cactus Picked Up\"}"}}, "b.pinkDye": {"CriteriaName": "minecraft.broken:minecraft.pink_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Dye Broken"}, "json_string": "{\"text\":\"Pink Dye Broken\"}"}}, "b.furnace": {"CriteriaName": "minecraft.broken:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Broken"}, "json_string": "{\"text\":\"Furnace Broken\"}"}}, "g.constant": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "g.constant"}, "json_string": "{\"text\":\"g.constant\"}"}}, "p.dandelion": {"CriteriaName": "minecraft.picked_up:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Picked Up"}, "json_string": "{\"text\":\"Dandelion Picked Up\"}"}}, "u.cobblestoneWall": {"CriteriaName": "minecraft.used:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Used"}, "json_string": "{\"text\":\"Cobblestone Wall Used\"}"}}, "b.prismarineBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Broken"}, "json_string": "{\"text\":\"Prismarine Brick Slab Broken\"}"}}, "u.jungleStairs": {"CriteriaName": "minecraft.used:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Used"}, "json_string": "{\"text\":\"Jungle Stairs Used\"}"}}, "p.zoglinSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.zoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Zoglin Spawn Egg Picked Up\"}"}}, "p.drownedSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.drowned_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Drowned Spawn Egg Picked Up\"}"}}, "c.petrifiedOakSlab": {"CriteriaName": "minecraft.crafted:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Crafted"}, "json_string": "{\"text\":\"Petrified Oak Slab Crafted\"}"}}, "u.birchFenceGate": {"CriteriaName": "minecraft.used:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Used"}, "json_string": "{\"text\":\"Birch Fence Gate Used\"}"}}, "q.honeyBottle": {"CriteriaName": "minecraft.dropped:minecraft.honey_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Bottle Dropped"}, "json_string": "{\"text\":\"Honey Bottle Dropped\"}"}}, "u.woodenSword": {"CriteriaName": "minecraft.used:minecraft.wooden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Sword Used"}, "json_string": "{\"text\":\"Wooden Sword Used\"}"}}, "q.glassPane": {"CriteriaName": "minecraft.dropped:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Dropped"}, "json_string": "{\"text\":\"Glass Pane Dropped\"}"}}, "u.diamondHoe": {"CriteriaName": "minecraft.used:minecraft.diamond_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Hoe Used"}, "json_string": "{\"text\":\"Diamond Hoe Used\"}"}}, "m.lightGrayWallBanner": {"CriteriaName": "minecraft.mined:minecraft.light_gray_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wall Banner Mined"}, "json_string": "{\"text\":\"Light Gray Wall Banner Mined\"}"}}, "q.prismarineWall": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Dropped"}, "json_string": "{\"text\":\"Prismarine Wall Dropped\"}"}}, "b.brownStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Broken"}, "json_string": "{\"text\":\"Brown Stained Glass Broken\"}"}}, "u.magentaConcretePowder": {"CriteriaName": "minecraft.used:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Used"}, "json_string": "{\"text\":\"Magenta Concrete Powder Used\"}"}}, "b.pinkGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Broken\"}"}}, "u.guardianSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian Spawn Egg Used"}, "json_string": "{\"text\":\"Guardian Spawn Egg Used\"}"}}, "c.acaciaFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Crafted"}, "json_string": "{\"text\":\"Acacia Fence Gate Crafted\"}"}}, "p.jungleLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Picked Up"}, "json_string": "{\"text\":\"Jungle Leaves Picked Up\"}"}}, "c.parrotSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.parrot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Spawn Egg Crafted"}, "json_string": "{\"text\":\"Parrot Spawn Egg Crafted\"}"}}, "q.fletchingTable": {"CriteriaName": "minecraft.dropped:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Dropped"}, "json_string": "{\"text\":\"Fletching Table Dropped\"}"}}, "q.honeycombBlock": {"CriteriaName": "minecraft.dropped:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Dropped"}, "json_string": "{\"text\":\"Honeycomb Block Dropped\"}"}}, "c.prismarineBricks": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Crafted"}, "json_string": "{\"text\":\"Prismarine Bricks Crafted\"}"}}, "c.scaffolding": {"CriteriaName": "minecraft.crafted:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Crafted"}, "json_string": "{\"text\":\"Scaffolding Crafted\"}"}}, "p.grayBanner": {"CriteriaName": "minecraft.picked_up:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Picked Up"}, "json_string": "{\"text\":\"Gray Banner Picked Up\"}"}}, "b.redSandstoneWall": {"CriteriaName": "minecraft.broken:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Broken"}, "json_string": "{\"text\":\"Red Sandstone Wall Broken\"}"}}, "b.target": {"CriteriaName": "minecraft.broken:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Broken"}, "json_string": "{\"text\":\"Target Broken\"}"}}, "q.mushroomStem": {"CriteriaName": "minecraft.dropped:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Dropped"}, "json_string": "{\"text\":\"Mushroom Stem Dropped\"}"}}, "m.netherBrickWall": {"CriteriaName": "minecraft.mined:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Mined"}, "json_string": "{\"text\":\"Nether Brick Wall Mined\"}"}}, "b.lapisBlock": {"CriteriaName": "minecraft.broken:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Broken"}, "json_string": "{\"text\":\"Lapis Block Broken\"}"}}, "u.cutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Used"}, "json_string": "{\"text\":\"Cut Copper Slab Used\"}"}}, "q.redNetherBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Dropped"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Dropped\"}"}}, "b.lapisLazuli": {"CriteriaName": "minecraft.broken:minecraft.lapis_lazuli", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Lazuli Broken"}, "json_string": "{\"text\":\"Lapis Lazuli Broken\"}"}}, "b.striderSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.strider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Spawn Egg Broken"}, "json_string": "{\"text\":\"Strider Spawn Egg Broken\"}"}}, "c.chainCommandBlock": {"CriteriaName": "minecraft.crafted:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Crafted"}, "json_string": "{\"text\":\"Chain Command Block Crafted\"}"}}, "m.cobbledDeepslateStairs": {"CriteriaName": "minecraft.mined:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Mined"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Mined\"}"}}, "u.mossCarpet": {"CriteriaName": "minecraft.used:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Used"}, "json_string": "{\"text\":\"Moss Carpet Used\"}"}}, "k.minecart": {"CriteriaName": "minecraft.killed:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Killed"}, "json_string": "{\"text\":\"Minecart Killed\"}"}}, "q.brownDye": {"CriteriaName": "minecraft.dropped:minecraft.brown_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Dye Dropped"}, "json_string": "{\"text\":\"Brown Dye Dropped\"}"}}, "m.playerWallHead": {"CriteriaName": "minecraft.mined:minecraft.player_wall_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Wall Head Mined"}, "json_string": "{\"text\":\"Player Wall Head Mined\"}"}}, "q.mushroomStew": {"CriteriaName": "minecraft.dropped:minecraft.mushroom_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stew Dropped"}, "json_string": "{\"text\":\"Mushroom Stew Dropped\"}"}}, "b.limeWool": {"CriteriaName": "minecraft.broken:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Broken"}, "json_string": "{\"text\":\"Lime Wool Broken\"}"}}, "c.orangeWool": {"CriteriaName": "minecraft.crafted:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Crafted"}, "json_string": "{\"text\":\"Orange Wool Crafted\"}"}}, "u.redGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Used"}, "json_string": "{\"text\":\"Red Glazed Terracotta Used\"}"}}, "u.slimeSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.slime_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Spawn Egg Used"}, "json_string": "{\"text\":\"Slime Spawn Egg Used\"}"}}, "m.cobbledDeepslateWall": {"CriteriaName": "minecraft.mined:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Mined"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Mined\"}"}}, "c.cryingObsidian": {"CriteriaName": "minecraft.crafted:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Crafted"}, "json_string": "{\"text\":\"Crying Obsidian Crafted\"}"}}, "p.jungleSign": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Picked Up"}, "json_string": "{\"text\":\"Jungle Sign Picked Up\"}"}}, "p.lightBlueCandle": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Picked Up"}, "json_string": "{\"text\":\"Light Blue Candle Picked Up\"}"}}, "c.leatherBoots": {"CriteriaName": "minecraft.crafted:minecraft.leather_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Boots Crafted"}, "json_string": "{\"text\":\"Leather Boots Crafted\"}"}}, "p.deepslateLapisOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Picked Up\"}"}}, "c.purpleWool": {"CriteriaName": "minecraft.crafted:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Crafted"}, "json_string": "{\"text\":\"Purple Wool Crafted\"}"}}, "q.tuff": {"CriteriaName": "minecraft.dropped:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Dropped"}, "json_string": "{\"text\":\"Tuff Dropped\"}"}}, "p.mushroomStem": {"CriteriaName": "minecraft.picked_up:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Picked Up"}, "json_string": "{\"text\":\"Mushroom Stem Picked Up\"}"}}, "u.darkPrismarine": {"CriteriaName": "minecraft.used:minecraft.dark_prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Used"}, "json_string": "{\"text\":\"Dark Prismarine Used\"}"}}, "p.flowerPot": {"CriteriaName": "minecraft.picked_up:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Picked Up"}, "json_string": "{\"text\":\"Flower Pot Picked Up\"}"}}, "u.yellowStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Used"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Used\"}"}}, "q.orangeConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Dropped"}, "json_string": "{\"text\":\"Orange Concrete Powder Dropped\"}"}}, "p.redSand": {"CriteriaName": "minecraft.picked_up:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Picked Up"}, "json_string": "{\"text\":\"Red Sand Picked Up\"}"}}, "q.stonecutter": {"CriteriaName": "minecraft.dropped:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Dropped"}, "json_string": "{\"text\":\"Stonecutter Dropped\"}"}}, "p.cookedChicken": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Chicken Picked Up"}, "json_string": "{\"text\":\"Cooked Chicken Picked Up\"}"}}, "b.clayBall": {"CriteriaName": "minecraft.broken:minecraft.clay_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Ball Broken"}, "json_string": "{\"text\":\"Clay Ball Broken\"}"}}, "q.tripwireHook": {"CriteriaName": "minecraft.dropped:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Dropped"}, "json_string": "{\"text\":\"Tripwire Hook Dropped\"}"}}, "c.chiseledStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Crafted"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Crafted\"}"}}, "m.whiteStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Mined"}, "json_string": "{\"text\":\"White Stained Glass Pane Mined\"}"}}, "d.marker": {"CriteriaName": "minecraft.killed_by:minecraft.marker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Marker"}, "json_string": "{\"text\":\"Killed by Marker\"}"}}, "b.cobweb": {"CriteriaName": "minecraft.broken:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Broken"}, "json_string": "{\"text\":\"Cobweb Broken\"}"}}, "m.grayStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Mined"}, "json_string": "{\"text\":\"Gray Stained Glass Mined\"}"}}, "cu.pigOneCm": {"CriteriaName": "minecraft.custom:minecraft.pig_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig One Cm"}, "json_string": "{\"text\":\"Pig One Cm\"}"}}, "p.hornCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Picked Up"}, "json_string": "{\"text\":\"Horn Coral Block Picked Up\"}"}}, "b.yellowStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Broken"}, "json_string": "{\"text\":\"Yellow Stained Glass Broken\"}"}}, "k.enderDragon": {"CriteriaName": "minecraft.killed:minecraft.ender_dragon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Dragon Killed"}, "json_string": "{\"text\":\"Ender Dragon Killed\"}"}}, "u.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.used:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Used"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Used\"}"}}, "p.darkOakSign": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Picked Up"}, "json_string": "{\"text\":\"Dark Oak Sign Picked Up\"}"}}, "p.greenGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Green Glazed Terracotta Picked Up\"}"}}, "m.greenCandle": {"CriteriaName": "minecraft.mined:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Mined"}, "json_string": "{\"text\":\"Green Candle Mined\"}"}}, "p.bundle": {"CriteriaName": "minecraft.picked_up:minecraft.bundle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bundle Picked Up"}, "json_string": "{\"text\":\"Bundle Picked Up\"}"}}, "c.tuff": {"CriteriaName": "minecraft.crafted:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Crafted"}, "json_string": "{\"text\":\"Tuff Crafted\"}"}}, "b.cyanShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Broken"}, "json_string": "{\"text\":\"Cyan Shulker Box Broken\"}"}}, "q.endStoneBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Dropped"}, "json_string": "{\"text\":\"End Stone Brick Slab Dropped\"}"}}, "p.cornflower": {"CriteriaName": "minecraft.picked_up:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Picked Up"}, "json_string": "{\"text\":\"Cornflower Picked Up\"}"}}, "tc.break_acacia": {"CriteriaName": "minecraft.mined:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_acacia"}, "json_string": "{\"text\":\"tc.break_acacia\"}"}}, "u.leatherHelmet": {"CriteriaName": "minecraft.used:minecraft.leather_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Helmet Used"}, "json_string": "{\"text\":\"Leather Helmet Used\"}"}}, "c.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Crafted\"}"}}, "m.spruceSign": {"CriteriaName": "minecraft.mined:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Mined"}, "json_string": "{\"text\":\"Spruce Sign Mined\"}"}}, "d.commandBlockMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Command Block Minecart"}, "json_string": "{\"text\":\"Killed by Command Block Minecart\"}"}}, "p.amethystBlock": {"CriteriaName": "minecraft.picked_up:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Picked Up"}, "json_string": "{\"text\":\"Amethyst Block Picked Up\"}"}}, "leafDec.acaciaL": {"CriteriaName": "minecraft.mined:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.acaciaL"}, "json_string": "{\"text\":\"leafDec.acaciaL\"}"}}, "m.grayWool": {"CriteriaName": "minecraft.mined:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Mined"}, "json_string": "{\"text\":\"Gray Wool Mined\"}"}}, "p.warpedFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Picked Up"}, "json_string": "{\"text\":\"Warped Fence Gate Picked Up\"}"}}, "q.acaciaBoat": {"CriteriaName": "minecraft.dropped:minecraft.acacia_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Boat Dropped"}, "json_string": "{\"text\":\"Acacia Boat Dropped\"}"}}, "q.piglinSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Spawn Egg Dropped"}, "json_string": "{\"text\":\"Piglin Spawn Egg Dropped\"}"}}, "leafDec.acaciaS": {"CriteriaName": "minecraft.mined:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.acaciaS"}, "json_string": "{\"text\":\"leafDec.acaciaS\"}"}}, "c.polishedDioriteSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Crafted"}, "json_string": "{\"text\":\"Polished Diorite Slab Crafted\"}"}}, "d.bat": {"CriteriaName": "minecraft.killed_by:minecraft.bat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Bat"}, "json_string": "{\"text\":\"Killed by Bat\"}"}}, "b.ironPickaxe": {"CriteriaName": "minecraft.broken:minecraft.iron_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Pickaxe Broken"}, "json_string": "{\"text\":\"Iron Pickaxe Broken\"}"}}, "q.exposedCopper": {"CriteriaName": "minecraft.dropped:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Dropped"}, "json_string": "{\"text\":\"Exposed Copper Dropped\"}"}}, "q.shears": {"CriteriaName": "minecraft.dropped:minecraft.shears", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shears Dropped"}, "json_string": "{\"text\":\"Shears Dropped\"}"}}, "q.polishedDeepslateWall": {"CriteriaName": "minecraft.dropped:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Dropped"}, "json_string": "{\"text\":\"Polished Deepslate Wall Dropped\"}"}}, "c.sandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Sandstone Slab Crafted\"}"}}, "k.ghast": {"CriteriaName": "minecraft.killed:minecraft.ghast", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Killed"}, "json_string": "{\"text\":\"Ghast Killed\"}"}}, "q.shulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Dropped"}, "json_string": "{\"text\":\"Shulker Box Dropped\"}"}}, "b.chest": {"CriteriaName": "minecraft.broken:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Broken"}, "json_string": "{\"text\":\"Chest Broken\"}"}}, "c.yellowBed": {"CriteriaName": "minecraft.crafted:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Crafted"}, "json_string": "{\"text\":\"Yellow Bed Crafted\"}"}}, "k.shulker": {"CriteriaName": "minecraft.killed:minecraft.shulker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Killed"}, "json_string": "{\"text\":\"Shulker Killed\"}"}}, "c.shulkerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.shulker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Spawn Egg Crafted"}, "json_string": "{\"text\":\"Shulker Spawn Egg Crafted\"}"}}, "b.copperIngot": {"CriteriaName": "minecraft.broken:minecraft.copper_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ingot Broken"}, "json_string": "{\"text\":\"Copper Ingot Broken\"}"}}, "c.beacon": {"CriteriaName": "minecraft.crafted:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Crafted"}, "json_string": "{\"text\":\"Beacon Crafted\"}"}}, "c.dioriteWall": {"CriteriaName": "minecraft.crafted:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Crafted"}, "json_string": "{\"text\":\"Diorite Wall Crafted\"}"}}, "q.turtleEgg": {"CriteriaName": "minecraft.dropped:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Dropped"}, "json_string": "{\"text\":\"Turtle Egg Dropped\"}"}}, "u.crackedDeepslateTiles": {"CriteriaName": "minecraft.used:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Used"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Used\"}"}}, "u.smoothRedSandstone": {"CriteriaName": "minecraft.used:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Used"}, "json_string": "{\"text\":\"Smooth Red Sandstone Used\"}"}}, "q.polishedBlackstone": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Dropped\"}"}}, "c.chiseledQuartzBlock": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Crafted"}, "json_string": "{\"text\":\"Chiseled Quartz Block Crafted\"}"}}, "u.acaciaWood": {"CriteriaName": "minecraft.used:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Used"}, "json_string": "{\"text\":\"Acacia Wood Used\"}"}}, "c.ironOre": {"CriteriaName": "minecraft.crafted:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Crafted"}, "json_string": "{\"text\":\"Iron Ore Crafted\"}"}}, "m.mossyCobblestoneSlab": {"CriteriaName": "minecraft.mined:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Mined"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Mined\"}"}}, "b.magentaGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Broken\"}"}}, "m.repeater": {"CriteriaName": "minecraft.mined:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Mined"}, "json_string": "{\"text\":\"Repeater Mined\"}"}}, "b.commandBlockMinecart": {"CriteriaName": "minecraft.broken:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Broken"}, "json_string": "{\"text\":\"Command Block Minecart Broken\"}"}}, "u.clay": {"CriteriaName": "minecraft.used:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Used"}, "json_string": "{\"text\":\"Clay Used\"}"}}, "b.lantern": {"CriteriaName": "minecraft.broken:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Broken"}, "json_string": "{\"text\":\"Lantern Broken\"}"}}, "q.weatheredCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Dropped"}, "json_string": "{\"text\":\"Weathered Cut Copper Dropped\"}"}}, "m.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Mined"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Mined\"}"}}, "d.bee": {"CriteriaName": "minecraft.killed_by:minecraft.bee", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Bee"}, "json_string": "{\"text\":\"Killed by Bee\"}"}}, "q.polishedBlackstoneButton": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Button Dropped\"}"}}, "b.pinkTulip": {"CriteriaName": "minecraft.broken:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Broken"}, "json_string": "{\"text\":\"Pink Tulip Broken\"}"}}, "b.endermanSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.enderman_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Spawn Egg Broken"}, "json_string": "{\"text\":\"Enderman Spawn Egg Broken\"}"}}, "u.acaciaPressurePlate": {"CriteriaName": "minecraft.used:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Used"}, "json_string": "{\"text\":\"Acacia Pressure Plate Used\"}"}}, "b.redShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Broken"}, "json_string": "{\"text\":\"Red Shulker Box Broken\"}"}}, "u.brickSlab": {"CriteriaName": "minecraft.used:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Used"}, "json_string": "{\"text\":\"Brick Slab Used\"}"}}, "p.deepslateDiamondOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Picked Up\"}"}}, "u.stoneBrickSlab": {"CriteriaName": "minecraft.used:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Used"}, "json_string": "{\"text\":\"Stone Brick Slab Used\"}"}}, "p.purpurBlock": {"CriteriaName": "minecraft.picked_up:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Picked Up"}, "json_string": "{\"text\":\"Purpur Block Picked Up\"}"}}, "q.salmonBucket": {"CriteriaName": "minecraft.dropped:minecraft.salmon_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Bucket Dropped"}, "json_string": "{\"text\":\"Salmon Bucket Dropped\"}"}}, "rc_displayT": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Display Toggle"}, "json_string": "{\"text\":\"Display Toggle\"}"}}, "p.birchLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Picked Up"}, "json_string": "{\"text\":\"Birch Leaves Picked Up\"}"}}, "q.chest": {"CriteriaName": "minecraft.dropped:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Dropped"}, "json_string": "{\"text\":\"Chest Dropped\"}"}}, "q.catSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.cat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Spawn Egg Dropped"}, "json_string": "{\"text\":\"Cat Spawn Egg Dropped\"}"}}, "k.creeper": {"CriteriaName": "minecraft.killed:minecraft.creeper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Killed"}, "json_string": "{\"text\":\"Creeper Killed\"}"}}, "u.redstoneTorch": {"CriteriaName": "minecraft.used:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Used"}, "json_string": "{\"text\":\"Redstone Torch Used\"}"}}, "m.pinkCandle": {"CriteriaName": "minecraft.mined:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Mined"}, "json_string": "{\"text\":\"Pink Candle Mined\"}"}}, "p.waxedCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Picked Up\"}"}}, "p.oakPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Picked Up"}, "json_string": "{\"text\":\"Oak Planks Picked Up\"}"}}, "p.pufferfishSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.pufferfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Pufferfish Spawn Egg Picked Up\"}"}}, "u.deadBubbleCoralFan": {"CriteriaName": "minecraft.used:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Used"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Used\"}"}}, "c.netherBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Crafted"}, "json_string": "{\"text\":\"Nether Brick Stairs Crafted\"}"}}, "c.andesiteStairs": {"CriteriaName": "minecraft.crafted:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Crafted"}, "json_string": "{\"text\":\"Andesite Stairs Crafted\"}"}}, "c.lightGrayDye": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Dye Crafted"}, "json_string": "{\"text\":\"Light Gray Dye Crafted\"}"}}, "u.blackTerracotta": {"CriteriaName": "minecraft.used:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Used"}, "json_string": "{\"text\":\"Black Terracotta Used\"}"}}, "q.podzol": {"CriteriaName": "minecraft.dropped:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Dropped"}, "json_string": "{\"text\":\"Podzol Dropped\"}"}}, "c.strippedCrimsonHyphae": {"CriteriaName": "minecraft.crafted:minecraft.stripped_crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Hyphae Crafted"}, "json_string": "{\"text\":\"Stripped Crimson Hyphae Crafted\"}"}}, "p.lightBlueTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Picked Up"}, "json_string": "{\"text\":\"Light Blue Terracotta Picked Up\"}"}}, "p.piglinSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Piglin Spawn Egg Picked Up\"}"}}, "q.netheriteIngot": {"CriteriaName": "minecraft.dropped:minecraft.netherite_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Ingot Dropped"}, "json_string": "{\"text\":\"Netherite Ingot Dropped\"}"}}, "m.blackBanner": {"CriteriaName": "minecraft.mined:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Mined"}, "json_string": "{\"text\":\"Black Banner Mined\"}"}}, "k.mooshroom": {"CriteriaName": "minecraft.killed:minecraft.mooshroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Killed"}, "json_string": "{\"text\":\"Mooshroom Killed\"}"}}, "b.netheritePickaxe": {"CriteriaName": "minecraft.broken:minecraft.netherite_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Pickaxe Broken"}, "json_string": "{\"text\":\"Netherite Pickaxe Broken\"}"}}, "q.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Dropped\"}"}}, "q.wetSponge": {"CriteriaName": "minecraft.dropped:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Dropped"}, "json_string": "{\"text\":\"Wet Sponge Dropped\"}"}}, "c.honeycomb": {"CriteriaName": "minecraft.crafted:minecraft.honeycomb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Crafted"}, "json_string": "{\"text\":\"Honeycomb Crafted\"}"}}, "p.dragonBreath": {"CriteriaName": "minecraft.picked_up:minecraft.dragon_breath", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Breath Picked Up"}, "json_string": "{\"text\":\"Dragon Breath Picked Up\"}"}}, "b.oxeyeDaisy": {"CriteriaName": "minecraft.broken:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Broken"}, "json_string": "{\"text\":\"Oxeye Daisy Broken\"}"}}, "m.stoneBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Mined"}, "json_string": "{\"text\":\"Stone Brick Stairs Mined\"}"}}, "m.gildedBlackstone": {"CriteriaName": "minecraft.mined:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Mined"}, "json_string": "{\"text\":\"Gilded Blackstone Mined\"}"}}, "p.poweredRail": {"CriteriaName": "minecraft.picked_up:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Picked Up"}, "json_string": "{\"text\":\"Powered Rail Picked Up\"}"}}, "q.quartzSlab": {"CriteriaName": "minecraft.dropped:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Dropped"}, "json_string": "{\"text\":\"Quartz Slab Dropped\"}"}}, "q.lightBlueTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Dropped"}, "json_string": "{\"text\":\"Light Blue Terracotta Dropped\"}"}}, "p.blueBanner": {"CriteriaName": "minecraft.picked_up:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Picked Up"}, "json_string": "{\"text\":\"Blue Banner Picked Up\"}"}}, "u.lightBlueDye": {"CriteriaName": "minecraft.used:minecraft.light_blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Dye Used"}, "json_string": "{\"text\":\"Light Blue Dye Used\"}"}}, "u.waxedCutCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Used"}, "json_string": "{\"text\":\"Waxed Cut Copper Used\"}"}}, "u.darkOakFence": {"CriteriaName": "minecraft.used:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Used"}, "json_string": "{\"text\":\"Dark Oak Fence Used\"}"}}, "b.spruceStairs": {"CriteriaName": "minecraft.broken:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Broken"}, "json_string": "{\"text\":\"Spruce Stairs Broken\"}"}}, "b.turtleEgg": {"CriteriaName": "minecraft.broken:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Broken"}, "json_string": "{\"text\":\"Turtle Egg Broken\"}"}}, "cu.talkedToVillager": {"CriteriaName": "minecraft.custom:minecraft.talked_to_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Talked To Villager"}, "json_string": "{\"text\":\"Talked To Villager\"}"}}, "q.blueConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Dropped"}, "json_string": "{\"text\":\"Blue Concrete Powder Dropped\"}"}}, "d.zombieVillager": {"CriteriaName": "minecraft.killed_by:minecraft.zombie_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Zombie Villager"}, "json_string": "{\"text\":\"Killed by Zombie Villager\"}"}}, "c.dispenser": {"CriteriaName": "minecraft.crafted:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Crafted"}, "json_string": "{\"text\":\"Dispenser Crafted\"}"}}, "c.hornCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Crafted"}, "json_string": "{\"text\":\"Horn Coral Fan Crafted\"}"}}, "c.endStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Crafted"}, "json_string": "{\"text\":\"End Stone Bricks Crafted\"}"}}, "m.blueGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Mined\"}"}}, "u.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Used"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Used\"}"}}, "m.blackstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Mined"}, "json_string": "{\"text\":\"Blackstone Slab Mined\"}"}}, "q.blueBed": {"CriteriaName": "minecraft.dropped:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Dropped"}, "json_string": "{\"text\":\"Blue Bed Dropped\"}"}}, "m.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Mined\"}"}}, "c.dropper": {"CriteriaName": "minecraft.crafted:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Crafted"}, "json_string": "{\"text\":\"Dropper Crafted\"}"}}, "p.grayConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Picked Up"}, "json_string": "{\"text\":\"Gray Concrete Picked Up\"}"}}, "m.polishedAndesiteSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Mined"}, "json_string": "{\"text\":\"Polished Andesite Slab Mined\"}"}}, "c.cookie": {"CriteriaName": "minecraft.crafted:minecraft.cookie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cookie Crafted"}, "json_string": "{\"text\":\"Cookie Crafted\"}"}}, "cu.interactWithBlastFurnace": {"CriteriaName": "minecraft.custom:minecraft.interact_with_blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Blast Furnace"}, "json_string": "{\"text\":\"Interact With Blast Furnace\"}"}}, "m.limeTerracotta": {"CriteriaName": "minecraft.mined:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Mined"}, "json_string": "{\"text\":\"Lime Terracotta Mined\"}"}}, "c.brainCoral": {"CriteriaName": "minecraft.crafted:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Crafted"}, "json_string": "{\"text\":\"Brain Coral Crafted\"}"}}, "c.cookedMutton": {"CriteriaName": "minecraft.crafted:minecraft.cooked_mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Mutton Crafted"}, "json_string": "{\"text\":\"Cooked Mutton Crafted\"}"}}, "c.turtleHelmet": {"CriteriaName": "minecraft.crafted:minecraft.turtle_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Helmet Crafted"}, "json_string": "{\"text\":\"Turtle Helmet Crafted\"}"}}, "b.fireCoralFan": {"CriteriaName": "minecraft.broken:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Broken"}, "json_string": "{\"text\":\"Fire Coral Fan Broken\"}"}}, "cu.targetHit": {"CriteriaName": "minecraft.custom:minecraft.target_hit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Hit"}, "json_string": "{\"text\":\"Target Hit\"}"}}, "m.hornCoral": {"CriteriaName": "minecraft.mined:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Mined"}, "json_string": "{\"text\":\"Horn Coral Mined\"}"}}, "b.cartographyTable": {"CriteriaName": "minecraft.broken:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Broken"}, "json_string": "{\"text\":\"Cartography Table Broken\"}"}}, "u.torch": {"CriteriaName": "minecraft.used:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Used"}, "json_string": "{\"text\":\"Torch Used\"}"}}, "u.mossBlock": {"CriteriaName": "minecraft.used:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Used"}, "json_string": "{\"text\":\"Moss Block Used\"}"}}, "m.jungleFence": {"CriteriaName": "minecraft.mined:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Mined"}, "json_string": "{\"text\":\"Jungle Fence Mined\"}"}}, "q.shroomlight": {"CriteriaName": "minecraft.dropped:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Dropped"}, "json_string": "{\"text\":\"Shroomlight Dropped\"}"}}, "p.pinkDye": {"CriteriaName": "minecraft.picked_up:minecraft.pink_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Dye Picked Up"}, "json_string": "{\"text\":\"Pink Dye Picked Up\"}"}}, "q.lightGrayConcrete": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Dropped"}, "json_string": "{\"text\":\"Light Gray Concrete Dropped\"}"}}, "k.marker": {"CriteriaName": "minecraft.killed:minecraft.marker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Marker Killed"}, "json_string": "{\"text\":\"Marker Killed\"}"}}, "p.endPortalFrame": {"CriteriaName": "minecraft.picked_up:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Picked Up"}, "json_string": "{\"text\":\"End Portal Frame Picked Up\"}"}}, "p.chain": {"CriteriaName": "minecraft.picked_up:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Picked Up"}, "json_string": "{\"text\":\"Chain Picked Up\"}"}}, "m.strippedBirchWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Mined"}, "json_string": "{\"text\":\"Stripped Birch Wood Mined\"}"}}, "d.tntMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Tnt Minecart"}, "json_string": "{\"text\":\"Killed by Tnt Minecart\"}"}}, "p.musicDisc11": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_11", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 11 Picked Up"}, "json_string": "{\"text\":\"Music Disc 11 Picked Up\"}"}}, "b.stickyPiston": {"CriteriaName": "minecraft.broken:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Broken"}, "json_string": "{\"text\":\"Sticky Piston Broken\"}"}}, "p.musicDisc13": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_13", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 13 Picked Up"}, "json_string": "{\"text\":\"Music Disc 13 Picked Up\"}"}}, "p.warpedStem": {"CriteriaName": "minecraft.picked_up:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Picked Up"}, "json_string": "{\"text\":\"Warped Stem Picked Up\"}"}}, "q.craftingTable": {"CriteriaName": "minecraft.dropped:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Dropped"}, "json_string": "{\"text\":\"Crafting Table Dropped\"}"}}, "c.comparator": {"CriteriaName": "minecraft.crafted:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Crafted"}, "json_string": "{\"text\":\"Comparator Crafted\"}"}}, "p.netheriteIngot": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Ingot Picked Up"}, "json_string": "{\"text\":\"Netherite Ingot Picked Up\"}"}}, "b.goldenShovel": {"CriteriaName": "minecraft.broken:minecraft.golden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Shovel Broken"}, "json_string": "{\"text\":\"Golden Shovel Broken\"}"}}, "p.endermiteSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.endermite_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Endermite Spawn Egg Picked Up\"}"}}, "b.beeSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.bee_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Spawn Egg Broken"}, "json_string": "{\"text\":\"Bee Spawn Egg Broken\"}"}}, "u.azaleaLeaves": {"CriteriaName": "minecraft.used:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Used"}, "json_string": "{\"text\":\"Azalea Leaves Used\"}"}}, "u.ironHorseArmor": {"CriteriaName": "minecraft.used:minecraft.iron_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Horse Armor Used"}, "json_string": "{\"text\":\"Iron Horse Armor Used\"}"}}, "u.pinkDye": {"CriteriaName": "minecraft.used:minecraft.pink_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Dye Used"}, "json_string": "{\"text\":\"Pink Dye Used\"}"}}, "u.furnace": {"CriteriaName": "minecraft.used:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Used"}, "json_string": "{\"text\":\"Furnace Used\"}"}}, "q.egg": {"CriteriaName": "minecraft.dropped:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Dropped"}, "json_string": "{\"text\":\"Egg Dropped\"}"}}, "q.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Dropped\"}"}}, "m.detectorRail": {"CriteriaName": "minecraft.mined:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Mined"}, "json_string": "{\"text\":\"Detector Rail Mined\"}"}}, "q.whiteShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Dropped"}, "json_string": "{\"text\":\"White Shulker Box Dropped\"}"}}, "c.dirtPath": {"CriteriaName": "minecraft.crafted:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Crafted"}, "json_string": "{\"text\":\"Dirt Path Crafted\"}"}}, "c.glass": {"CriteriaName": "minecraft.crafted:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Crafted"}, "json_string": "{\"text\":\"Glass Crafted\"}"}}, "q.diamondBlock": {"CriteriaName": "minecraft.dropped:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Dropped"}, "json_string": "{\"text\":\"Diamond Block Dropped\"}"}}, "p.lantern": {"CriteriaName": "minecraft.picked_up:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Picked Up"}, "json_string": "{\"text\":\"Lantern Picked Up\"}"}}, "q.deepslateDiamondOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Dropped\"}"}}, "c.darkOakPlanks": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Crafted"}, "json_string": "{\"text\":\"Dark Oak Planks Crafted\"}"}}, "u.beeSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.bee_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Spawn Egg Used"}, "json_string": "{\"text\":\"Bee Spawn Egg Used\"}"}}, "u.birchLog": {"CriteriaName": "minecraft.used:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Used"}, "json_string": "{\"text\":\"Birch Log Used\"}"}}, "m.warpedSign": {"CriteriaName": "minecraft.mined:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Mined"}, "json_string": "{\"text\":\"Warped Sign Mined\"}"}}, "u.tropicalFish": {"CriteriaName": "minecraft.used:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Used"}, "json_string": "{\"text\":\"Tropical Fish Used\"}"}}, "c.dripstoneBlock": {"CriteriaName": "minecraft.crafted:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Crafted"}, "json_string": "{\"text\":\"Dripstone Block Crafted\"}"}}, "u.enchantingTable": {"CriteriaName": "minecraft.used:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Used"}, "json_string": "{\"text\":\"Enchanting Table Used\"}"}}, "b.endStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Broken"}, "json_string": "{\"text\":\"End Stone Bricks Broken\"}"}}, "b.polishedBlackstoneWall": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Broken"}, "json_string": "{\"text\":\"Polished Blackstone Wall Broken\"}"}}, "b.brownStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Broken\"}"}}, "q.strippedOakLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Dropped"}, "json_string": "{\"text\":\"Stripped Oak Log Dropped\"}"}}, "b.polarBearSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.polar_bear_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Spawn Egg Broken"}, "json_string": "{\"text\":\"Polar Bear Spawn Egg Broken\"}"}}, "b.yellowStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Broken\"}"}}, "p.polishedGraniteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Picked Up"}, "json_string": "{\"text\":\"Polished Granite Slab Picked Up\"}"}}, "b.spruceSign": {"CriteriaName": "minecraft.broken:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Broken"}, "json_string": "{\"text\":\"Spruce Sign Broken\"}"}}, "b.brick": {"CriteriaName": "minecraft.broken:minecraft.brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Broken"}, "json_string": "{\"text\":\"Brick Broken\"}"}}, "b.bubbleCoral": {"CriteriaName": "minecraft.broken:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Broken"}, "json_string": "{\"text\":\"Bubble Coral Broken\"}"}}, "u.oakWood": {"CriteriaName": "minecraft.used:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Used"}, "json_string": "{\"text\":\"Oak Wood Used\"}"}}, "m.pottedBlueOrchid": {"CriteriaName": "minecraft.mined:minecraft.potted_blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Blue Orchid Mined"}, "json_string": "{\"text\":\"Potted Blue Orchid Mined\"}"}}, "c.crimsonDoor": {"CriteriaName": "minecraft.crafted:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Crafted"}, "json_string": "{\"text\":\"Crimson Door Crafted\"}"}}, "k.zombieHorse": {"CriteriaName": "minecraft.killed:minecraft.zombie_horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Killed"}, "json_string": "{\"text\":\"Zombie Horse Killed\"}"}}, "b.potion": {"CriteriaName": "minecraft.broken:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Broken"}, "json_string": "{\"text\":\"Potion Broken\"}"}}, "m.orangeTerracotta": {"CriteriaName": "minecraft.mined:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Mined"}, "json_string": "{\"text\":\"Orange Terracotta Mined\"}"}}, "c.filledMap": {"CriteriaName": "minecraft.crafted:minecraft.filled_map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Filled Map Crafted"}, "json_string": "{\"text\":\"Filled Map Crafted\"}"}}, "u.floweringAzalea": {"CriteriaName": "minecraft.used:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Used"}, "json_string": "{\"text\":\"Flowering Azalea Used\"}"}}, "u.bubbleCoral": {"CriteriaName": "minecraft.used:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Used"}, "json_string": "{\"text\":\"Bubble Coral Used\"}"}}, "b.shulkerShell": {"CriteriaName": "minecraft.broken:minecraft.shulker_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Shell Broken"}, "json_string": "{\"text\":\"Shulker Shell Broken\"}"}}, "u.lantern": {"CriteriaName": "minecraft.used:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Used"}, "json_string": "{\"text\":\"Lantern Used\"}"}}, "u.deadHornCoralFan": {"CriteriaName": "minecraft.used:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Used"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Used\"}"}}, "p.woodenHoe": {"CriteriaName": "minecraft.picked_up:minecraft.wooden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Hoe Picked Up"}, "json_string": "{\"text\":\"Wooden Hoe Picked Up\"}"}}, "q.greenBed": {"CriteriaName": "minecraft.dropped:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Dropped"}, "json_string": "{\"text\":\"Green Bed Dropped\"}"}}, "p.musicDiscFar": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_far", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Far Picked Up"}, "json_string": "{\"text\":\"Music Disc Far Picked Up\"}"}}, "b.acaciaSign": {"CriteriaName": "minecraft.broken:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Broken"}, "json_string": "{\"text\":\"Acacia Sign Broken\"}"}}, "u.smoothQuartzSlab": {"CriteriaName": "minecraft.used:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Used"}, "json_string": "{\"text\":\"Smooth Quartz Slab Used\"}"}}, "m.fire": {"CriteriaName": "minecraft.mined:minecraft.fire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Mined"}, "json_string": "{\"text\":\"Fire Mined\"}"}}, "u.redSandstoneStairs": {"CriteriaName": "minecraft.used:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Used"}, "json_string": "{\"text\":\"Red Sandstone Stairs Used\"}"}}, "c.musicDiscWard": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_ward", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Ward Crafted"}, "json_string": "{\"text\":\"Music Disc Ward Crafted\"}"}}, "q.waxedWeatheredCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Dropped"}, "json_string": "{\"text\":\"Waxed Weathered Copper Dropped\"}"}}, "u.purpleTerracotta": {"CriteriaName": "minecraft.used:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Used"}, "json_string": "{\"text\":\"Purple Terracotta Used\"}"}}, "m.mushroomStem": {"CriteriaName": "minecraft.mined:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Mined"}, "json_string": "{\"text\":\"Mushroom Stem Mined\"}"}}, "cusNetPor": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Custom Nether Portals"}, "json_string": "{\"text\":\"Custom Nether Portals\"}"}}, "u.jungleTrapdoor": {"CriteriaName": "minecraft.used:minecraft.jungle_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Trapdoor Used"}, "json_string": "{\"text\":\"Jungle Trapdoor Used\"}"}}, "c.pillagerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.pillager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Spawn Egg Crafted"}, "json_string": "{\"text\":\"Pillager Spawn Egg Crafted\"}"}}, "m.greenCarpet": {"CriteriaName": "minecraft.mined:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Mined"}, "json_string": "{\"text\":\"Green Carpet Mined\"}"}}, "b.dripstoneBlock": {"CriteriaName": "minecraft.broken:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Broken"}, "json_string": "{\"text\":\"Dripstone Block Broken\"}"}}, "u.sprucePlanks": {"CriteriaName": "minecraft.used:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Used"}, "json_string": "{\"text\":\"Spruce Planks Used\"}"}}, "p.composter": {"CriteriaName": "minecraft.picked_up:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Picked Up"}, "json_string": "{\"text\":\"Composter Picked Up\"}"}}, "q.glowSquidSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.glow_squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid Spawn Egg Dropped"}, "json_string": "{\"text\":\"Glow Squid Spawn Egg Dropped\"}"}}, "m.allium": {"CriteriaName": "minecraft.mined:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Mined"}, "json_string": "{\"text\":\"Allium Mined\"}"}}, "m.amethystCluster": {"CriteriaName": "minecraft.mined:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Mined"}, "json_string": "{\"text\":\"Amethyst Cluster Mined\"}"}}, "q.endPortalFrame": {"CriteriaName": "minecraft.dropped:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Dropped"}, "json_string": "{\"text\":\"End Portal Frame Dropped\"}"}}, "c.globeBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.globe_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Globe Banner Pattern Crafted"}, "json_string": "{\"text\":\"Globe Banner Pattern Crafted\"}"}}, "u.netherStar": {"CriteriaName": "minecraft.used:minecraft.nether_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Star Used"}, "json_string": "{\"text\":\"Nether Star Used\"}"}}, "q.warpedPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Dropped"}, "json_string": "{\"text\":\"Warped Pressure Plate Dropped\"}"}}, "c.jungleBoat": {"CriteriaName": "minecraft.crafted:minecraft.jungle_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Boat Crafted"}, "json_string": "{\"text\":\"Jungle Boat Crafted\"}"}}, "q.milkBucket": {"CriteriaName": "minecraft.dropped:minecraft.milk_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Milk Bucket Dropped"}, "json_string": "{\"text\":\"Milk Bucket Dropped\"}"}}, "c.goldenCarrot": {"CriteriaName": "minecraft.crafted:minecraft.golden_carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Carrot Crafted"}, "json_string": "{\"text\":\"Golden Carrot Crafted\"}"}}, "p.stoneHoe": {"CriteriaName": "minecraft.picked_up:minecraft.stone_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Hoe Picked Up"}, "json_string": "{\"text\":\"Stone Hoe Picked Up\"}"}}, "u.birchWood": {"CriteriaName": "minecraft.used:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Used"}, "json_string": "{\"text\":\"Birch Wood Used\"}"}}, "g.interactWithGrindstone": {"CriteriaName": "minecraft.custom:minecraft.interact_with_grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Grindstone"}, "json_string": "{\"text\":\"Interact with Grindstone\"}"}}, "u.craftingTable": {"CriteriaName": "minecraft.used:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Used"}, "json_string": "{\"text\":\"Crafting Table Used\"}"}}, "p.tubeCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Picked Up"}, "json_string": "{\"text\":\"Tube Coral Block Picked Up\"}"}}, "p.brownMushroomBlock": {"CriteriaName": "minecraft.picked_up:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Picked Up"}, "json_string": "{\"text\":\"Brown Mushroom Block Picked Up\"}"}}, "u.gravel": {"CriteriaName": "minecraft.used:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Used"}, "json_string": "{\"text\":\"Gravel Used\"}"}}, "m.movingPiston": {"CriteriaName": "minecraft.mined:minecraft.moving_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moving Piston Mined"}, "json_string": "{\"text\":\"Moving Piston Mined\"}"}}, "c.oxidizedCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Crafted"}, "json_string": "{\"text\":\"Oxidized Cut Copper Crafted\"}"}}, "p.scute": {"CriteriaName": "minecraft.picked_up:minecraft.scute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scute Picked Up"}, "json_string": "{\"text\":\"Scute Picked Up\"}"}}, "p.bookshelf": {"CriteriaName": "minecraft.picked_up:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Picked Up"}, "json_string": "{\"text\":\"Bookshelf Picked Up\"}"}}, "q.redStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Dropped"}, "json_string": "{\"text\":\"Red Stained Glass Dropped\"}"}}, "b.limeDye": {"CriteriaName": "minecraft.broken:minecraft.lime_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Dye Broken"}, "json_string": "{\"text\":\"Lime Dye Broken\"}"}}, "m.jukebox": {"CriteriaName": "minecraft.mined:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Mined"}, "json_string": "{\"text\":\"Jukebox Mined\"}"}}, "q.chainmailChestplate": {"CriteriaName": "minecraft.dropped:minecraft.chainmail_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Chestplate Dropped"}, "json_string": "{\"text\":\"Chainmail Chestplate Dropped\"}"}}, "m.warpedRoots": {"CriteriaName": "minecraft.mined:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Mined"}, "json_string": "{\"text\":\"Warped Roots Mined\"}"}}, "u.netheriteScrap": {"CriteriaName": "minecraft.used:minecraft.netherite_scrap", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Scrap Used"}, "json_string": "{\"text\":\"Netherite Scrap Used\"}"}}, "b.blueStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Broken"}, "json_string": "{\"text\":\"Blue Stained Glass Broken\"}"}}, "c.orangeDye": {"CriteriaName": "minecraft.crafted:minecraft.orange_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Dye Crafted"}, "json_string": "{\"text\":\"Orange Dye Crafted\"}"}}, "u.soulCampfire": {"CriteriaName": "minecraft.used:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Used"}, "json_string": "{\"text\":\"Soul Campfire Used\"}"}}, "m.orangeStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Mined"}, "json_string": "{\"text\":\"Orange Stained Glass Mined\"}"}}, "q.smoothStone": {"CriteriaName": "minecraft.dropped:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Dropped"}, "json_string": "{\"text\":\"Smooth Stone Dropped\"}"}}, "p.musicDiscBlocks": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_blocks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Blocks Picked Up"}, "json_string": "{\"text\":\"Music Disc Blocks Picked Up\"}"}}, "p.repeatingCommandBlock": {"CriteriaName": "minecraft.picked_up:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Picked Up"}, "json_string": "{\"text\":\"Repeating Command Block Picked Up\"}"}}, "c.painting": {"CriteriaName": "minecraft.crafted:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Crafted"}, "json_string": "{\"text\":\"Painting Crafted\"}"}}, "k.ocelot": {"CriteriaName": "minecraft.killed:minecraft.ocelot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Killed"}, "json_string": "{\"text\":\"Ocelot Killed\"}"}}, "b.enderPearl": {"CriteriaName": "minecraft.broken:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Broken"}, "json_string": "{\"text\":\"Ender Pearl Broken\"}"}}, "m.polishedDeepslate": {"CriteriaName": "minecraft.mined:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Mined"}, "json_string": "{\"text\":\"Polished Deepslate Mined\"}"}}, "leafDec.oakS": {"CriteriaName": "minecraft.mined:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.oakS"}, "json_string": "{\"text\":\"leafDec.oakS\"}"}}, "b.cookedRabbit": {"CriteriaName": "minecraft.broken:minecraft.cooked_rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Rabbit Broken"}, "json_string": "{\"text\":\"Cooked Rabbit Broken\"}"}}, "p.lightBlueBanner": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Picked Up"}, "json_string": "{\"text\":\"Light Blue Banner Picked Up\"}"}}, "q.cobblestoneWall": {"CriteriaName": "minecraft.dropped:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Dropped"}, "json_string": "{\"text\":\"Cobblestone Wall Dropped\"}"}}, "p.candle": {"CriteriaName": "minecraft.picked_up:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Picked Up"}, "json_string": "{\"text\":\"Candle Picked Up\"}"}}, "m.brainCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.brain_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Brain Coral Wall Fan Mined\"}"}}, "c.blueBanner": {"CriteriaName": "minecraft.crafted:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Crafted"}, "json_string": "{\"text\":\"Blue Banner Crafted\"}"}}, "u.orangeCarpet": {"CriteriaName": "minecraft.used:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Used"}, "json_string": "{\"text\":\"Orange Carpet Used\"}"}}, "b.acaciaLeaves": {"CriteriaName": "minecraft.broken:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Broken"}, "json_string": "{\"text\":\"Acacia Leaves Broken\"}"}}, "b.crimsonPlanks": {"CriteriaName": "minecraft.broken:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Broken"}, "json_string": "{\"text\":\"Crimson Planks Broken\"}"}}, "b.tropicalFish": {"CriteriaName": "minecraft.broken:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Broken"}, "json_string": "{\"text\":\"Tropical Fish Broken\"}"}}, "q.codBucket": {"CriteriaName": "minecraft.dropped:minecraft.cod_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Bucket Dropped"}, "json_string": "{\"text\":\"Cod Bucket Dropped\"}"}}, "b.brownWool": {"CriteriaName": "minecraft.broken:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Broken"}, "json_string": "{\"text\":\"Brown Wool Broken\"}"}}, "b.strippedDarkOakLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Broken"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Broken\"}"}}, "q.spruceBoat": {"CriteriaName": "minecraft.dropped:minecraft.spruce_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Boat Dropped"}, "json_string": "{\"text\":\"Spruce Boat Dropped\"}"}}, "b.diamondShovel": {"CriteriaName": "minecraft.broken:minecraft.diamond_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Shovel Broken"}, "json_string": "{\"text\":\"Diamond Shovel Broken\"}"}}, "b.netherrack": {"CriteriaName": "minecraft.broken:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Broken"}, "json_string": "{\"text\":\"Netherrack Broken\"}"}}, "p.lodestone": {"CriteriaName": "minecraft.picked_up:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Picked Up"}, "json_string": "{\"text\":\"Lodestone Picked Up\"}"}}, "b.leatherLeggings": {"CriteriaName": "minecraft.broken:minecraft.leather_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Leggings Broken"}, "json_string": "{\"text\":\"Leather Leggings Broken\"}"}}, "u.largeFern": {"CriteriaName": "minecraft.used:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Used"}, "json_string": "{\"text\":\"Large Fern Used\"}"}}, "m.witherRose": {"CriteriaName": "minecraft.mined:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Mined"}, "json_string": "{\"text\":\"Wither Rose Mined\"}"}}, "p.deadBubbleCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Picked Up"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Picked Up\"}"}}, "u.orangeBanner": {"CriteriaName": "minecraft.used:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Used"}, "json_string": "{\"text\":\"Orange Banner Used\"}"}}, "b.grindstone": {"CriteriaName": "minecraft.broken:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Broken"}, "json_string": "{\"text\":\"Grindstone Broken\"}"}}, "b.yellowBed": {"CriteriaName": "minecraft.broken:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Broken"}, "json_string": "{\"text\":\"Yellow Bed Broken\"}"}}, "q.redstone": {"CriteriaName": "minecraft.dropped:minecraft.redstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Dropped"}, "json_string": "{\"text\":\"Redstone Dropped\"}"}}, "c.smallAmethystBud": {"CriteriaName": "minecraft.crafted:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Crafted"}, "json_string": "{\"text\":\"Small Amethyst Bud Crafted\"}"}}, "c.spruceSlab": {"CriteriaName": "minecraft.crafted:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Crafted"}, "json_string": "{\"text\":\"Spruce Slab Crafted\"}"}}, "cu.killedByRedTeam": {"CriteriaName": "killedByTeam.red", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Red Team"}, "json_string": "{\"text\":\"Killed by Red Team\"}"}}, "u.oakBoat": {"CriteriaName": "minecraft.used:minecraft.oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Boat Used"}, "json_string": "{\"text\":\"Oak Boat Used\"}"}}, "p.yellowShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Picked Up"}, "json_string": "{\"text\":\"Yellow Shulker Box Picked Up\"}"}}, "u.limeConcrete": {"CriteriaName": "minecraft.used:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Used"}, "json_string": "{\"text\":\"Lime Concrete Used\"}"}}, "u.enchantedBook": {"CriteriaName": "minecraft.used:minecraft.enchanted_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Book Used"}, "json_string": "{\"text\":\"Enchanted Book Used\"}"}}, "m.emeraldBlock": {"CriteriaName": "minecraft.mined:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Mined"}, "json_string": "{\"text\":\"Emerald Block Mined\"}"}}, "b.rail": {"CriteriaName": "minecraft.broken:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Broken"}, "json_string": "{\"text\":\"Rail Broken\"}"}}, "b.anvil": {"CriteriaName": "minecraft.broken:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Broken"}, "json_string": "{\"text\":\"Anvil Broken\"}"}}, "m.lever": {"CriteriaName": "minecraft.mined:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Mined"}, "json_string": "{\"text\":\"Lever Mined\"}"}}, "u.hornCoral": {"CriteriaName": "minecraft.used:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Used"}, "json_string": "{\"text\":\"Horn Coral Used\"}"}}, "c.azalea": {"CriteriaName": "minecraft.crafted:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Crafted"}, "json_string": "{\"text\":\"Azalea Crafted\"}"}}, "q.strippedCrimsonHyphae": {"CriteriaName": "minecraft.dropped:minecraft.stripped_crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Hyphae Dropped"}, "json_string": "{\"text\":\"Stripped Crimson Hyphae Dropped\"}"}}, "b.grayCandle": {"CriteriaName": "minecraft.broken:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Broken"}, "json_string": "{\"text\":\"Gray Candle Broken\"}"}}, "u.netherWartBlock": {"CriteriaName": "minecraft.used:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Used"}, "json_string": "{\"text\":\"Nether Wart Block Used\"}"}}, "m.redStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Mined"}, "json_string": "{\"text\":\"Red Stained Glass Mined\"}"}}, "b.diamondSword": {"CriteriaName": "minecraft.broken:minecraft.diamond_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Sword Broken"}, "json_string": "{\"text\":\"Diamond Sword Broken\"}"}}, "p.leatherBoots": {"CriteriaName": "minecraft.picked_up:minecraft.leather_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Boots Picked Up"}, "json_string": "{\"text\":\"Leather Boots Picked Up\"}"}}, "q.acaciaWood": {"CriteriaName": "minecraft.dropped:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Dropped"}, "json_string": "{\"text\":\"Acacia Wood Dropped\"}"}}, "c.smoothQuartzSlab": {"CriteriaName": "minecraft.crafted:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Crafted"}, "json_string": "{\"text\":\"Smooth Quartz Slab Crafted\"}"}}, "q.lantern": {"CriteriaName": "minecraft.dropped:minecraft.lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lantern Dropped"}, "json_string": "{\"text\":\"Lantern Dropped\"}"}}, "u.bucket": {"CriteriaName": "minecraft.used:minecraft.bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bucket Used"}, "json_string": "{\"text\":\"Bucket Used\"}"}}, "q.musicDiscOtherside": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_otherside", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Otherside Dropped"}, "json_string": "{\"text\":\"Music Disc Otherside Dropped\"}"}}, "b.graniteStairs": {"CriteriaName": "minecraft.broken:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Broken"}, "json_string": "{\"text\":\"Granite Stairs Broken\"}"}}, "c.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Crafted\"}"}}, "g.openEnderchest": {"CriteriaName": "minecraft.custom:minecraft.open_enderchest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Open Enderchest"}, "json_string": "{\"text\":\"Open Enderchest\"}"}}, "q.diamondPickaxe": {"CriteriaName": "minecraft.dropped:minecraft.diamond_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Pickaxe Dropped"}, "json_string": "{\"text\":\"Diamond Pickaxe Dropped\"}"}}, "p.shield": {"CriteriaName": "minecraft.picked_up:minecraft.shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shield Picked Up"}, "json_string": "{\"text\":\"Shield Picked Up\"}"}}, "m.birchStairs": {"CriteriaName": "minecraft.mined:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Mined"}, "json_string": "{\"text\":\"Birch Stairs Mined\"}"}}, "m.weatheredCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Mined\"}"}}, "c.musicDiscCat": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Cat Crafted"}, "json_string": "{\"text\":\"Music Disc Cat Crafted\"}"}}, "c.crimsonPlanks": {"CriteriaName": "minecraft.crafted:minecraft.crimson_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Planks Crafted"}, "json_string": "{\"text\":\"Crimson Planks Crafted\"}"}}, "u.waxedCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Used"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Used\"}"}}, "d.mooshroom": {"CriteriaName": "minecraft.killed_by:minecraft.mooshroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Mooshroom"}, "json_string": "{\"text\":\"Killed by Mooshroom\"}"}}, "u.pumpkinPie": {"CriteriaName": "minecraft.used:minecraft.pumpkin_pie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Pie Used"}, "json_string": "{\"text\":\"Pumpkin Pie Used\"}"}}, "m.hangingRoots": {"CriteriaName": "minecraft.mined:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Mined"}, "json_string": "{\"text\":\"Hanging Roots Mined\"}"}}, "p.sandstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Picked Up"}, "json_string": "{\"text\":\"Sandstone Stairs Picked Up\"}"}}, "b.nameTag": {"CriteriaName": "minecraft.broken:minecraft.name_tag", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Name Tag Broken"}, "json_string": "{\"text\":\"Name Tag Broken\"}"}}, "m.pumpkinStem": {"CriteriaName": "minecraft.mined:minecraft.pumpkin_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Stem Mined"}, "json_string": "{\"text\":\"Pumpkin Stem Mined\"}"}}, "q.redShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Dropped"}, "json_string": "{\"text\":\"Red Shulker Box Dropped\"}"}}, "m.pinkCarpet": {"CriteriaName": "minecraft.mined:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Mined"}, "json_string": "{\"text\":\"Pink Carpet Mined\"}"}}, "c.milkBucket": {"CriteriaName": "minecraft.crafted:minecraft.milk_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Milk Bucket Crafted"}, "json_string": "{\"text\":\"Milk Bucket Crafted\"}"}}, "u.sweetBerries": {"CriteriaName": "minecraft.used:minecraft.sweet_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berries Used"}, "json_string": "{\"text\":\"Sweet Berries Used\"}"}}, "p.andesiteWall": {"CriteriaName": "minecraft.picked_up:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Picked Up"}, "json_string": "{\"text\":\"Andesite Wall Picked Up\"}"}}, "u.activatorRail": {"CriteriaName": "minecraft.used:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Used"}, "json_string": "{\"text\":\"Activator Rail Used\"}"}}, "u.diamondPickaxe": {"CriteriaName": "minecraft.used:minecraft.diamond_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Pickaxe Used"}, "json_string": "{\"text\":\"Diamond Pickaxe Used\"}"}}, "b.jungleStairs": {"CriteriaName": "minecraft.broken:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Broken"}, "json_string": "{\"text\":\"Jungle Stairs Broken\"}"}}, "q.prismarineBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Dropped"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Dropped\"}"}}, "p.brewingStand": {"CriteriaName": "minecraft.picked_up:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Picked Up"}, "json_string": "{\"text\":\"Brewing Stand Picked Up\"}"}}, "q.magentaBed": {"CriteriaName": "minecraft.dropped:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Dropped"}, "json_string": "{\"text\":\"Magenta Bed Dropped\"}"}}, "m.oxeyeDaisy": {"CriteriaName": "minecraft.mined:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Mined"}, "json_string": "{\"text\":\"Oxeye Daisy Mined\"}"}}, "q.redMushroomBlock": {"CriteriaName": "minecraft.dropped:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Dropped"}, "json_string": "{\"text\":\"Red Mushroom Block Dropped\"}"}}, "b.prismarineCrystals": {"CriteriaName": "minecraft.broken:minecraft.prismarine_crystals", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crystals Broken"}, "json_string": "{\"text\":\"Prismarine Crystals Broken\"}"}}, "b.grayTerracotta": {"CriteriaName": "minecraft.broken:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Broken"}, "json_string": "{\"text\":\"Gray Terracotta Broken\"}"}}, "leafDec.oakL": {"CriteriaName": "minecraft.mined:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.oakL"}, "json_string": "{\"text\":\"leafDec.oakL\"}"}}, "u.strippedWarpedHyphae": {"CriteriaName": "minecraft.used:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Used"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Used\"}"}}, "m.deadTubeCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.dead_tube_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Dead Tube Coral Wall Fan Mined\"}"}}, "p.redShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Picked Up"}, "json_string": "{\"text\":\"Red Shulker Box Picked Up\"}"}}, "m.orangeTulip": {"CriteriaName": "minecraft.mined:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Mined"}, "json_string": "{\"text\":\"Orange Tulip Mined\"}"}}, "p.lightGrayShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Picked Up"}, "json_string": "{\"text\":\"Light Gray Shulker Box Picked Up\"}"}}, "q.silverfishSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.silverfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Spawn Egg Dropped"}, "json_string": "{\"text\":\"Silverfish Spawn Egg Dropped\"}"}}, "u.rawCopper": {"CriteriaName": "minecraft.used:minecraft.raw_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Used"}, "json_string": "{\"text\":\"Raw Copper Used\"}"}}, "q.redNetherBricks": {"CriteriaName": "minecraft.dropped:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Dropped"}, "json_string": "{\"text\":\"Red Nether Bricks Dropped\"}"}}, "q.magentaShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Dropped"}, "json_string": "{\"text\":\"Magenta Shulker Box Dropped\"}"}}, "k.turtle": {"CriteriaName": "minecraft.killed:minecraft.turtle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Killed"}, "json_string": "{\"text\":\"Turtle Killed\"}"}}, "b.weatheredCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Broken\"}"}}, "u.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Used"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Used\"}"}}, "q.carvedPumpkin": {"CriteriaName": "minecraft.dropped:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Dropped"}, "json_string": "{\"text\":\"Carved Pumpkin Dropped\"}"}}, "c.polishedDeepslateWall": {"CriteriaName": "minecraft.crafted:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Crafted"}, "json_string": "{\"text\":\"Polished Deepslate Wall Crafted\"}"}}, "q.ironShovel": {"CriteriaName": "minecraft.dropped:minecraft.iron_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Shovel Dropped"}, "json_string": "{\"text\":\"Iron Shovel Dropped\"}"}}, "c.brownDye": {"CriteriaName": "minecraft.crafted:minecraft.brown_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Dye Crafted"}, "json_string": "{\"text\":\"Brown Dye Crafted\"}"}}, "b.smallDripleaf": {"CriteriaName": "minecraft.broken:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Broken"}, "json_string": "{\"text\":\"Small Dripleaf Broken\"}"}}, "k.evoker": {"CriteriaName": "minecraft.killed:minecraft.evoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Killed"}, "json_string": "{\"text\":\"Evoker Killed\"}"}}, "m.candle": {"CriteriaName": "minecraft.mined:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Mined"}, "json_string": "{\"text\":\"Candle Mined\"}"}}, "p.damagedAnvil": {"CriteriaName": "minecraft.picked_up:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Picked Up"}, "json_string": "{\"text\":\"Damaged Anvil Picked Up\"}"}}, "c.netherBricks": {"CriteriaName": "minecraft.crafted:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Crafted"}, "json_string": "{\"text\":\"Nether Bricks Crafted\"}"}}, "u.cookedCod": {"CriteriaName": "minecraft.used:minecraft.cooked_cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Cod Used"}, "json_string": "{\"text\":\"Cooked Cod Used\"}"}}, "p.musicDiscPigstep": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_pigstep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Pigstep Picked Up"}, "json_string": "{\"text\":\"Music Disc Pigstep Picked Up\"}"}}, "b.cobblestoneStairs": {"CriteriaName": "minecraft.broken:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Broken"}, "json_string": "{\"text\":\"Cobblestone Stairs Broken\"}"}}, "p.lavaBucket": {"CriteriaName": "minecraft.picked_up:minecraft.lava_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Bucket Picked Up"}, "json_string": "{\"text\":\"Lava Bucket Picked Up\"}"}}, "m.limeBanner": {"CriteriaName": "minecraft.mined:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Mined"}, "json_string": "{\"text\":\"Lime Banner Mined\"}"}}, "b.jungleDoor": {"CriteriaName": "minecraft.broken:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Broken"}, "json_string": "{\"text\":\"Jungle Door Broken\"}"}}, "c.strippedDarkOakLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Crafted"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Crafted\"}"}}, "TreeCapitator": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "TreeCapitator"}, "json_string": "{\"text\":\"TreeCapitator\"}"}}, "p.stonePickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.stone_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pickaxe Picked Up"}, "json_string": "{\"text\":\"Stone Pickaxe Picked Up\"}"}}, "p.blueBed": {"CriteriaName": "minecraft.picked_up:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Picked Up"}, "json_string": "{\"text\":\"Blue Bed Picked Up\"}"}}, "p.jukebox": {"CriteriaName": "minecraft.picked_up:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Picked Up"}, "json_string": "{\"text\":\"Jukebox Picked Up\"}"}}, "b.orangeCandle": {"CriteriaName": "minecraft.broken:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Broken"}, "json_string": "{\"text\":\"Orange Candle Broken\"}"}}, "u.villagerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Spawn Egg Used"}, "json_string": "{\"text\":\"Villager Spawn Egg Used\"}"}}, "u.flowerBannerPattern": {"CriteriaName": "minecraft.used:minecraft.flower_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Banner Pattern Used"}, "json_string": "{\"text\":\"Flower Banner Pattern Used\"}"}}, "u.boneMeal": {"CriteriaName": "minecraft.used:minecraft.bone_meal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Meal Used"}, "json_string": "{\"text\":\"Bone Meal Used\"}"}}, "b.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Broken"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Broken\"}"}}, "m.magentaStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Mined"}, "json_string": "{\"text\":\"Magenta Stained Glass Mined\"}"}}, "u.orangeTerracotta": {"CriteriaName": "minecraft.used:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Used"}, "json_string": "{\"text\":\"Orange Terracotta Used\"}"}}, "u.knowledgeBook": {"CriteriaName": "minecraft.used:minecraft.knowledge_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Knowledge Book Used"}, "json_string": "{\"text\":\"Knowledge Book Used\"}"}}, "u.pinkBed": {"CriteriaName": "minecraft.used:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Used"}, "json_string": "{\"text\":\"Pink Bed Used\"}"}}, "c.crackedDeepslateTiles": {"CriteriaName": "minecraft.crafted:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Crafted"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Crafted\"}"}}, "u.chain": {"CriteriaName": "minecraft.used:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Used"}, "json_string": "{\"text\":\"Chain Used\"}"}}, "b.tripwireHook": {"CriteriaName": "minecraft.broken:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Broken"}, "json_string": "{\"text\":\"Tripwire Hook Broken\"}"}}, "u.respawnAnchor": {"CriteriaName": "minecraft.used:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Used"}, "json_string": "{\"text\":\"Respawn Anchor Used\"}"}}, "u.pointedDripstone": {"CriteriaName": "minecraft.used:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Used"}, "json_string": "{\"text\":\"Pointed Dripstone Used\"}"}}, "p.crimsonSlab": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Picked Up"}, "json_string": "{\"text\":\"Crimson Slab Picked Up\"}"}}, "u.sandstoneWall": {"CriteriaName": "minecraft.used:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Used"}, "json_string": "{\"text\":\"Sandstone Wall Used\"}"}}, "b.rootedDirt": {"CriteriaName": "minecraft.broken:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Broken"}, "json_string": "{\"text\":\"Rooted Dirt Broken\"}"}}, "b.redConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Broken"}, "json_string": "{\"text\":\"Red Concrete Powder Broken\"}"}}, "u.obsidian": {"CriteriaName": "minecraft.used:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Used"}, "json_string": "{\"text\":\"Obsidian Used\"}"}}, "m.weatheredCutCopper": {"CriteriaName": "minecraft.mined:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Mined"}, "json_string": "{\"text\":\"Weathered Cut Copper Mined\"}"}}, "u.redTerracotta": {"CriteriaName": "minecraft.used:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Used"}, "json_string": "{\"text\":\"Red Terracotta Used\"}"}}, "c.prismarineWall": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Crafted"}, "json_string": "{\"text\":\"Prismarine Wall Crafted\"}"}}, "b.jackOLantern": {"CriteriaName": "minecraft.broken:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Broken"}, "json_string": "{\"text\":\"Jack O Lantern Broken\"}"}}, "p.glass": {"CriteriaName": "minecraft.picked_up:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Picked Up"}, "json_string": "{\"text\":\"Glass Picked Up\"}"}}, "q.acaciaFence": {"CriteriaName": "minecraft.dropped:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Dropped"}, "json_string": "{\"text\":\"Acacia Fence Dropped\"}"}}, "u.armorStand": {"CriteriaName": "minecraft.used:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Used"}, "json_string": "{\"text\":\"Armor Stand Used\"}"}}, "b.copperBlock": {"CriteriaName": "minecraft.broken:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Broken"}, "json_string": "{\"text\":\"Copper Block Broken\"}"}}, "c.creeperHead": {"CriteriaName": "minecraft.crafted:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Crafted"}, "json_string": "{\"text\":\"Creeper Head Crafted\"}"}}, "b.junglePlanks": {"CriteriaName": "minecraft.broken:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Broken"}, "json_string": "{\"text\":\"Jungle Planks Broken\"}"}}, "c.ironShovel": {"CriteriaName": "minecraft.crafted:minecraft.iron_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Shovel Crafted"}, "json_string": "{\"text\":\"Iron Shovel Crafted\"}"}}, "b.zoglinSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.zoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Spawn Egg Broken"}, "json_string": "{\"text\":\"Zoglin Spawn Egg Broken\"}"}}, "u.piston": {"CriteriaName": "minecraft.used:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Used"}, "json_string": "{\"text\":\"Piston Used\"}"}}, "q.campfire": {"CriteriaName": "minecraft.dropped:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Dropped"}, "json_string": "{\"text\":\"Campfire Dropped\"}"}}, "b.stoneSlab": {"CriteriaName": "minecraft.broken:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Broken"}, "json_string": "{\"text\":\"Stone Slab Broken\"}"}}, "c.smallDripleaf": {"CriteriaName": "minecraft.crafted:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Crafted"}, "json_string": "{\"text\":\"Small Dripleaf Crafted\"}"}}, "m.cyanBed": {"CriteriaName": "minecraft.mined:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Mined"}, "json_string": "{\"text\":\"Cyan Bed Mined\"}"}}, "m.limeCarpet": {"CriteriaName": "minecraft.mined:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Mined"}, "json_string": "{\"text\":\"Lime Carpet Mined\"}"}}, "p.polishedDeepslateStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Picked Up\"}"}}, "m.crimsonButton": {"CriteriaName": "minecraft.mined:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Mined"}, "json_string": "{\"text\":\"Crimson Button Mined\"}"}}, "q.elytra": {"CriteriaName": "minecraft.dropped:minecraft.elytra", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elytra Dropped"}, "json_string": "{\"text\":\"Elytra Dropped\"}"}}, "c.crimsonSign": {"CriteriaName": "minecraft.crafted:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Crafted"}, "json_string": "{\"text\":\"Crimson Sign Crafted\"}"}}, "k.enderman": {"CriteriaName": "minecraft.killed:minecraft.enderman", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Killed"}, "json_string": "{\"text\":\"Enderman Killed\"}"}}, "b.cobbledDeepslateWall": {"CriteriaName": "minecraft.broken:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Broken"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Broken\"}"}}, "u.polishedGranite": {"CriteriaName": "minecraft.used:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Used"}, "json_string": "{\"text\":\"Polished Granite Used\"}"}}, "c.birchLeaves": {"CriteriaName": "minecraft.crafted:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Crafted"}, "json_string": "{\"text\":\"Birch Leaves Crafted\"}"}}, "m.daylightDetector": {"CriteriaName": "minecraft.mined:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Mined"}, "json_string": "{\"text\":\"Daylight Detector Mined\"}"}}, "u.infestedStoneBricks": {"CriteriaName": "minecraft.used:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Used"}, "json_string": "{\"text\":\"Infested Stone Bricks Used\"}"}}, "m.graniteSlab": {"CriteriaName": "minecraft.mined:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Mined"}, "json_string": "{\"text\":\"Granite Slab Mined\"}"}}, "q.greenDye": {"CriteriaName": "minecraft.dropped:minecraft.green_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Dye Dropped"}, "json_string": "{\"text\":\"Green Dye Dropped\"}"}}, "u.diamondBoots": {"CriteriaName": "minecraft.used:minecraft.diamond_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Boots Used"}, "json_string": "{\"text\":\"Diamond Boots Used\"}"}}, "p.rawIronBlock": {"CriteriaName": "minecraft.picked_up:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Picked Up"}, "json_string": "{\"text\":\"Raw Iron Block Picked Up\"}"}}, "b.lavaBucket": {"CriteriaName": "minecraft.broken:minecraft.lava_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Bucket Broken"}, "json_string": "{\"text\":\"Lava Bucket Broken\"}"}}, "m.amethystBlock": {"CriteriaName": "minecraft.mined:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Mined"}, "json_string": "{\"text\":\"Amethyst Block Mined\"}"}}, "q.flintAndSteel": {"CriteriaName": "minecraft.dropped:minecraft.flint_and_steel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint And Steel Dropped"}, "json_string": "{\"text\":\"Flint And Steel Dropped\"}"}}, "c.blackStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Crafted"}, "json_string": "{\"text\":\"Black Stained Glass Crafted\"}"}}, "p.redSandstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Picked Up"}, "json_string": "{\"text\":\"Red Sandstone Stairs Picked Up\"}"}}, "q.ice": {"CriteriaName": "minecraft.dropped:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Dropped"}, "json_string": "{\"text\":\"Ice Dropped\"}"}}, "m.birchFenceGate": {"CriteriaName": "minecraft.mined:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Mined"}, "json_string": "{\"text\":\"Birch Fence Gate Mined\"}"}}, "q.compass": {"CriteriaName": "minecraft.dropped:minecraft.compass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Compass Dropped"}, "json_string": "{\"text\":\"Compass Dropped\"}"}}, "c.boneBlock": {"CriteriaName": "minecraft.crafted:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Crafted"}, "json_string": "{\"text\":\"Bone Block Crafted\"}"}}, "m.pottedDeadBush": {"CriteriaName": "minecraft.mined:minecraft.potted_dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Dead Bush Mined"}, "json_string": "{\"text\":\"Potted Dead Bush Mined\"}"}}, "b.sponge": {"CriteriaName": "minecraft.broken:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Broken"}, "json_string": "{\"text\":\"Sponge Broken\"}"}}, "q.cryingObsidian": {"CriteriaName": "minecraft.dropped:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Dropped"}, "json_string": "{\"text\":\"Crying Obsidian Dropped\"}"}}, "g.enchantItem": {"CriteriaName": "minecraft.custom:minecraft.enchant_item", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchant Item"}, "json_string": "{\"text\":\"Enchant Item\"}"}}, "m.oakFenceGate": {"CriteriaName": "minecraft.mined:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Mined"}, "json_string": "{\"text\":\"Oak Fence Gate Mined\"}"}}, "c.waxedCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Crafted\"}"}}, "b.acaciaDoor": {"CriteriaName": "minecraft.broken:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Broken"}, "json_string": "{\"text\":\"Acacia Door Broken\"}"}}, "q.enchantedGoldenApple": {"CriteriaName": "minecraft.dropped:minecraft.enchanted_golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Golden Apple Dropped"}, "json_string": "{\"text\":\"Enchanted Golden Apple Dropped\"}"}}, "u.darkPrismarineSlab": {"CriteriaName": "minecraft.used:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Used"}, "json_string": "{\"text\":\"Dark Prismarine Slab Used\"}"}}, "c.stoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Crafted"}, "json_string": "{\"text\":\"Stone Slab Crafted\"}"}}, "c.leatherHorseArmor": {"CriteriaName": "minecraft.crafted:minecraft.leather_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Horse Armor Crafted"}, "json_string": "{\"text\":\"Leather Horse Armor Crafted\"}"}}, "u.cobblestone": {"CriteriaName": "minecraft.used:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Used"}, "json_string": "{\"text\":\"Cobblestone Used\"}"}}, "c.weepingVines": {"CriteriaName": "minecraft.crafted:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Crafted"}, "json_string": "{\"text\":\"Weeping Vines Crafted\"}"}}, "q.blackBed": {"CriteriaName": "minecraft.dropped:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Dropped"}, "json_string": "{\"text\":\"Black Bed Dropped\"}"}}, "p.tropicalFishSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.tropical_fish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Tropical Fish Spawn Egg Picked Up\"}"}}, "b.tintedGlass": {"CriteriaName": "minecraft.broken:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Broken"}, "json_string": "{\"text\":\"Tinted Glass Broken\"}"}}, "b.codBucket": {"CriteriaName": "minecraft.broken:minecraft.cod_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Bucket Broken"}, "json_string": "{\"text\":\"Cod Bucket Broken\"}"}}, "p.honeycombBlock": {"CriteriaName": "minecraft.picked_up:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Picked Up"}, "json_string": "{\"text\":\"Honeycomb Block Picked Up\"}"}}, "u.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Used"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Used\"}"}}, "u.cookedBeef": {"CriteriaName": "minecraft.used:minecraft.cooked_beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Beef Used"}, "json_string": "{\"text\":\"Cooked Beef Used\"}"}}, "p.string": {"CriteriaName": "minecraft.picked_up:minecraft.string", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "String Picked Up"}, "json_string": "{\"text\":\"String Picked Up\"}"}}, "m.lilyPad": {"CriteriaName": "minecraft.mined:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Mined"}, "json_string": "{\"text\":\"Lily Pad Mined\"}"}}, "u.crimsonTrapdoor": {"CriteriaName": "minecraft.used:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Used"}, "json_string": "{\"text\":\"Crimson Trapdoor Used\"}"}}, "g.interactWithLectern": {"CriteriaName": "minecraft.custom:minecraft.interact_with_lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Lectern"}, "json_string": "{\"text\":\"Interact with Lectern\"}"}}, "u.polishedDeepslate": {"CriteriaName": "minecraft.used:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Used"}, "json_string": "{\"text\":\"Polished Deepslate Used\"}"}}, "m.smoothStoneSlab": {"CriteriaName": "minecraft.mined:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Mined"}, "json_string": "{\"text\":\"Smooth Stone Slab Mined\"}"}}, "c.muleSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.mule_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Spawn Egg Crafted"}, "json_string": "{\"text\":\"Mule Spawn Egg Crafted\"}"}}, "b.netherWartBlock": {"CriteriaName": "minecraft.broken:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Broken"}, "json_string": "{\"text\":\"Nether Wart Block Broken\"}"}}, "p.ironAxe": {"CriteriaName": "minecraft.picked_up:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Axe Picked Up"}, "json_string": "{\"text\":\"Iron Axe Picked Up\"}"}}, "p.deepslateTileSlab": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Picked Up"}, "json_string": "{\"text\":\"Deepslate Tile Slab Picked Up\"}"}}, "u.dripstoneBlock": {"CriteriaName": "minecraft.used:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Used"}, "json_string": "{\"text\":\"Dripstone Block Used\"}"}}, "b.greenCandle": {"CriteriaName": "minecraft.broken:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Broken"}, "json_string": "{\"text\":\"Green Candle Broken\"}"}}, "d.dragonFireball": {"CriteriaName": "minecraft.killed_by:minecraft.dragon_fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Dragon Fireball"}, "json_string": "{\"text\":\"Killed by Dragon Fireball\"}"}}, "m.bubbleCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.bubble_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Bubble Coral Wall Fan Mined\"}"}}, "p.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Picked Up\"}"}}, "b.grayBanner": {"CriteriaName": "minecraft.broken:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Broken"}, "json_string": "{\"text\":\"Gray Banner Broken\"}"}}, "k.leashKnot": {"CriteriaName": "minecraft.killed:minecraft.leash_knot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leash Knot Killed"}, "json_string": "{\"text\":\"Leash Knot Killed\"}"}}, "q.birchFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.birch_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Gate Dropped"}, "json_string": "{\"text\":\"Birch Fence Gate Dropped\"}"}}, "m.warpedFenceGate": {"CriteriaName": "minecraft.mined:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Mined"}, "json_string": "{\"text\":\"Warped Fence Gate Mined\"}"}}, "u.quartzPillar": {"CriteriaName": "minecraft.used:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Used"}, "json_string": "{\"text\":\"Quartz Pillar Used\"}"}}, "c.splashPotion": {"CriteriaName": "minecraft.crafted:minecraft.splash_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Splash Potion Crafted"}, "json_string": "{\"text\":\"Splash Potion Crafted\"}"}}, "p.gildedBlackstone": {"CriteriaName": "minecraft.picked_up:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Picked Up"}, "json_string": "{\"text\":\"Gilded Blackstone Picked Up\"}"}}, "b.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Broken"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Broken\"}"}}, "p.magentaConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Magenta Concrete Powder Picked Up\"}"}}, "u.cryingObsidian": {"CriteriaName": "minecraft.used:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Used"}, "json_string": "{\"text\":\"Crying Obsidian Used\"}"}}, "p.glisteringMelonSlice": {"CriteriaName": "minecraft.picked_up:minecraft.glistering_melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glistering Melon Slice Picked Up"}, "json_string": "{\"text\":\"Glistering Melon Slice Picked Up\"}"}}, "p.infestedStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Infested Stone Bricks Picked Up\"}"}}, "c.warpedSign": {"CriteriaName": "minecraft.crafted:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Crafted"}, "json_string": "{\"text\":\"Warped Sign Crafted\"}"}}, "m.soulSand": {"CriteriaName": "minecraft.mined:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Mined"}, "json_string": "{\"text\":\"Soul Sand Mined\"}"}}, "p.purpurSlab": {"CriteriaName": "minecraft.picked_up:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Picked Up"}, "json_string": "{\"text\":\"Purpur Slab Picked Up\"}"}}, "m.petrifiedOakSlab": {"CriteriaName": "minecraft.mined:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Mined"}, "json_string": "{\"text\":\"Petrified Oak Slab Mined\"}"}}, "q.musicDiscStrad": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_strad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Strad Dropped"}, "json_string": "{\"text\":\"Music Disc Strad Dropped\"}"}}, "u.clayBall": {"CriteriaName": "minecraft.used:minecraft.clay_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Ball Used"}, "json_string": "{\"text\":\"Clay Ball Used\"}"}}, "m.pottedOrangeTulip": {"CriteriaName": "minecraft.mined:minecraft.potted_orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Orange Tulip Mined"}, "json_string": "{\"text\":\"Potted Orange Tulip Mined\"}"}}, "q.pinkStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Dropped\"}"}}, "q.polishedAndesite": {"CriteriaName": "minecraft.dropped:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Dropped"}, "json_string": "{\"text\":\"Polished Andesite Dropped\"}"}}, "b.driedKelp": {"CriteriaName": "minecraft.broken:minecraft.dried_kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Broken"}, "json_string": "{\"text\":\"Dried Kelp Broken\"}"}}, "m.redWool": {"CriteriaName": "minecraft.mined:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Mined"}, "json_string": "{\"text\":\"Red Wool Mined\"}"}}, "m.cyanWallBanner": {"CriteriaName": "minecraft.mined:minecraft.cyan_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wall Banner Mined"}, "json_string": "{\"text\":\"Cyan Wall Banner Mined\"}"}}, "q.cartographyTable": {"CriteriaName": "minecraft.dropped:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Dropped"}, "json_string": "{\"text\":\"Cartography Table Dropped\"}"}}, "p.silverfishSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.silverfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Silverfish Spawn Egg Picked Up\"}"}}, "q.pinkDye": {"CriteriaName": "minecraft.dropped:minecraft.pink_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Dye Dropped"}, "json_string": "{\"text\":\"Pink Dye Dropped\"}"}}, "b.cookedChicken": {"CriteriaName": "minecraft.broken:minecraft.cooked_chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Chicken Broken"}, "json_string": "{\"text\":\"Cooked Chicken Broken\"}"}}, "b.crimsonTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Broken"}, "json_string": "{\"text\":\"Crimson Trapdoor Broken\"}"}}, "b.sandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Broken"}, "json_string": "{\"text\":\"Sandstone Slab Broken\"}"}}, "c.soulSoil": {"CriteriaName": "minecraft.crafted:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Crafted"}, "json_string": "{\"text\":\"Soul Soil Crafted\"}"}}, "p.spruceFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Picked Up"}, "json_string": "{\"text\":\"Spruce Fence Gate Picked Up\"}"}}, "b.crimsonFenceGate": {"CriteriaName": "minecraft.broken:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Broken"}, "json_string": "{\"text\":\"Crimson Fence Gate Broken\"}"}}, "m.brainCoral": {"CriteriaName": "minecraft.mined:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Mined"}, "json_string": "{\"text\":\"Brain Coral Mined\"}"}}, "c.crimsonRoots": {"CriteriaName": "minecraft.crafted:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Crafted"}, "json_string": "{\"text\":\"Crimson Roots Crafted\"}"}}, "b.slimeSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.slime_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Spawn Egg Broken"}, "json_string": "{\"text\":\"Slime Spawn Egg Broken\"}"}}, "b.dirt": {"CriteriaName": "minecraft.broken:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Broken"}, "json_string": "{\"text\":\"Dirt Broken\"}"}}, "c.quartz": {"CriteriaName": "minecraft.crafted:minecraft.quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Crafted"}, "json_string": "{\"text\":\"Quartz Crafted\"}"}}, "u.pandaSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.panda_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Spawn Egg Used"}, "json_string": "{\"text\":\"Panda Spawn Egg Used\"}"}}, "b.blueCarpet": {"CriteriaName": "minecraft.broken:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Broken"}, "json_string": "{\"text\":\"Blue Carpet Broken\"}"}}, "u.polishedDeepslateWall": {"CriteriaName": "minecraft.used:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Used"}, "json_string": "{\"text\":\"Polished Deepslate Wall Used\"}"}}, "q.glowLichen": {"CriteriaName": "minecraft.dropped:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Dropped"}, "json_string": "{\"text\":\"Glow Lichen Dropped\"}"}}, "u.mossyCobblestoneStairs": {"CriteriaName": "minecraft.used:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Used"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Used\"}"}}, "p.blueCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Picked Up"}, "json_string": "{\"text\":\"Blue Carpet Picked Up\"}"}}, "u.magentaBanner": {"CriteriaName": "minecraft.used:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Used"}, "json_string": "{\"text\":\"Magenta Banner Used\"}"}}, "leafDec.dummy": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.dummy"}, "json_string": "{\"text\":\"leafDec.dummy\"}"}}, "c.brownWool": {"CriteriaName": "minecraft.crafted:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Crafted"}, "json_string": "{\"text\":\"Brown Wool Crafted\"}"}}, "b.basalt": {"CriteriaName": "minecraft.broken:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Broken"}, "json_string": "{\"text\":\"Basalt Broken\"}"}}, "d.snowball": {"CriteriaName": "minecraft.killed_by:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Snowball"}, "json_string": "{\"text\":\"Killed by Snowball\"}"}}, "m.cactus": {"CriteriaName": "minecraft.mined:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Mined"}, "json_string": "{\"text\":\"Cactus Mined\"}"}}, "q.stick": {"CriteriaName": "minecraft.dropped:minecraft.stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stick Dropped"}, "json_string": "{\"text\":\"Stick Dropped\"}"}}, "q.hornCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Dropped"}, "json_string": "{\"text\":\"Horn Coral Block Dropped\"}"}}, "u.axolotlSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.axolotl_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Spawn Egg Used"}, "json_string": "{\"text\":\"Axolotl Spawn Egg Used\"}"}}, "m.quartzSlab": {"CriteriaName": "minecraft.mined:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Mined"}, "json_string": "{\"text\":\"Quartz Slab Mined\"}"}}, "c.bubbleCoral": {"CriteriaName": "minecraft.crafted:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Crafted"}, "json_string": "{\"text\":\"Bubble Coral Crafted\"}"}}, "q.oakFence": {"CriteriaName": "minecraft.dropped:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Dropped"}, "json_string": "{\"text\":\"Oak Fence Dropped\"}"}}, "p.goldenHoe": {"CriteriaName": "minecraft.picked_up:minecraft.golden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Hoe Picked Up"}, "json_string": "{\"text\":\"Golden Hoe Picked Up\"}"}}, "d.witherSkull": {"CriteriaName": "minecraft.killed_by:minecraft.wither_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Wither Skull"}, "json_string": "{\"text\":\"Killed by Wither Skull\"}"}}, "d.vex": {"CriteriaName": "minecraft.killed_by:minecraft.vex", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Vex"}, "json_string": "{\"text\":\"Killed by Vex\"}"}}, "u.grassBlock": {"CriteriaName": "minecraft.used:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Used"}, "json_string": "{\"text\":\"Grass Block Used\"}"}}, "m.purpleStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Mined"}, "json_string": "{\"text\":\"Purple Stained Glass Mined\"}"}}, "u.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Used"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Used\"}"}}, "u.musicDiscPigstep": {"CriteriaName": "minecraft.used:minecraft.music_disc_pigstep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Pigstep Used"}, "json_string": "{\"text\":\"Music Disc Pigstep Used\"}"}}, "p.sunflower": {"CriteriaName": "minecraft.picked_up:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Picked Up"}, "json_string": "{\"text\":\"Sunflower Picked Up\"}"}}, "k.spawnerMinecart": {"CriteriaName": "minecraft.killed:minecraft.spawner_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Minecart Killed"}, "json_string": "{\"text\":\"Spawner Minecart Killed\"}"}}, "b.lightGrayStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Broken"}, "json_string": "{\"text\":\"Light Gray Stained Glass Broken\"}"}}, "p.musicDiscOtherside": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_otherside", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Otherside Picked Up"}, "json_string": "{\"text\":\"Music Disc Otherside Picked Up\"}"}}, "u.dragonEgg": {"CriteriaName": "minecraft.used:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Used"}, "json_string": "{\"text\":\"Dragon Egg Used\"}"}}, "q.strippedSpruceWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Dropped"}, "json_string": "{\"text\":\"Stripped Spruce Wood Dropped\"}"}}, "q.warpedSign": {"CriteriaName": "minecraft.dropped:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Dropped"}, "json_string": "{\"text\":\"Warped Sign Dropped\"}"}}, "p.redSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Picked Up"}, "json_string": "{\"text\":\"Red Sandstone Picked Up\"}"}}, "q.oakWood": {"CriteriaName": "minecraft.dropped:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Dropped"}, "json_string": "{\"text\":\"Oak Wood Dropped\"}"}}, "u.lightGrayConcrete": {"CriteriaName": "minecraft.used:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Used"}, "json_string": "{\"text\":\"Light Gray Concrete Used\"}"}}, "q.blueOrchid": {"CriteriaName": "minecraft.dropped:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Dropped"}, "json_string": "{\"text\":\"Blue Orchid Dropped\"}"}}, "d.blaze": {"CriteriaName": "minecraft.killed_by:minecraft.blaze", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Blaze"}, "json_string": "{\"text\":\"Killed by Blaze\"}"}}, "q.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Dropped\"}"}}, "m.purpurPillar": {"CriteriaName": "minecraft.mined:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Mined"}, "json_string": "{\"text\":\"Purpur Pillar Mined\"}"}}, "q.goatSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.goat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat Spawn Egg Dropped"}, "json_string": "{\"text\":\"Goat Spawn Egg Dropped\"}"}}, "c.goldOre": {"CriteriaName": "minecraft.crafted:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Crafted"}, "json_string": "{\"text\":\"Gold Ore Crafted\"}"}}, "q.birchButton": {"CriteriaName": "minecraft.dropped:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Dropped"}, "json_string": "{\"text\":\"Birch Button Dropped\"}"}}, "q.peony": {"CriteriaName": "minecraft.dropped:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Dropped"}, "json_string": "{\"text\":\"Peony Dropped\"}"}}, "q.redNetherBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Dropped"}, "json_string": "{\"text\":\"Red Nether Brick Wall Dropped\"}"}}, "q.endermanSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.enderman_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Spawn Egg Dropped"}, "json_string": "{\"text\":\"Enderman Spawn Egg Dropped\"}"}}, "m.snow": {"CriteriaName": "minecraft.mined:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Mined"}, "json_string": "{\"text\":\"Snow Mined\"}"}}, "q.mycelium": {"CriteriaName": "minecraft.dropped:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Dropped"}, "json_string": "{\"text\":\"Mycelium Dropped\"}"}}, "m.floweringAzalea": {"CriteriaName": "minecraft.mined:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Mined"}, "json_string": "{\"text\":\"Flowering Azalea Mined\"}"}}, "b.ironTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Broken"}, "json_string": "{\"text\":\"Iron Trapdoor Broken\"}"}}, "u.goldenBoots": {"CriteriaName": "minecraft.used:minecraft.golden_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Boots Used"}, "json_string": "{\"text\":\"Golden Boots Used\"}"}}, "m.crimsonFungus": {"CriteriaName": "minecraft.mined:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Mined"}, "json_string": "{\"text\":\"Crimson Fungus Mined\"}"}}, "b.pumpkin": {"CriteriaName": "minecraft.broken:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Broken"}, "json_string": "{\"text\":\"Pumpkin Broken\"}"}}, "p.blueConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Blue Concrete Powder Picked Up\"}"}}, "c.prismarineCrystals": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_crystals", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crystals Crafted"}, "json_string": "{\"text\":\"Prismarine Crystals Crafted\"}"}}, "p.writableBook": {"CriteriaName": "minecraft.picked_up:minecraft.writable_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Writable Book Picked Up"}, "json_string": "{\"text\":\"Writable Book Picked Up\"}"}}, "d.egg": {"CriteriaName": "minecraft.killed_by:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Egg"}, "json_string": "{\"text\":\"Killed by Egg\"}"}}, "m.pottedWarpedFungus": {"CriteriaName": "minecraft.mined:minecraft.potted_warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Warped Fungus Mined"}, "json_string": "{\"text\":\"Potted Warped Fungus Mined\"}"}}, "q.andesite": {"CriteriaName": "minecraft.dropped:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Dropped"}, "json_string": "{\"text\":\"Andesite Dropped\"}"}}, "b.redStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Red Stained Glass Pane Broken\"}"}}, "q.magmaBlock": {"CriteriaName": "minecraft.dropped:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Dropped"}, "json_string": "{\"text\":\"Magma Block Dropped\"}"}}, "g.interactWithStonecutter": {"CriteriaName": "minecraft.custom:minecraft.interact_with_stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Stonecutter"}, "json_string": "{\"text\":\"Interact with Stonecutter\"}"}}, "p.smoothStone": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Picked Up"}, "json_string": "{\"text\":\"Smooth Stone Picked Up\"}"}}, "q.stickyPiston": {"CriteriaName": "minecraft.dropped:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Dropped"}, "json_string": "{\"text\":\"Sticky Piston Dropped\"}"}}, "u.orangeCandle": {"CriteriaName": "minecraft.used:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Used"}, "json_string": "{\"text\":\"Orange Candle Used\"}"}}, "u.darkOakDoor": {"CriteriaName": "minecraft.used:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Used"}, "json_string": "{\"text\":\"Dark Oak Door Used\"}"}}, "q.glowInkSac": {"CriteriaName": "minecraft.dropped:minecraft.glow_ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Ink Sac Dropped"}, "json_string": "{\"text\":\"Glow Ink Sac Dropped\"}"}}, "q.deadHornCoral": {"CriteriaName": "minecraft.dropped:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Dropped"}, "json_string": "{\"text\":\"Dead Horn Coral Dropped\"}"}}, "b.melonSlice": {"CriteriaName": "minecraft.broken:minecraft.melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Slice Broken"}, "json_string": "{\"text\":\"Melon Slice Broken\"}"}}, "u.striderSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.strider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Spawn Egg Used"}, "json_string": "{\"text\":\"Strider Spawn Egg Used\"}"}}, "u.salmon": {"CriteriaName": "minecraft.used:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Used"}, "json_string": "{\"text\":\"Salmon Used\"}"}}, "q.purpleCarpet": {"CriteriaName": "minecraft.dropped:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Dropped"}, "json_string": "{\"text\":\"Purple Carpet Dropped\"}"}}, "p.spruceDoor": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Picked Up"}, "json_string": "{\"text\":\"Spruce Door Picked Up\"}"}}, "m.magentaWallBanner": {"CriteriaName": "minecraft.mined:minecraft.magenta_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wall Banner Mined"}, "json_string": "{\"text\":\"Magenta Wall Banner Mined\"}"}}, "p.orangeTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Picked Up"}, "json_string": "{\"text\":\"Orange Terracotta Picked Up\"}"}}, "q.ironLeggings": {"CriteriaName": "minecraft.dropped:minecraft.iron_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Leggings Dropped"}, "json_string": "{\"text\":\"Iron Leggings Dropped\"}"}}, "q.inkSac": {"CriteriaName": "minecraft.dropped:minecraft.ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ink Sac Dropped"}, "json_string": "{\"text\":\"Ink Sac Dropped\"}"}}, "b.purpleConcrete": {"CriteriaName": "minecraft.broken:minecraft.purple_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Broken"}, "json_string": "{\"text\":\"Purple Concrete Broken\"}"}}, "q.andesiteSlab": {"CriteriaName": "minecraft.dropped:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Dropped"}, "json_string": "{\"text\":\"Andesite Slab Dropped\"}"}}, "c.darkOakSign": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Crafted"}, "json_string": "{\"text\":\"Dark Oak Sign Crafted\"}"}}, "q.musicDisc13": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_13", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 13 Dropped"}, "json_string": "{\"text\":\"Music Disc 13 Dropped\"}"}}, "q.musicDisc11": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_11", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 11 Dropped"}, "json_string": "{\"text\":\"Music Disc 11 Dropped\"}"}}, "m.bedrock": {"CriteriaName": "minecraft.mined:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Mined"}, "json_string": "{\"text\":\"Bedrock Mined\"}"}}, "p.birchSlab": {"CriteriaName": "minecraft.picked_up:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Picked Up"}, "json_string": "{\"text\":\"Birch Slab Picked Up\"}"}}, "q.wolfSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.wolf_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Spawn Egg Dropped"}, "json_string": "{\"text\":\"Wolf Spawn Egg Dropped\"}"}}, "q.blazePowder": {"CriteriaName": "minecraft.dropped:minecraft.blaze_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Powder Dropped"}, "json_string": "{\"text\":\"Blaze Powder Dropped\"}"}}, "c.structureVoid": {"CriteriaName": "minecraft.crafted:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Crafted"}, "json_string": "{\"text\":\"Structure Void Crafted\"}"}}, "q.skeletonSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Spawn Egg Dropped"}, "json_string": "{\"text\":\"Skeleton Spawn Egg Dropped\"}"}}, "c.deadBush": {"CriteriaName": "minecraft.crafted:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Crafted"}, "json_string": "{\"text\":\"Dead Bush Crafted\"}"}}, "k.tntMinecart": {"CriteriaName": "minecraft.killed:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Killed"}, "json_string": "{\"text\":\"Tnt Minecart Killed\"}"}}, "b.ironBoots": {"CriteriaName": "minecraft.broken:minecraft.iron_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Boots Broken"}, "json_string": "{\"text\":\"Iron Boots Broken\"}"}}, "k.llamaSpit": {"CriteriaName": "minecraft.killed:minecraft.llama_spit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spit Killed"}, "json_string": "{\"text\":\"Llama Spit Killed\"}"}}, "b.whiteTulip": {"CriteriaName": "minecraft.broken:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Broken"}, "json_string": "{\"text\":\"White Tulip Broken\"}"}}, "m.limeCandle": {"CriteriaName": "minecraft.mined:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Mined"}, "json_string": "{\"text\":\"Lime Candle Mined\"}"}}, "b.purpleBanner": {"CriteriaName": "minecraft.broken:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Broken"}, "json_string": "{\"text\":\"Purple Banner Broken\"}"}}, "u.warpedSlab": {"CriteriaName": "minecraft.used:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Used"}, "json_string": "{\"text\":\"Warped Slab Used\"}"}}, "b.deadTubeCoral": {"CriteriaName": "minecraft.broken:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Broken"}, "json_string": "{\"text\":\"Dead Tube Coral Broken\"}"}}, "q.barrel": {"CriteriaName": "minecraft.dropped:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Dropped"}, "json_string": "{\"text\":\"Barrel Dropped\"}"}}, "b.soulTorch": {"CriteriaName": "minecraft.broken:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Broken"}, "json_string": "{\"text\":\"Soul Torch Broken\"}"}}, "m.oakSign": {"CriteriaName": "minecraft.mined:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Mined"}, "json_string": "{\"text\":\"Oak Sign Mined\"}"}}, "p.goldenPickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.golden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Pickaxe Picked Up"}, "json_string": "{\"text\":\"Golden Pickaxe Picked Up\"}"}}, "b.arrow": {"CriteriaName": "minecraft.broken:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Broken"}, "json_string": "{\"text\":\"Arrow Broken\"}"}}, "c.strippedOakWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Crafted"}, "json_string": "{\"text\":\"Stripped Oak Wood Crafted\"}"}}, "u.strippedOakWood": {"CriteriaName": "minecraft.used:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Used"}, "json_string": "{\"text\":\"Stripped Oak Wood Used\"}"}}, "u.waxedWeatheredCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Used"}, "json_string": "{\"text\":\"Waxed Weathered Copper Used\"}"}}, "u.yellowWool": {"CriteriaName": "minecraft.used:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Used"}, "json_string": "{\"text\":\"Yellow Wool Used\"}"}}, "c.weatheredCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Crafted\"}"}}, "b.lightGrayTerracotta": {"CriteriaName": "minecraft.broken:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Broken"}, "json_string": "{\"text\":\"Light Gray Terracotta Broken\"}"}}, "u.musicDiscStrad": {"CriteriaName": "minecraft.used:minecraft.music_disc_strad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Strad Used"}, "json_string": "{\"text\":\"Music Disc Strad Used\"}"}}, "b.purpleStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Broken\"}"}}, "q.polishedAndesiteSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Dropped"}, "json_string": "{\"text\":\"Polished Andesite Slab Dropped\"}"}}, "u.bread": {"CriteriaName": "minecraft.used:minecraft.bread", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bread Used"}, "json_string": "{\"text\":\"Bread Used\"}"}}, "tc.damage": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.damage"}, "json_string": "{\"text\":\"tc.damage\"}"}}, "b.crossbow": {"CriteriaName": "minecraft.broken:minecraft.crossbow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crossbow Broken"}, "json_string": "{\"text\":\"Crossbow Broken\"}"}}, "c.diamondHorseArmor": {"CriteriaName": "minecraft.crafted:minecraft.diamond_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Horse Armor Crafted"}, "json_string": "{\"text\":\"Diamond Horse Armor Crafted\"}"}}, "u.cookie": {"CriteriaName": "minecraft.used:minecraft.cookie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cookie Used"}, "json_string": "{\"text\":\"Cookie Used\"}"}}, "p.lapisBlock": {"CriteriaName": "minecraft.picked_up:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Picked Up"}, "json_string": "{\"text\":\"Lapis Block Picked Up\"}"}}, "m.oakLog": {"CriteriaName": "minecraft.mined:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Mined"}, "json_string": "{\"text\":\"Oak Log Mined\"}"}}, "m.limeConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Mined"}, "json_string": "{\"text\":\"Lime Concrete Powder Mined\"}"}}, "b.redstoneOre": {"CriteriaName": "minecraft.broken:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Broken"}, "json_string": "{\"text\":\"Redstone Ore Broken\"}"}}, "c.snow": {"CriteriaName": "minecraft.crafted:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Crafted"}, "json_string": "{\"text\":\"Snow Crafted\"}"}}, "d.chicken": {"CriteriaName": "minecraft.killed_by:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Chicken"}, "json_string": "{\"text\":\"Killed by Chicken\"}"}}, "g.fillCauldron": {"CriteriaName": "minecraft.custom:minecraft.fill_cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fill Cauldron"}, "json_string": "{\"text\":\"Fill Cauldron\"}"}}, "u.deepslateCoalOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Used"}, "json_string": "{\"text\":\"Deepslate Coal Ore Used\"}"}}, "p.trident": {"CriteriaName": "minecraft.picked_up:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Picked Up"}, "json_string": "{\"text\":\"Trident Picked Up\"}"}}, "m.voidAir": {"CriteriaName": "minecraft.mined:minecraft.void_air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Void Air Mined"}, "json_string": "{\"text\":\"Void Air Mined\"}"}}, "u.grayStainedGlass": {"CriteriaName": "minecraft.used:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Used"}, "json_string": "{\"text\":\"Gray Stained Glass Used\"}"}}, "u.sponge": {"CriteriaName": "minecraft.used:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Used"}, "json_string": "{\"text\":\"Sponge Used\"}"}}, "q.blueGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Dropped\"}"}}, "u.tropicalFishSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.tropical_fish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Spawn Egg Used"}, "json_string": "{\"text\":\"Tropical Fish Spawn Egg Used\"}"}}, "u.greenStainedGlass": {"CriteriaName": "minecraft.used:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Used"}, "json_string": "{\"text\":\"Green Stained Glass Used\"}"}}, "q.polishedDeepslate": {"CriteriaName": "minecraft.dropped:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Dropped"}, "json_string": "{\"text\":\"Polished Deepslate Dropped\"}"}}, "m.melonStem": {"CriteriaName": "minecraft.mined:minecraft.melon_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Stem Mined"}, "json_string": "{\"text\":\"Melon Stem Mined\"}"}}, "p.jungleDoor": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Picked Up"}, "json_string": "{\"text\":\"Jungle Door Picked Up\"}"}}, "q.bamboo": {"CriteriaName": "minecraft.dropped:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Dropped"}, "json_string": "{\"text\":\"Bamboo Dropped\"}"}}, "q.blackGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Black Glazed Terracotta Dropped\"}"}}, "b.stoneBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Broken"}, "json_string": "{\"text\":\"Stone Brick Slab Broken\"}"}}, "p.observer": {"CriteriaName": "minecraft.picked_up:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Picked Up"}, "json_string": "{\"text\":\"Observer Picked Up\"}"}}, "p.soulLantern": {"CriteriaName": "minecraft.picked_up:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Picked Up"}, "json_string": "{\"text\":\"Soul Lantern Picked Up\"}"}}, "m.brickSlab": {"CriteriaName": "minecraft.mined:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Mined"}, "json_string": "{\"text\":\"Brick Slab Mined\"}"}}, "c.pinkBed": {"CriteriaName": "minecraft.crafted:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Crafted"}, "json_string": "{\"text\":\"Pink Bed Crafted\"}"}}, "u.crimsonSign": {"CriteriaName": "minecraft.used:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Used"}, "json_string": "{\"text\":\"Crimson Sign Used\"}"}}, "m.greenCandleCake": {"CriteriaName": "minecraft.mined:minecraft.green_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Cake Mined"}, "json_string": "{\"text\":\"Green Candle Cake Mined\"}"}}, "b.chippedAnvil": {"CriteriaName": "minecraft.broken:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Broken"}, "json_string": "{\"text\":\"Chipped Anvil Broken\"}"}}, "u.donkeySpawnEgg": {"CriteriaName": "minecraft.used:minecraft.donkey_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Spawn Egg Used"}, "json_string": "{\"text\":\"Donkey Spawn Egg Used\"}"}}, "q.lightBlueConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Dropped"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Dropped\"}"}}, "d.ironGolem": {"CriteriaName": "minecraft.killed_by:minecraft.iron_golem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Iron Golem"}, "json_string": "{\"text\":\"Killed by Iron Golem\"}"}}, "u.oakLeaves": {"CriteriaName": "minecraft.used:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Used"}, "json_string": "{\"text\":\"Oak Leaves Used\"}"}}, "u.warpedHyphae": {"CriteriaName": "minecraft.used:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Used"}, "json_string": "{\"text\":\"Warped Hyphae Used\"}"}}, "u.jungleLog": {"CriteriaName": "minecraft.used:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Used"}, "json_string": "{\"text\":\"Jungle Log Used\"}"}}, "m.witherSkeletonSkull": {"CriteriaName": "minecraft.mined:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Mined"}, "json_string": "{\"text\":\"Wither Skeleton Skull Mined\"}"}}, "p.spruceButton": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Picked Up"}, "json_string": "{\"text\":\"Spruce Button Picked Up\"}"}}, "b.redStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Broken"}, "json_string": "{\"text\":\"Red Stained Glass Broken\"}"}}, "u.stoneShovel": {"CriteriaName": "minecraft.used:minecraft.stone_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Shovel Used"}, "json_string": "{\"text\":\"Stone Shovel Used\"}"}}, "p.amethystCluster": {"CriteriaName": "minecraft.picked_up:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Picked Up"}, "json_string": "{\"text\":\"Amethyst Cluster Picked Up\"}"}}, "m.darkOakLog": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Mined"}, "json_string": "{\"text\":\"Dark Oak Log Mined\"}"}}, "u.minecart": {"CriteriaName": "minecraft.used:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Used"}, "json_string": "{\"text\":\"Minecart Used\"}"}}, "u.acaciaSapling": {"CriteriaName": "minecraft.used:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Used"}, "json_string": "{\"text\":\"Acacia Sapling Used\"}"}}, "c.deadBrainCoral": {"CriteriaName": "minecraft.crafted:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Crafted"}, "json_string": "{\"text\":\"Dead Brain Coral Crafted\"}"}}, "c.wheat": {"CriteriaName": "minecraft.crafted:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Crafted"}, "json_string": "{\"text\":\"Wheat Crafted\"}"}}, "c.gildedBlackstone": {"CriteriaName": "minecraft.crafted:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Crafted"}, "json_string": "{\"text\":\"Gilded Blackstone Crafted\"}"}}, "m.magentaShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Mined"}, "json_string": "{\"text\":\"Magenta Shulker Box Mined\"}"}}, "m.blueBed": {"CriteriaName": "minecraft.mined:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Mined"}, "json_string": "{\"text\":\"Blue Bed Mined\"}"}}, "u.beacon": {"CriteriaName": "minecraft.used:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Used"}, "json_string": "{\"text\":\"Beacon Used\"}"}}, "m.cutSandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Mined"}, "json_string": "{\"text\":\"Cut Sandstone Slab Mined\"}"}}, "b.chorusFlower": {"CriteriaName": "minecraft.broken:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Broken"}, "json_string": "{\"text\":\"Chorus Flower Broken\"}"}}, "c.magmaBlock": {"CriteriaName": "minecraft.crafted:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Crafted"}, "json_string": "{\"text\":\"Magma Block Crafted\"}"}}, "c.mutton": {"CriteriaName": "minecraft.crafted:minecraft.mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mutton Crafted"}, "json_string": "{\"text\":\"Mutton Crafted\"}"}}, "m.purpleStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Mined\"}"}}, "q.llamaSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spawn Egg Dropped"}, "json_string": "{\"text\":\"Llama Spawn Egg Dropped\"}"}}, "q.crimsonPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Dropped"}, "json_string": "{\"text\":\"Crimson Pressure Plate Dropped\"}"}}, "b.warpedFenceGate": {"CriteriaName": "minecraft.broken:minecraft.warped_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Gate Broken"}, "json_string": "{\"text\":\"Warped Fence Gate Broken\"}"}}, "c.goldenSword": {"CriteriaName": "minecraft.crafted:minecraft.golden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Sword Crafted"}, "json_string": "{\"text\":\"Golden Sword Crafted\"}"}}, "m.waxedCopperBlock": {"CriteriaName": "minecraft.mined:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Mined"}, "json_string": "{\"text\":\"Waxed Copper Block Mined\"}"}}, "p.purpleWool": {"CriteriaName": "minecraft.picked_up:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Picked Up"}, "json_string": "{\"text\":\"Purple Wool Picked Up\"}"}}, "u.oakTrapdoor": {"CriteriaName": "minecraft.used:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Used"}, "json_string": "{\"text\":\"Oak Trapdoor Used\"}"}}, "b.charcoal": {"CriteriaName": "minecraft.broken:minecraft.charcoal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Charcoal Broken"}, "json_string": "{\"text\":\"Charcoal Broken\"}"}}, "b.stonePressurePlate": {"CriteriaName": "minecraft.broken:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Broken"}, "json_string": "{\"text\":\"Stone Pressure Plate Broken\"}"}}, "u.lightGrayBed": {"CriteriaName": "minecraft.used:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Used"}, "json_string": "{\"text\":\"Light Gray Bed Used\"}"}}, "u.goldOre": {"CriteriaName": "minecraft.used:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Used"}, "json_string": "{\"text\":\"Gold Ore Used\"}"}}, "u.clock": {"CriteriaName": "minecraft.used:minecraft.clock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clock Used"}, "json_string": "{\"text\":\"Clock Used\"}"}}, "u.yellowShulkerBox": {"CriteriaName": "minecraft.used:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Used"}, "json_string": "{\"text\":\"Yellow Shulker Box Used\"}"}}, "p.smoothRedSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Picked Up"}, "json_string": "{\"text\":\"Smooth Red Sandstone Picked Up\"}"}}, "q.roseBush": {"CriteriaName": "minecraft.dropped:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Dropped"}, "json_string": "{\"text\":\"Rose Bush Dropped\"}"}}, "q.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Dropped\"}"}}, "u.blackStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Used"}, "json_string": "{\"text\":\"Black Stained Glass Pane Used\"}"}}, "q.floweringAzalea": {"CriteriaName": "minecraft.dropped:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Dropped"}, "json_string": "{\"text\":\"Flowering Azalea Dropped\"}"}}, "b.netherWart": {"CriteriaName": "minecraft.broken:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Broken"}, "json_string": "{\"text\":\"Nether Wart Broken\"}"}}, "b.warpedHyphae": {"CriteriaName": "minecraft.broken:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Broken"}, "json_string": "{\"text\":\"Warped Hyphae Broken\"}"}}, "m.redSand": {"CriteriaName": "minecraft.mined:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Mined"}, "json_string": "{\"text\":\"Red Sand Mined\"}"}}, "p.brownGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Picked Up\"}"}}, "b.acaciaSlab": {"CriteriaName": "minecraft.broken:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Broken"}, "json_string": "{\"text\":\"Acacia Slab Broken\"}"}}, "b.oakBoat": {"CriteriaName": "minecraft.broken:minecraft.oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Boat Broken"}, "json_string": "{\"text\":\"Oak Boat Broken\"}"}}, "q.stoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Dropped"}, "json_string": "{\"text\":\"Stone Stairs Dropped\"}"}}, "p.redNetherBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Picked Up"}, "json_string": "{\"text\":\"Red Nether Brick Wall Picked Up\"}"}}, "k.llama": {"CriteriaName": "minecraft.killed:minecraft.llama", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Killed"}, "json_string": "{\"text\":\"Llama Killed\"}"}}, "m.polishedDeepslateSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Mined"}, "json_string": "{\"text\":\"Polished Deepslate Slab Mined\"}"}}, "m.smoothBasalt": {"CriteriaName": "minecraft.mined:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Mined"}, "json_string": "{\"text\":\"Smooth Basalt Mined\"}"}}, "b.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Broken\"}"}}, "p.blueCandle": {"CriteriaName": "minecraft.picked_up:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Picked Up"}, "json_string": "{\"text\":\"Blue Candle Picked Up\"}"}}, "p.greenWool": {"CriteriaName": "minecraft.picked_up:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Picked Up"}, "json_string": "{\"text\":\"Green Wool Picked Up\"}"}}, "c.deadBrainCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Crafted"}, "json_string": "{\"text\":\"Dead Brain Coral Block Crafted\"}"}}, "c.greenBanner": {"CriteriaName": "minecraft.crafted:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Crafted"}, "json_string": "{\"text\":\"Green Banner Crafted\"}"}}, "u.poppedChorusFruit": {"CriteriaName": "minecraft.used:minecraft.popped_chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Popped Chorus Fruit Used"}, "json_string": "{\"text\":\"Popped Chorus Fruit Used\"}"}}, "k.horse": {"CriteriaName": "minecraft.killed:minecraft.horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Killed"}, "json_string": "{\"text\":\"Horse Killed\"}"}}, "p.oakLog": {"CriteriaName": "minecraft.picked_up:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Picked Up"}, "json_string": "{\"text\":\"Oak Log Picked Up\"}"}}, "d.spider": {"CriteriaName": "minecraft.killed_by:minecraft.spider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Spider"}, "json_string": "{\"text\":\"Killed by Spider\"}"}}, "q.tubeCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Dropped"}, "json_string": "{\"text\":\"Tube Coral Fan Dropped\"}"}}, "b.netheriteAxe": {"CriteriaName": "minecraft.broken:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Axe Broken"}, "json_string": "{\"text\":\"Netherite Axe Broken\"}"}}, "c.limeStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Crafted\"}"}}, "m.brownStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Mined\"}"}}, "u.redConcretePowder": {"CriteriaName": "minecraft.used:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Used"}, "json_string": "{\"text\":\"Red Concrete Powder Used\"}"}}, "b.greenCarpet": {"CriteriaName": "minecraft.broken:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Broken"}, "json_string": "{\"text\":\"Green Carpet Broken\"}"}}, "m.dragonEgg": {"CriteriaName": "minecraft.mined:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Mined"}, "json_string": "{\"text\":\"Dragon Egg Mined\"}"}}, "m.magentaWool": {"CriteriaName": "minecraft.mined:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Mined"}, "json_string": "{\"text\":\"Magenta Wool Mined\"}"}}, "u.greenConcrete": {"CriteriaName": "minecraft.used:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Used"}, "json_string": "{\"text\":\"Green Concrete Used\"}"}}, "c.bubbleCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Crafted"}, "json_string": "{\"text\":\"Bubble Coral Block Crafted\"}"}}, "cu.killedByWhiteTeam": {"CriteriaName": "killedByTeam.white", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by White Team"}, "json_string": "{\"text\":\"Killed by White Team\"}"}}, "u.greenBanner": {"CriteriaName": "minecraft.used:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Used"}, "json_string": "{\"text\":\"Green Banner Used\"}"}}, "p.warpedStairs": {"CriteriaName": "minecraft.picked_up:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Picked Up"}, "json_string": "{\"text\":\"Warped Stairs Picked Up\"}"}}, "m.coarseDirt": {"CriteriaName": "minecraft.mined:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Mined"}, "json_string": "{\"text\":\"Coarse Dirt Mined\"}"}}, "b.sprucePlanks": {"CriteriaName": "minecraft.broken:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Broken"}, "json_string": "{\"text\":\"Spruce Planks Broken\"}"}}, "b.floweringAzalea": {"CriteriaName": "minecraft.broken:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Broken"}, "json_string": "{\"text\":\"Flowering Azalea Broken\"}"}}, "c.cookedSalmon": {"CriteriaName": "minecraft.crafted:minecraft.cooked_salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Salmon Crafted"}, "json_string": "{\"text\":\"Cooked Salmon Crafted\"}"}}, "u.traderLlamaSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.trader_llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Spawn Egg Used"}, "json_string": "{\"text\":\"Trader Llama Spawn Egg Used\"}"}}, "c.waxedExposedCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Crafted"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Crafted\"}"}}, "b.birchFence": {"CriteriaName": "minecraft.broken:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Broken"}, "json_string": "{\"text\":\"Birch Fence Broken\"}"}}, "m.spruceDoor": {"CriteriaName": "minecraft.mined:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Mined"}, "json_string": "{\"text\":\"Spruce Door Mined\"}"}}, "b.azaleaLeaves": {"CriteriaName": "minecraft.broken:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Broken"}, "json_string": "{\"text\":\"Azalea Leaves Broken\"}"}}, "p.cryingObsidian": {"CriteriaName": "minecraft.picked_up:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Picked Up"}, "json_string": "{\"text\":\"Crying Obsidian Picked Up\"}"}}, "u.cyanShulkerBox": {"CriteriaName": "minecraft.used:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Used"}, "json_string": "{\"text\":\"Cyan Shulker Box Used\"}"}}, "b.ironOre": {"CriteriaName": "minecraft.broken:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Broken"}, "json_string": "{\"text\":\"Iron Ore Broken\"}"}}, "q.mossyStoneBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Dropped"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Dropped\"}"}}, "b.podzol": {"CriteriaName": "minecraft.broken:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Broken"}, "json_string": "{\"text\":\"Podzol Broken\"}"}}, "q.potion": {"CriteriaName": "minecraft.dropped:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Dropped"}, "json_string": "{\"text\":\"Potion Dropped\"}"}}, "u.acaciaLeaves": {"CriteriaName": "minecraft.used:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Used"}, "json_string": "{\"text\":\"Acacia Leaves Used\"}"}}, "c.cobbledDeepslateWall": {"CriteriaName": "minecraft.crafted:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Crafted"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Crafted\"}"}}, "c.tubeCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Crafted"}, "json_string": "{\"text\":\"Tube Coral Block Crafted\"}"}}, "m.purpleWool": {"CriteriaName": "minecraft.mined:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Mined"}, "json_string": "{\"text\":\"Purple Wool Mined\"}"}}, "q.purpleGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Dropped\"}"}}, "d.cow": {"CriteriaName": "minecraft.killed_by:minecraft.cow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Cow"}, "json_string": "{\"text\":\"Killed by Cow\"}"}}, "p.compass": {"CriteriaName": "minecraft.picked_up:minecraft.compass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Compass Picked Up"}, "json_string": "{\"text\":\"Compass Picked Up\"}"}}, "p.darkOakPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Picked Up"}, "json_string": "{\"text\":\"Dark Oak Planks Picked Up\"}"}}, "q.warpedDoor": {"CriteriaName": "minecraft.dropped:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Dropped"}, "json_string": "{\"text\":\"Warped Door Dropped\"}"}}, "q.polishedBlackstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Slab Dropped\"}"}}, "u.caveSpiderSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.cave_spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Spawn Egg Used"}, "json_string": "{\"text\":\"Cave Spider Spawn Egg Used\"}"}}, "p.musicDiscMellohi": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_mellohi", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mellohi Picked Up"}, "json_string": "{\"text\":\"Music Disc Mellohi Picked Up\"}"}}, "b.smoothStoneSlab": {"CriteriaName": "minecraft.broken:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Broken"}, "json_string": "{\"text\":\"Smooth Stone Slab Broken\"}"}}, "c.grayStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Crafted"}, "json_string": "{\"text\":\"Gray Stained Glass Crafted\"}"}}, "q.sandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Sandstone Slab Dropped\"}"}}, "m.jungleLog": {"CriteriaName": "minecraft.mined:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Mined"}, "json_string": "{\"text\":\"Jungle Log Mined\"}"}}, "b.weatheredCopper": {"CriteriaName": "minecraft.broken:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Broken"}, "json_string": "{\"text\":\"Weathered Copper Broken\"}"}}, "p.strippedSpruceWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Spruce Wood Picked Up\"}"}}, "u.hornCoralBlock": {"CriteriaName": "minecraft.used:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Used"}, "json_string": "{\"text\":\"Horn Coral Block Used\"}"}}, "b.brownBanner": {"CriteriaName": "minecraft.broken:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Broken"}, "json_string": "{\"text\":\"Brown Banner Broken\"}"}}, "q.jungleBoat": {"CriteriaName": "minecraft.dropped:minecraft.jungle_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Boat Dropped"}, "json_string": "{\"text\":\"Jungle Boat Dropped\"}"}}, "b.hayBlock": {"CriteriaName": "minecraft.broken:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Broken"}, "json_string": "{\"text\":\"Hay Block Broken\"}"}}, "u.honeycombBlock": {"CriteriaName": "minecraft.used:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Used"}, "json_string": "{\"text\":\"Honeycomb Block Used\"}"}}, "p.diamondOre": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Picked Up"}, "json_string": "{\"text\":\"Diamond Ore Picked Up\"}"}}, "c.zoglinSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.zoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Spawn Egg Crafted"}, "json_string": "{\"text\":\"Zoglin Spawn Egg Crafted\"}"}}, "p.sandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Sandstone Slab Picked Up\"}"}}, "q.trident": {"CriteriaName": "minecraft.dropped:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Dropped"}, "json_string": "{\"text\":\"Trident Dropped\"}"}}, "u.nameTag": {"CriteriaName": "minecraft.used:minecraft.name_tag", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Name Tag Used"}, "json_string": "{\"text\":\"Name Tag Used\"}"}}, "u.darkOakSign": {"CriteriaName": "minecraft.used:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Used"}, "json_string": "{\"text\":\"Dark Oak Sign Used\"}"}}, "m.shulkerBox": {"CriteriaName": "minecraft.mined:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Mined"}, "json_string": "{\"text\":\"Shulker Box Mined\"}"}}, "g.tuneNoteblock": {"CriteriaName": "minecraft.custom:minecraft.tune_noteblock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tune Noteblock"}, "json_string": "{\"text\":\"Tune Noteblock\"}"}}, "b.netheriteHelmet": {"CriteriaName": "minecraft.broken:minecraft.netherite_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Helmet Broken"}, "json_string": "{\"text\":\"Netherite Helmet Broken\"}"}}, "b.ocelotSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.ocelot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Spawn Egg Broken"}, "json_string": "{\"text\":\"Ocelot Spawn Egg Broken\"}"}}, "q.netheriteHelmet": {"CriteriaName": "minecraft.dropped:minecraft.netherite_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Helmet Dropped"}, "json_string": "{\"text\":\"Netherite Helmet Dropped\"}"}}, "p.brainCoral": {"CriteriaName": "minecraft.picked_up:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Picked Up"}, "json_string": "{\"text\":\"Brain Coral Picked Up\"}"}}, "c.coarseDirt": {"CriteriaName": "minecraft.crafted:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Crafted"}, "json_string": "{\"text\":\"Coarse Dirt Crafted\"}"}}, "c.quartzStairs": {"CriteriaName": "minecraft.crafted:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Crafted"}, "json_string": "{\"text\":\"Quartz Stairs Crafted\"}"}}, "p.limeCandle": {"CriteriaName": "minecraft.picked_up:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Picked Up"}, "json_string": "{\"text\":\"Lime Candle Picked Up\"}"}}, "q.darkOakPlanks": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Dropped"}, "json_string": "{\"text\":\"Dark Oak Planks Dropped\"}"}}, "b.magmaCream": {"CriteriaName": "minecraft.broken:minecraft.magma_cream", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cream Broken"}, "json_string": "{\"text\":\"Magma Cream Broken\"}"}}, "u.deepslateDiamondOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Used"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Used\"}"}}, "u.mossyCobblestone": {"CriteriaName": "minecraft.used:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Used"}, "json_string": "{\"text\":\"Mossy Cobblestone Used\"}"}}, "u.redNetherBrickStairs": {"CriteriaName": "minecraft.used:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Used"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Used\"}"}}, "u.witchSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.witch_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Spawn Egg Used"}, "json_string": "{\"text\":\"Witch Spawn Egg Used\"}"}}, "b.shears": {"CriteriaName": "minecraft.broken:minecraft.shears", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shears Broken"}, "json_string": "{\"text\":\"Shears Broken\"}"}}, "u.blackstoneSlab": {"CriteriaName": "minecraft.used:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Used"}, "json_string": "{\"text\":\"Blackstone Slab Used\"}"}}, "b.soulCampfire": {"CriteriaName": "minecraft.broken:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Broken"}, "json_string": "{\"text\":\"Soul Campfire Broken\"}"}}, "u.lever": {"CriteriaName": "minecraft.used:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Used"}, "json_string": "{\"text\":\"Lever Used\"}"}}, "c.nameTag": {"CriteriaName": "minecraft.crafted:minecraft.name_tag", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Name Tag Crafted"}, "json_string": "{\"text\":\"Name Tag Crafted\"}"}}, "u.stoneHoe": {"CriteriaName": "minecraft.used:minecraft.stone_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Hoe Used"}, "json_string": "{\"text\":\"Stone Hoe Used\"}"}}, "b.limeConcrete": {"CriteriaName": "minecraft.broken:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Broken"}, "json_string": "{\"text\":\"Lime Concrete Broken\"}"}}, "m.honeyBlock": {"CriteriaName": "minecraft.mined:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Mined"}, "json_string": "{\"text\":\"Honey Block Mined\"}"}}, "q.greenStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Dropped"}, "json_string": "{\"text\":\"Green Stained Glass Dropped\"}"}}, "c.granite": {"CriteriaName": "minecraft.crafted:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Crafted"}, "json_string": "{\"text\":\"Granite Crafted\"}"}}, "q.bricks": {"CriteriaName": "minecraft.dropped:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Dropped"}, "json_string": "{\"text\":\"Bricks Dropped\"}"}}, "q.emeraldOre": {"CriteriaName": "minecraft.dropped:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Dropped"}, "json_string": "{\"text\":\"Emerald Ore Dropped\"}"}}, "b.writtenBook": {"CriteriaName": "minecraft.broken:minecraft.written_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Written Book Broken"}, "json_string": "{\"text\":\"Written Book Broken\"}"}}, "q.seaLantern": {"CriteriaName": "minecraft.dropped:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Dropped"}, "json_string": "{\"text\":\"Sea Lantern Dropped\"}"}}, "d.tnt": {"CriteriaName": "minecraft.killed_by:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Tnt"}, "json_string": "{\"text\":\"Killed by Tnt\"}"}}, "u.glassBottle": {"CriteriaName": "minecraft.used:minecraft.glass_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Bottle Used"}, "json_string": "{\"text\":\"Glass Bottle Used\"}"}}, "m.polishedAndesiteStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Mined"}, "json_string": "{\"text\":\"Polished Andesite Stairs Mined\"}"}}, "b.conduit": {"CriteriaName": "minecraft.broken:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Broken"}, "json_string": "{\"text\":\"Conduit Broken\"}"}}, "q.oakPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Dropped"}, "json_string": "{\"text\":\"Oak Pressure Plate Dropped\"}"}}, "d.chestMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Chest Minecart"}, "json_string": "{\"text\":\"Killed by Chest Minecart\"}"}}, "c.birchWood": {"CriteriaName": "minecraft.crafted:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Crafted"}, "json_string": "{\"text\":\"Birch Wood Crafted\"}"}}, "d.player": {"CriteriaName": "minecraft.killed_by:minecraft.player", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Player"}, "json_string": "{\"text\":\"Killed by Player\"}"}}, "q.redCarpet": {"CriteriaName": "minecraft.dropped:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Dropped"}, "json_string": "{\"text\":\"Red Carpet Dropped\"}"}}, "c.blackStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Black Stained Glass Pane Crafted\"}"}}, "c.oakTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Crafted"}, "json_string": "{\"text\":\"Oak Trapdoor Crafted\"}"}}, "c.beeSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.bee_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Spawn Egg Crafted"}, "json_string": "{\"text\":\"Bee Spawn Egg Crafted\"}"}}, "q.purpleCandle": {"CriteriaName": "minecraft.dropped:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Dropped"}, "json_string": "{\"text\":\"Purple Candle Dropped\"}"}}, "c.trappedChest": {"CriteriaName": "minecraft.crafted:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Crafted"}, "json_string": "{\"text\":\"Trapped Chest Crafted\"}"}}, "u.waxedExposedCutCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Used"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Used\"}"}}, "m.peony": {"CriteriaName": "minecraft.mined:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Mined"}, "json_string": "{\"text\":\"Peony Mined\"}"}}, "q.infestedStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Dropped"}, "json_string": "{\"text\":\"Infested Stone Bricks Dropped\"}"}}, "m.brownConcrete": {"CriteriaName": "minecraft.mined:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Mined"}, "json_string": "{\"text\":\"Brown Concrete Mined\"}"}}, "d.spawnerMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.spawner_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Spawner Minecart"}, "json_string": "{\"text\":\"Killed by Spawner Minecart\"}"}}, "u.netherBrickSlab": {"CriteriaName": "minecraft.used:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Used"}, "json_string": "{\"text\":\"Nether Brick Slab Used\"}"}}, "c.netheriteHoe": {"CriteriaName": "minecraft.crafted:minecraft.netherite_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Hoe Crafted"}, "json_string": "{\"text\":\"Netherite Hoe Crafted\"}"}}, "g.interactWithBrewingstand": {"CriteriaName": "minecraft.custom:minecraft.interact_with_brewingstand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Brewing Stand"}, "json_string": "{\"text\":\"Interact with Brewing Stand\"}"}}, "q.smoothRedSandstone": {"CriteriaName": "minecraft.dropped:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Dropped"}, "json_string": "{\"text\":\"Smooth Red Sandstone Dropped\"}"}}, "d.donkey": {"CriteriaName": "minecraft.killed_by:minecraft.donkey", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Donkey"}, "json_string": "{\"text\":\"Killed by Donkey\"}"}}, "p.stoneSword": {"CriteriaName": "minecraft.picked_up:minecraft.stone_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Sword Picked Up"}, "json_string": "{\"text\":\"Stone Sword Picked Up\"}"}}, "c.gravel": {"CriteriaName": "minecraft.crafted:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Crafted"}, "json_string": "{\"text\":\"Gravel Crafted\"}"}}, "p.hornCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Picked Up"}, "json_string": "{\"text\":\"Horn Coral Fan Picked Up\"}"}}, "c.llamaSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spawn Egg Crafted"}, "json_string": "{\"text\":\"Llama Spawn Egg Crafted\"}"}}, "u.orangeDye": {"CriteriaName": "minecraft.used:minecraft.orange_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Dye Used"}, "json_string": "{\"text\":\"Orange Dye Used\"}"}}, "u.magentaConcrete": {"CriteriaName": "minecraft.used:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Used"}, "json_string": "{\"text\":\"Magenta Concrete Used\"}"}}, "p.redMushroom": {"CriteriaName": "minecraft.picked_up:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Picked Up"}, "json_string": "{\"text\":\"Red Mushroom Picked Up\"}"}}, "m.purpurSlab": {"CriteriaName": "minecraft.mined:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Mined"}, "json_string": "{\"text\":\"Purpur Slab Mined\"}"}}, "b.sporeBlossom": {"CriteriaName": "minecraft.broken:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Broken"}, "json_string": "{\"text\":\"Spore Blossom Broken\"}"}}, "b.boneMeal": {"CriteriaName": "minecraft.broken:minecraft.bone_meal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Meal Broken"}, "json_string": "{\"text\":\"Bone Meal Broken\"}"}}, "b.yellowCarpet": {"CriteriaName": "minecraft.broken:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Broken"}, "json_string": "{\"text\":\"Yellow Carpet Broken\"}"}}, "m.polishedBlackstone": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Mined"}, "json_string": "{\"text\":\"Polished Blackstone Mined\"}"}}, "u.stoneBrickStairs": {"CriteriaName": "minecraft.used:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Used"}, "json_string": "{\"text\":\"Stone Brick Stairs Used\"}"}}, "b.twistingVines": {"CriteriaName": "minecraft.broken:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Broken"}, "json_string": "{\"text\":\"Twisting Vines Broken\"}"}}, "m.jungleButton": {"CriteriaName": "minecraft.mined:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Mined"}, "json_string": "{\"text\":\"Jungle Button Mined\"}"}}, "c.grayTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Crafted"}, "json_string": "{\"text\":\"Gray Terracotta Crafted\"}"}}, "d.cod": {"CriteriaName": "minecraft.killed_by:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Cod"}, "json_string": "{\"text\":\"Killed by Cod\"}"}}, "cu.walkOneCm": {"CriteriaName": "minecraft.custom:minecraft.walk_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Walk One Cm"}, "json_string": "{\"text\":\"Walk One Cm\"}"}}, "u.whiteConcrete": {"CriteriaName": "minecraft.used:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Used"}, "json_string": "{\"text\":\"White Concrete Used\"}"}}, "p.deepslateCoalOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Coal Ore Picked Up\"}"}}, "p.witherSkeletonSkull": {"CriteriaName": "minecraft.picked_up:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Picked Up"}, "json_string": "{\"text\":\"Wither Skeleton Skull Picked Up\"}"}}, "c.rabbit": {"CriteriaName": "minecraft.crafted:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Crafted"}, "json_string": "{\"text\":\"Rabbit Crafted\"}"}}, "m.kelp": {"CriteriaName": "minecraft.mined:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Mined"}, "json_string": "{\"text\":\"Kelp Mined\"}"}}, "u.chiseledSandstone": {"CriteriaName": "minecraft.used:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Used"}, "json_string": "{\"text\":\"Chiseled Sandstone Used\"}"}}, "m.whiteCandleCake": {"CriteriaName": "minecraft.mined:minecraft.white_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Cake Mined"}, "json_string": "{\"text\":\"White Candle Cake Mined\"}"}}, "p.zombifiedPiglinSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.zombified_piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Zombified Piglin Spawn Egg Picked Up\"}"}}, "u.lightWeightedPressurePlate": {"CriteriaName": "minecraft.used:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Used"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Used\"}"}}, "c.sprucePressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Crafted"}, "json_string": "{\"text\":\"Spruce Pressure Plate Crafted\"}"}}, "c.waterBucket": {"CriteriaName": "minecraft.crafted:minecraft.water_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Bucket Crafted"}, "json_string": "{\"text\":\"Water Bucket Crafted\"}"}}, "m.crimsonWallSign": {"CriteriaName": "minecraft.mined:minecraft.crimson_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Wall Sign Mined"}, "json_string": "{\"text\":\"Crimson Wall Sign Mined\"}"}}, "m.dripstoneBlock": {"CriteriaName": "minecraft.mined:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Mined"}, "json_string": "{\"text\":\"Dripstone Block Mined\"}"}}, "b.blueConcrete": {"CriteriaName": "minecraft.broken:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Broken"}, "json_string": "{\"text\":\"Blue Concrete Broken\"}"}}, "u.purpurBlock": {"CriteriaName": "minecraft.used:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Used"}, "json_string": "{\"text\":\"Purpur Block Used\"}"}}, "q.clock": {"CriteriaName": "minecraft.dropped:minecraft.clock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clock Dropped"}, "json_string": "{\"text\":\"Clock Dropped\"}"}}, "p.chainmailHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.chainmail_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Helmet Picked Up"}, "json_string": "{\"text\":\"Chainmail Helmet Picked Up\"}"}}, "c.pinkTulip": {"CriteriaName": "minecraft.crafted:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Crafted"}, "json_string": "{\"text\":\"Pink Tulip Crafted\"}"}}, "b.fletchingTable": {"CriteriaName": "minecraft.broken:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Broken"}, "json_string": "{\"text\":\"Fletching Table Broken\"}"}}, "c.craftingTable": {"CriteriaName": "minecraft.crafted:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Crafted"}, "json_string": "{\"text\":\"Crafting Table Crafted\"}"}}, "q.striderSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.strider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Spawn Egg Dropped"}, "json_string": "{\"text\":\"Strider Spawn Egg Dropped\"}"}}, "p.netherBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Picked Up"}, "json_string": "{\"text\":\"Nether Brick Wall Picked Up\"}"}}, "b.darkOakTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Broken"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Broken\"}"}}, "q.flowerPot": {"CriteriaName": "minecraft.dropped:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Dropped"}, "json_string": "{\"text\":\"Flower Pot Dropped\"}"}}, "b.lightGrayBed": {"CriteriaName": "minecraft.broken:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Broken"}, "json_string": "{\"text\":\"Light Gray Bed Broken\"}"}}, "p.redstoneLamp": {"CriteriaName": "minecraft.picked_up:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Picked Up"}, "json_string": "{\"text\":\"Redstone Lamp Picked Up\"}"}}, "cu.damageBlockedByShield": {"CriteriaName": "minecraft.custom:minecraft.damage_blocked_by_shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Blocked By Shield"}, "json_string": "{\"text\":\"Damage Blocked By Shield\"}"}}, "b.birchLog": {"CriteriaName": "minecraft.broken:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Broken"}, "json_string": "{\"text\":\"Birch Log Broken\"}"}}, "b.llamaSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spawn Egg Broken"}, "json_string": "{\"text\":\"Llama Spawn Egg Broken\"}"}}, "u.chorusFlower": {"CriteriaName": "minecraft.used:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Used"}, "json_string": "{\"text\":\"Chorus Flower Used\"}"}}, "b.calcite": {"CriteriaName": "minecraft.broken:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Broken"}, "json_string": "{\"text\":\"Calcite Broken\"}"}}, "u.netherBrickFence": {"CriteriaName": "minecraft.used:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Used"}, "json_string": "{\"text\":\"Nether Brick Fence Used\"}"}}, "p.infestedMossyStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Picked Up\"}"}}, "c.quartzSlab": {"CriteriaName": "minecraft.crafted:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Crafted"}, "json_string": "{\"text\":\"Quartz Slab Crafted\"}"}}, "m.whiteWool": {"CriteriaName": "minecraft.mined:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Mined"}, "json_string": "{\"text\":\"White Wool Mined\"}"}}, "c.dolphinSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.dolphin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Spawn Egg Crafted"}, "json_string": "{\"text\":\"Dolphin Spawn Egg Crafted\"}"}}, "q.zombieHead": {"CriteriaName": "minecraft.dropped:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Dropped"}, "json_string": "{\"text\":\"Zombie Head Dropped\"}"}}, "u.cyanCarpet": {"CriteriaName": "minecraft.used:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Used"}, "json_string": "{\"text\":\"Cyan Carpet Used\"}"}}, "m.pinkTerracotta": {"CriteriaName": "minecraft.mined:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Mined"}, "json_string": "{\"text\":\"Pink Terracotta Mined\"}"}}, "q.waxedOxidizedCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Dropped"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Dropped\"}"}}, "c.noteBlock": {"CriteriaName": "minecraft.crafted:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Crafted"}, "json_string": "{\"text\":\"Note Block Crafted\"}"}}, "u.crimsonDoor": {"CriteriaName": "minecraft.used:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Used"}, "json_string": "{\"text\":\"Crimson Door Used\"}"}}, "p.diamondPickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Pickaxe Picked Up"}, "json_string": "{\"text\":\"Diamond Pickaxe Picked Up\"}"}}, "u.filledMap": {"CriteriaName": "minecraft.used:minecraft.filled_map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Filled Map Used"}, "json_string": "{\"text\":\"Filled Map Used\"}"}}, "g.trigger": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trigger :D"}, "json_string": "{\"text\":\"Trigger :D\"}"}}, "m.strippedSpruceLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Mined"}, "json_string": "{\"text\":\"Stripped Spruce Log Mined\"}"}}, "p.whiteCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Picked Up"}, "json_string": "{\"text\":\"White Carpet Picked Up\"}"}}, "u.saddle": {"CriteriaName": "minecraft.used:minecraft.saddle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Saddle Used"}, "json_string": "{\"text\":\"Saddle Used\"}"}}, "m.spruceSapling": {"CriteriaName": "minecraft.mined:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Mined"}, "json_string": "{\"text\":\"Spruce Sapling Mined\"}"}}, "p.dioriteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Picked Up"}, "json_string": "{\"text\":\"Diorite Slab Picked Up\"}"}}, "c.stonePressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Crafted"}, "json_string": "{\"text\":\"Stone Pressure Plate Crafted\"}"}}, "m.stoneBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Slab Mined"}, "json_string": "{\"text\":\"Stone Brick Slab Mined\"}"}}, "b.prismarineWall": {"CriteriaName": "minecraft.broken:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Broken"}, "json_string": "{\"text\":\"Prismarine Wall Broken\"}"}}, "c.cookedPorkchop": {"CriteriaName": "minecraft.crafted:minecraft.cooked_porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Porkchop Crafted"}, "json_string": "{\"text\":\"Cooked Porkchop Crafted\"}"}}, "c.smoothQuartz": {"CriteriaName": "minecraft.crafted:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Crafted"}, "json_string": "{\"text\":\"Smooth Quartz Crafted\"}"}}, "b.endCrystal": {"CriteriaName": "minecraft.broken:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Broken"}, "json_string": "{\"text\":\"End Crystal Broken\"}"}}, "u.poweredRail": {"CriteriaName": "minecraft.used:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Used"}, "json_string": "{\"text\":\"Powered Rail Used\"}"}}, "d.hoglin": {"CriteriaName": "minecraft.killed_by:minecraft.hoglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Hoglin"}, "json_string": "{\"text\":\"Killed by Hoglin\"}"}}, "c.calcite": {"CriteriaName": "minecraft.crafted:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Crafted"}, "json_string": "{\"text\":\"Calcite Crafted\"}"}}, "c.ironSword": {"CriteriaName": "minecraft.crafted:minecraft.iron_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Sword Crafted"}, "json_string": "{\"text\":\"Iron Sword Crafted\"}"}}, "duraPing.weapon": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "duraPing.weapon"}, "json_string": "{\"text\":\"duraPing.weapon\"}"}}, "c.diamondAxe": {"CriteriaName": "minecraft.crafted:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Axe Crafted"}, "json_string": "{\"text\":\"Diamond Axe Crafted\"}"}}, "q.dragonHead": {"CriteriaName": "minecraft.dropped:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Dropped"}, "json_string": "{\"text\":\"Dragon Head Dropped\"}"}}, "u.blueGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Used"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Used\"}"}}, "q.yellowDye": {"CriteriaName": "minecraft.dropped:minecraft.yellow_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Dye Dropped"}, "json_string": "{\"text\":\"Yellow Dye Dropped\"}"}}, "p.sandstone": {"CriteriaName": "minecraft.picked_up:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Picked Up"}, "json_string": "{\"text\":\"Sandstone Picked Up\"}"}}, "u.cyanCandle": {"CriteriaName": "minecraft.used:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Used"}, "json_string": "{\"text\":\"Cyan Candle Used\"}"}}, "q.purpleDye": {"CriteriaName": "minecraft.dropped:minecraft.purple_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Dye Dropped"}, "json_string": "{\"text\":\"Purple Dye Dropped\"}"}}, "p.deadHornCoral": {"CriteriaName": "minecraft.picked_up:minecraft.dead_horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Picked Up"}, "json_string": "{\"text\":\"Dead Horn Coral Picked Up\"}"}}, "g.play": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Play"}, "json_string": "{\"text\":\"Play\"}"}}, "b.limeTerracotta": {"CriteriaName": "minecraft.broken:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Broken"}, "json_string": "{\"text\":\"Lime Terracotta Broken\"}"}}, "p.musicDiscStrad": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_strad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Strad Picked Up"}, "json_string": "{\"text\":\"Music Disc Strad Picked Up\"}"}}, "p.cauldron": {"CriteriaName": "minecraft.picked_up:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Picked Up"}, "json_string": "{\"text\":\"Cauldron Picked Up\"}"}}, "u.magentaGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Used"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Used\"}"}}, "p.graniteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Picked Up"}, "json_string": "{\"text\":\"Granite Stairs Picked Up\"}"}}, "u.lightBlueTerracotta": {"CriteriaName": "minecraft.used:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Used"}, "json_string": "{\"text\":\"Light Blue Terracotta Used\"}"}}, "c.fireworkRocket": {"CriteriaName": "minecraft.crafted:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Crafted"}, "json_string": "{\"text\":\"Firework Rocket Crafted\"}"}}, "p.ironIngot": {"CriteriaName": "minecraft.picked_up:minecraft.iron_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ingot Picked Up"}, "json_string": "{\"text\":\"Iron Ingot Picked Up\"}"}}, "b.fireworkRocket": {"CriteriaName": "minecraft.broken:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Broken"}, "json_string": "{\"text\":\"Firework Rocket Broken\"}"}}, "b.warpedRoots": {"CriteriaName": "minecraft.broken:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Broken"}, "json_string": "{\"text\":\"Warped Roots Broken\"}"}}, "p.pinkTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Picked Up"}, "json_string": "{\"text\":\"Pink Terracotta Picked Up\"}"}}, "c.warpedNylium": {"CriteriaName": "minecraft.crafted:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Crafted"}, "json_string": "{\"text\":\"Warped Nylium Crafted\"}"}}, "q.netherWartBlock": {"CriteriaName": "minecraft.dropped:minecraft.nether_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Block Dropped"}, "json_string": "{\"text\":\"Nether Wart Block Dropped\"}"}}, "m.pinkStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Mined\"}"}}, "b.dioriteWall": {"CriteriaName": "minecraft.broken:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Broken"}, "json_string": "{\"text\":\"Diorite Wall Broken\"}"}}, "u.redBed": {"CriteriaName": "minecraft.used:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Used"}, "json_string": "{\"text\":\"Red Bed Used\"}"}}, "p.cyanShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Picked Up"}, "json_string": "{\"text\":\"Cyan Shulker Box Picked Up\"}"}}, "b.pinkWool": {"CriteriaName": "minecraft.broken:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Broken"}, "json_string": "{\"text\":\"Pink Wool Broken\"}"}}, "p.limeCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Picked Up"}, "json_string": "{\"text\":\"Lime Carpet Picked Up\"}"}}, "b.goldenChestplate": {"CriteriaName": "minecraft.broken:minecraft.golden_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Chestplate Broken"}, "json_string": "{\"text\":\"Golden Chestplate Broken\"}"}}, "c.honeyBlock": {"CriteriaName": "minecraft.crafted:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Crafted"}, "json_string": "{\"text\":\"Honey Block Crafted\"}"}}, "p.clayBall": {"CriteriaName": "minecraft.picked_up:minecraft.clay_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Ball Picked Up"}, "json_string": "{\"text\":\"Clay Ball Picked Up\"}"}}, "p.darkOakFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Picked Up"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Picked Up\"}"}}, "b.ironBars": {"CriteriaName": "minecraft.broken:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Broken"}, "json_string": "{\"text\":\"Iron Bars Broken\"}"}}, "p.whiteTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Picked Up"}, "json_string": "{\"text\":\"White Terracotta Picked Up\"}"}}, "q.birchSign": {"CriteriaName": "minecraft.dropped:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Dropped"}, "json_string": "{\"text\":\"Birch Sign Dropped\"}"}}, "q.comparator": {"CriteriaName": "minecraft.dropped:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Dropped"}, "json_string": "{\"text\":\"Comparator Dropped\"}"}}, "c.cutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Cut Copper Stairs Crafted\"}"}}, "b.darkOakFence": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Broken"}, "json_string": "{\"text\":\"Dark Oak Fence Broken\"}"}}, "q.chiseledSandstone": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Dropped"}, "json_string": "{\"text\":\"Chiseled Sandstone Dropped\"}"}}, "b.redMushroomBlock": {"CriteriaName": "minecraft.broken:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Broken"}, "json_string": "{\"text\":\"Red Mushroom Block Broken\"}"}}, "q.composter": {"CriteriaName": "minecraft.dropped:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Dropped"}, "json_string": "{\"text\":\"Composter Dropped\"}"}}, "b.pinkStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Broken"}, "json_string": "{\"text\":\"Pink Stained Glass Broken\"}"}}, "u.nautilusShell": {"CriteriaName": "minecraft.used:minecraft.nautilus_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nautilus Shell Used"}, "json_string": "{\"text\":\"Nautilus Shell Used\"}"}}, "q.loom": {"CriteriaName": "minecraft.dropped:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Dropped"}, "json_string": "{\"text\":\"Loom Dropped\"}"}}, "u.goldenShovel": {"CriteriaName": "minecraft.used:minecraft.golden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Shovel Used"}, "json_string": "{\"text\":\"Golden Shovel Used\"}"}}, "p.smoothSandstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Picked Up"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Picked Up\"}"}}, "p.polishedBlackstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Picked Up\"}"}}, "m.andesiteWall": {"CriteriaName": "minecraft.mined:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Mined"}, "json_string": "{\"text\":\"Andesite Wall Mined\"}"}}, "q.donkeySpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.donkey_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Spawn Egg Dropped"}, "json_string": "{\"text\":\"Donkey Spawn Egg Dropped\"}"}}, "c.oakButton": {"CriteriaName": "minecraft.crafted:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Crafted"}, "json_string": "{\"text\":\"Oak Button Crafted\"}"}}, "q.cyanShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Dropped"}, "json_string": "{\"text\":\"Cyan Shulker Box Dropped\"}"}}, "b.cowSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.cow_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Spawn Egg Broken"}, "json_string": "{\"text\":\"Cow Spawn Egg Broken\"}"}}, "c.mossBlock": {"CriteriaName": "minecraft.crafted:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Crafted"}, "json_string": "{\"text\":\"Moss Block Crafted\"}"}}, "q.exposedCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Dropped\"}"}}, "b.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.broken:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Broken"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Broken\"}"}}, "b.poppy": {"CriteriaName": "minecraft.broken:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Broken"}, "json_string": "{\"text\":\"Poppy Broken\"}"}}, "c.limeTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Crafted"}, "json_string": "{\"text\":\"Lime Terracotta Crafted\"}"}}, "b.playerHead": {"CriteriaName": "minecraft.broken:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Broken"}, "json_string": "{\"text\":\"Player Head Broken\"}"}}, "p.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Picked Up\"}"}}, "q.deadBubbleCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Dropped"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Dropped\"}"}}, "b.melonSeeds": {"CriteriaName": "minecraft.broken:minecraft.melon_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Seeds Broken"}, "json_string": "{\"text\":\"Melon Seeds Broken\"}"}}, "b.orangeStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Broken\"}"}}, "u.crimsonPressurePlate": {"CriteriaName": "minecraft.used:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Used"}, "json_string": "{\"text\":\"Crimson Pressure Plate Used\"}"}}, "p.cyanGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Picked Up\"}"}}, "p.whiteStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Picked Up"}, "json_string": "{\"text\":\"White Stained Glass Picked Up\"}"}}, "p.birchDoor": {"CriteriaName": "minecraft.picked_up:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Picked Up"}, "json_string": "{\"text\":\"Birch Door Picked Up\"}"}}, "p.minecart": {"CriteriaName": "minecraft.picked_up:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Picked Up"}, "json_string": "{\"text\":\"Minecart Picked Up\"}"}}, "p.carvedPumpkin": {"CriteriaName": "minecraft.picked_up:minecraft.carved_pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carved Pumpkin Picked Up"}, "json_string": "{\"text\":\"Carved Pumpkin Picked Up\"}"}}, "p.diamondShovel": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Shovel Picked Up"}, "json_string": "{\"text\":\"Diamond Shovel Picked Up\"}"}}, "d.fireworkRocket": {"CriteriaName": "minecraft.killed_by:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Firework Rocket"}, "json_string": "{\"text\":\"Killed by Firework Rocket\"}"}}, "q.crimsonTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Dropped"}, "json_string": "{\"text\":\"Crimson Trapdoor Dropped\"}"}}, "q.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Dropped"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Dropped\"}"}}, "m.polishedBlackstoneWall": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Mined"}, "json_string": "{\"text\":\"Polished Blackstone Wall Mined\"}"}}, "m.oakLeaves": {"CriteriaName": "minecraft.mined:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Mined"}, "json_string": "{\"text\":\"Oak Leaves Mined\"}"}}, "u.pillagerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.pillager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Spawn Egg Used"}, "json_string": "{\"text\":\"Pillager Spawn Egg Used\"}"}}, "p.foxSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.fox_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Fox Spawn Egg Picked Up\"}"}}, "c.purpleTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Crafted"}, "json_string": "{\"text\":\"Purple Terracotta Crafted\"}"}}, "c.acaciaBoat": {"CriteriaName": "minecraft.crafted:minecraft.acacia_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Boat Crafted"}, "json_string": "{\"text\":\"Acacia Boat Crafted\"}"}}, "b.brickStairs": {"CriteriaName": "minecraft.broken:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Broken"}, "json_string": "{\"text\":\"Brick Stairs Broken\"}"}}, "c.deadHornCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Crafted"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Crafted\"}"}}, "m.darkOakSapling": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Mined"}, "json_string": "{\"text\":\"Dark Oak Sapling Mined\"}"}}, "u.pigSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.pig_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Spawn Egg Used"}, "json_string": "{\"text\":\"Pig Spawn Egg Used\"}"}}, "p.pillagerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.pillager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Pillager Spawn Egg Picked Up\"}"}}, "c.blackTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Crafted"}, "json_string": "{\"text\":\"Black Terracotta Crafted\"}"}}, "p.goldenHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.golden_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Helmet Picked Up"}, "json_string": "{\"text\":\"Golden Helmet Picked Up\"}"}}, "c.redTulip": {"CriteriaName": "minecraft.crafted:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Crafted"}, "json_string": "{\"text\":\"Red Tulip Crafted\"}"}}, "k.slime": {"CriteriaName": "minecraft.killed:minecraft.slime", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Killed"}, "json_string": "{\"text\":\"Slime Killed\"}"}}, "b.goldenAxe": {"CriteriaName": "minecraft.broken:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Axe Broken"}, "json_string": "{\"text\":\"Golden Axe Broken\"}"}}, "b.endStone": {"CriteriaName": "minecraft.broken:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Broken"}, "json_string": "{\"text\":\"End Stone Broken\"}"}}, "tc.sneak": {"CriteriaName": "minecraft.custom:minecraft.sneak_time", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.sneak"}, "json_string": "{\"text\":\"tc.sneak\"}"}}, "b.endStoneBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Broken"}, "json_string": "{\"text\":\"End Stone Brick Stairs Broken\"}"}}, "p.donkeySpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.donkey_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Donkey Spawn Egg Picked Up\"}"}}, "c.limeStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Crafted"}, "json_string": "{\"text\":\"Lime Stained Glass Crafted\"}"}}, "q.tropicalFishSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.tropical_fish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Spawn Egg Dropped"}, "json_string": "{\"text\":\"Tropical Fish Spawn Egg Dropped\"}"}}, "p.melon": {"CriteriaName": "minecraft.picked_up:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Picked Up"}, "json_string": "{\"text\":\"Melon Picked Up\"}"}}, "u.warpedFungus": {"CriteriaName": "minecraft.used:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Used"}, "json_string": "{\"text\":\"Warped Fungus Used\"}"}}, "q.tippedArrow": {"CriteriaName": "minecraft.dropped:minecraft.tipped_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tipped Arrow Dropped"}, "json_string": "{\"text\":\"Tipped Arrow Dropped\"}"}}, "c.seagrass": {"CriteriaName": "minecraft.crafted:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Crafted"}, "json_string": "{\"text\":\"Seagrass Crafted\"}"}}, "c.itemFrame": {"CriteriaName": "minecraft.crafted:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Crafted"}, "json_string": "{\"text\":\"Item Frame Crafted\"}"}}, "c.conduit": {"CriteriaName": "minecraft.crafted:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Crafted"}, "json_string": "{\"text\":\"Conduit Crafted\"}"}}, "u.ravagerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.ravager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Spawn Egg Used"}, "json_string": "{\"text\":\"Ravager Spawn Egg Used\"}"}}, "b.sweetBerries": {"CriteriaName": "minecraft.broken:minecraft.sweet_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berries Broken"}, "json_string": "{\"text\":\"Sweet Berries Broken\"}"}}, "b.redDye": {"CriteriaName": "minecraft.broken:minecraft.red_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Dye Broken"}, "json_string": "{\"text\":\"Red Dye Broken\"}"}}, "c.polishedDioriteStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Crafted"}, "json_string": "{\"text\":\"Polished Diorite Stairs Crafted\"}"}}, "p.deepslateTiles": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Picked Up"}, "json_string": "{\"text\":\"Deepslate Tiles Picked Up\"}"}}, "c.potato": {"CriteriaName": "minecraft.crafted:minecraft.potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potato Crafted"}, "json_string": "{\"text\":\"Potato Crafted\"}"}}, "q.lightBlueBed": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Dropped"}, "json_string": "{\"text\":\"Light Blue Bed Dropped\"}"}}, "m.blueConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Mined"}, "json_string": "{\"text\":\"Blue Concrete Powder Mined\"}"}}, "q.darkOakSapling": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Dropped"}, "json_string": "{\"text\":\"Dark Oak Sapling Dropped\"}"}}, "c.darkOakStairs": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Stairs Crafted"}, "json_string": "{\"text\":\"Dark Oak Stairs Crafted\"}"}}, "u.ironNugget": {"CriteriaName": "minecraft.used:minecraft.iron_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Nugget Used"}, "json_string": "{\"text\":\"Iron Nugget Used\"}"}}, "m.cobblestoneWall": {"CriteriaName": "minecraft.mined:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Mined"}, "json_string": "{\"text\":\"Cobblestone Wall Mined\"}"}}, "c.netheriteIngot": {"CriteriaName": "minecraft.crafted:minecraft.netherite_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Ingot Crafted"}, "json_string": "{\"text\":\"Netherite Ingot Crafted\"}"}}, "u.lightBlueConcretePowder": {"CriteriaName": "minecraft.used:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Used"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Used\"}"}}, "c.endPortalFrame": {"CriteriaName": "minecraft.crafted:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Crafted"}, "json_string": "{\"text\":\"End Portal Frame Crafted\"}"}}, "b.obsidian": {"CriteriaName": "minecraft.broken:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Broken"}, "json_string": "{\"text\":\"Obsidian Broken\"}"}}, "b.jungleSign": {"CriteriaName": "minecraft.broken:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Broken"}, "json_string": "{\"text\":\"Jungle Sign Broken\"}"}}, "b.dispenser": {"CriteriaName": "minecraft.broken:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Broken"}, "json_string": "{\"text\":\"Dispenser Broken\"}"}}, "p.netherBrickFence": {"CriteriaName": "minecraft.picked_up:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Picked Up"}, "json_string": "{\"text\":\"Nether Brick Fence Picked Up\"}"}}, "u.magentaDye": {"CriteriaName": "minecraft.used:minecraft.magenta_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Dye Used"}, "json_string": "{\"text\":\"Magenta Dye Used\"}"}}, "b.glowSquidSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.glow_squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid Spawn Egg Broken"}, "json_string": "{\"text\":\"Glow Squid Spawn Egg Broken\"}"}}, "k.glowSquid": {"CriteriaName": "minecraft.killed:minecraft.glow_squid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid"}, "json_string": "{\"text\":\"Glow Squid\"}"}}, "u.greenShulkerBox": {"CriteriaName": "minecraft.used:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Used"}, "json_string": "{\"text\":\"Green Shulker Box Used\"}"}}, "q.acaciaPlanks": {"CriteriaName": "minecraft.dropped:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Dropped"}, "json_string": "{\"text\":\"Acacia Planks Dropped\"}"}}, "p.smoothBasalt": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Picked Up"}, "json_string": "{\"text\":\"Smooth Basalt Picked Up\"}"}}, "p.oakStairs": {"CriteriaName": "minecraft.picked_up:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Picked Up"}, "json_string": "{\"text\":\"Oak Stairs Picked Up\"}"}}, "c.goldIngot": {"CriteriaName": "minecraft.crafted:minecraft.gold_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ingot Crafted"}, "json_string": "{\"text\":\"Gold Ingot Crafted\"}"}}, "u.creeperHead": {"CriteriaName": "minecraft.used:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Used"}, "json_string": "{\"text\":\"Creeper Head Used\"}"}}, "p.chainmailLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.chainmail_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Leggings Picked Up"}, "json_string": "{\"text\":\"Chainmail Leggings Picked Up\"}"}}, "p.jungleSlab": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Picked Up"}, "json_string": "{\"text\":\"Jungle Slab Picked Up\"}"}}, "q.crimsonFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Dropped"}, "json_string": "{\"text\":\"Crimson Fence Gate Dropped\"}"}}, "b.jungleFence": {"CriteriaName": "minecraft.broken:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Broken"}, "json_string": "{\"text\":\"Jungle Fence Broken\"}"}}, "u.cobweb": {"CriteriaName": "minecraft.used:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Used"}, "json_string": "{\"text\":\"Cobweb Used\"}"}}, "u.mossyCobblestoneSlab": {"CriteriaName": "minecraft.used:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Used"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Used\"}"}}, "b.rawGoldBlock": {"CriteriaName": "minecraft.broken:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Broken"}, "json_string": "{\"text\":\"Raw Gold Block Broken\"}"}}, "p.darkOakSlab": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Picked Up"}, "json_string": "{\"text\":\"Dark Oak Slab Picked Up\"}"}}, "p.birchSapling": {"CriteriaName": "minecraft.picked_up:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Picked Up"}, "json_string": "{\"text\":\"Birch Sapling Picked Up\"}"}}, "b.endPortalFrame": {"CriteriaName": "minecraft.broken:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Broken"}, "json_string": "{\"text\":\"End Portal Frame Broken\"}"}}, "p.mossyCobblestone": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Picked Up"}, "json_string": "{\"text\":\"Mossy Cobblestone Picked Up\"}"}}, "m.redstoneLamp": {"CriteriaName": "minecraft.mined:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Mined"}, "json_string": "{\"text\":\"Redstone Lamp Mined\"}"}}, "q.dripstoneBlock": {"CriteriaName": "minecraft.dropped:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Dropped"}, "json_string": "{\"text\":\"Dripstone Block Dropped\"}"}}, "b.pinkBed": {"CriteriaName": "minecraft.broken:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Broken"}, "json_string": "{\"text\":\"Pink Bed Broken\"}"}}, "m.deepslateTiles": {"CriteriaName": "minecraft.mined:minecraft.deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tiles Mined"}, "json_string": "{\"text\":\"Deepslate Tiles Mined\"}"}}, "m.darkOakTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Trapdoor Mined"}, "json_string": "{\"text\":\"Dark Oak Trapdoor Mined\"}"}}, "b.deadBrainCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Broken"}, "json_string": "{\"text\":\"Dead Brain Coral Block Broken\"}"}}, "q.ironAxe": {"CriteriaName": "minecraft.dropped:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Axe Dropped"}, "json_string": "{\"text\":\"Iron Axe Dropped\"}"}}, "c.mossyCobblestoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Crafted"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Crafted\"}"}}, "m.darkOakLeaves": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Mined"}, "json_string": "{\"text\":\"Dark Oak Leaves Mined\"}"}}, "rc_seconds": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seconds"}, "json_string": "{\"text\":\"Seconds\"}"}}, "m.polishedBlackstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Mined"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Mined\"}"}}, "b.mooshroomSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.mooshroom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Spawn Egg Broken"}, "json_string": "{\"text\":\"Mooshroom Spawn Egg Broken\"}"}}, "u.whiteWool": {"CriteriaName": "minecraft.used:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Used"}, "json_string": "{\"text\":\"White Wool Used\"}"}}, "p.flint": {"CriteriaName": "minecraft.picked_up:minecraft.flint", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint Picked Up"}, "json_string": "{\"text\":\"Flint Picked Up\"}"}}, "c.cookedChicken": {"CriteriaName": "minecraft.crafted:minecraft.cooked_chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Chicken Crafted"}, "json_string": "{\"text\":\"Cooked Chicken Crafted\"}"}}, "c.oakBoat": {"CriteriaName": "minecraft.crafted:minecraft.oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Boat Crafted"}, "json_string": "{\"text\":\"Oak Boat Crafted\"}"}}, "q.goldenPickaxe": {"CriteriaName": "minecraft.dropped:minecraft.golden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Pickaxe Dropped"}, "json_string": "{\"text\":\"Golden Pickaxe Dropped\"}"}}, "p.darkOakSapling": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sapling Picked Up"}, "json_string": "{\"text\":\"Dark Oak Sapling Picked Up\"}"}}, "b.netheriteIngot": {"CriteriaName": "minecraft.broken:minecraft.netherite_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Ingot Broken"}, "json_string": "{\"text\":\"Netherite Ingot Broken\"}"}}, "b.rabbitFoot": {"CriteriaName": "minecraft.broken:minecraft.rabbit_foot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Foot Broken"}, "json_string": "{\"text\":\"Rabbit Foot Broken\"}"}}, "c.enchantingTable": {"CriteriaName": "minecraft.crafted:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Crafted"}, "json_string": "{\"text\":\"Enchanting Table Crafted\"}"}}, "u.warpedPressurePlate": {"CriteriaName": "minecraft.used:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Used"}, "json_string": "{\"text\":\"Warped Pressure Plate Used\"}"}}, "m.greenStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Mined"}, "json_string": "{\"text\":\"Green Stained Glass Mined\"}"}}, "m.whiteBed": {"CriteriaName": "minecraft.mined:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Mined"}, "json_string": "{\"text\":\"White Bed Mined\"}"}}, "b.blackBanner": {"CriteriaName": "minecraft.broken:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Broken"}, "json_string": "{\"text\":\"Black Banner Broken\"}"}}, "p.witherRose": {"CriteriaName": "minecraft.picked_up:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Picked Up"}, "json_string": "{\"text\":\"Wither Rose Picked Up\"}"}}, "b.honeycomb": {"CriteriaName": "minecraft.broken:minecraft.honeycomb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Broken"}, "json_string": "{\"text\":\"Honeycomb Broken\"}"}}, "b.orangeCarpet": {"CriteriaName": "minecraft.broken:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Broken"}, "json_string": "{\"text\":\"Orange Carpet Broken\"}"}}, "d.minecart": {"CriteriaName": "minecraft.killed_by:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Minecart"}, "json_string": "{\"text\":\"Killed by Minecart\"}"}}, "m.cryingObsidian": {"CriteriaName": "minecraft.mined:minecraft.crying_obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crying Obsidian Mined"}, "json_string": "{\"text\":\"Crying Obsidian Mined\"}"}}, "p.polishedGraniteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Granite Stairs Picked Up\"}"}}, "q.cyanGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Dropped\"}"}}, "tc.break_spruce": {"CriteriaName": "minecraft.mined:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_spruce"}, "json_string": "{\"text\":\"tc.break_spruce\"}"}}, "q.pinkTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.pink_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Terracotta Dropped"}, "json_string": "{\"text\":\"Pink Terracotta Dropped\"}"}}, "q.redSandstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Dropped"}, "json_string": "{\"text\":\"Red Sandstone Stairs Dropped\"}"}}, "u.birchLeaves": {"CriteriaName": "minecraft.used:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Used"}, "json_string": "{\"text\":\"Birch Leaves Used\"}"}}, "c.shulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Crafted"}, "json_string": "{\"text\":\"Shulker Box Crafted\"}"}}, "q.poppedChorusFruit": {"CriteriaName": "minecraft.dropped:minecraft.popped_chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Popped Chorus Fruit Dropped"}, "json_string": "{\"text\":\"Popped Chorus Fruit Dropped\"}"}}, "k.armorStand": {"CriteriaName": "minecraft.killed:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Killed"}, "json_string": "{\"text\":\"Armor Stand Killed\"}"}}, "u.pufferfish": {"CriteriaName": "minecraft.used:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Used"}, "json_string": "{\"text\":\"Pufferfish Used\"}"}}, "g.interactWithCampfire": {"CriteriaName": "minecraft.custom:minecraft.interact_with_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Campfire"}, "json_string": "{\"text\":\"Interact with Campfire\"}"}}, "b.cornflower": {"CriteriaName": "minecraft.broken:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Broken"}, "json_string": "{\"text\":\"Cornflower Broken\"}"}}, "p.lapisOre": {"CriteriaName": "minecraft.picked_up:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Picked Up"}, "json_string": "{\"text\":\"Lapis Ore Picked Up\"}"}}, "q.glowBerries": {"CriteriaName": "minecraft.dropped:minecraft.glow_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Berries Dropped"}, "json_string": "{\"text\":\"Glow Berries Dropped\"}"}}, "p.brownShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Picked Up"}, "json_string": "{\"text\":\"Brown Shulker Box Picked Up\"}"}}, "b.lightGrayConcrete": {"CriteriaName": "minecraft.broken:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Broken"}, "json_string": "{\"text\":\"Light Gray Concrete Broken\"}"}}, "b.yellowCandle": {"CriteriaName": "minecraft.broken:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Broken"}, "json_string": "{\"text\":\"Yellow Candle Broken\"}"}}, "b.sugarCane": {"CriteriaName": "minecraft.broken:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Broken"}, "json_string": "{\"text\":\"Sugar Cane Broken\"}"}}, "u.darkOakFenceGate": {"CriteriaName": "minecraft.used:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Used"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Used\"}"}}, "c.deadTubeCoral": {"CriteriaName": "minecraft.crafted:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Crafted"}, "json_string": "{\"text\":\"Dead Tube Coral Crafted\"}"}}, "c.slimeSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.slime_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Spawn Egg Crafted"}, "json_string": "{\"text\":\"Slime Spawn Egg Crafted\"}"}}, "b.sprucePressurePlate": {"CriteriaName": "minecraft.broken:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Broken"}, "json_string": "{\"text\":\"Spruce Pressure Plate Broken\"}"}}, "p.dripstoneBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dripstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dripstone Block Picked Up"}, "json_string": "{\"text\":\"Dripstone Block Picked Up\"}"}}, "q.whiteBanner": {"CriteriaName": "minecraft.dropped:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Dropped"}, "json_string": "{\"text\":\"White Banner Dropped\"}"}}, "k.furnaceMinecart": {"CriteriaName": "minecraft.killed:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Killed"}, "json_string": "{\"text\":\"Furnace Minecart Killed\"}"}}, "q.cutCopper": {"CriteriaName": "minecraft.dropped:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Dropped"}, "json_string": "{\"text\":\"Cut Copper Dropped\"}"}}, "p.oxeyeDaisy": {"CriteriaName": "minecraft.picked_up:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Picked Up"}, "json_string": "{\"text\":\"Oxeye Daisy Picked Up\"}"}}, "p.lead": {"CriteriaName": "minecraft.picked_up:minecraft.lead", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lead Picked Up"}, "json_string": "{\"text\":\"Lead Picked Up\"}"}}, "u.warpedButton": {"CriteriaName": "minecraft.used:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Used"}, "json_string": "{\"text\":\"Warped Button Used\"}"}}, "m.dioriteStairs": {"CriteriaName": "minecraft.mined:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Mined"}, "json_string": "{\"text\":\"Diorite Stairs Mined\"}"}}, "u.junglePlanks": {"CriteriaName": "minecraft.used:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Used"}, "json_string": "{\"text\":\"Jungle Planks Used\"}"}}, "c.experienceBottle": {"CriteriaName": "minecraft.crafted:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Crafted"}, "json_string": "{\"text\":\"Experience Bottle Crafted\"}"}}, "c.flintAndSteel": {"CriteriaName": "minecraft.crafted:minecraft.flint_and_steel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint And Steel Crafted"}, "json_string": "{\"text\":\"Flint And Steel Crafted\"}"}}, "c.woodenSword": {"CriteriaName": "minecraft.crafted:minecraft.wooden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Sword Crafted"}, "json_string": "{\"text\":\"Wooden Sword Crafted\"}"}}, "q.brownBed": {"CriteriaName": "minecraft.dropped:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Dropped"}, "json_string": "{\"text\":\"Brown Bed Dropped\"}"}}, "u.cookedRabbit": {"CriteriaName": "minecraft.used:minecraft.cooked_rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Rabbit Used"}, "json_string": "{\"text\":\"Cooked Rabbit Used\"}"}}, "c.jungleLeaves": {"CriteriaName": "minecraft.crafted:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Crafted"}, "json_string": "{\"text\":\"Jungle Leaves Crafted\"}"}}, "b.smoothSandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Broken"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Broken\"}"}}, "m.darkOakWood": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Mined"}, "json_string": "{\"text\":\"Dark Oak Wood Mined\"}"}}, "p.lingeringPotion": {"CriteriaName": "minecraft.picked_up:minecraft.lingering_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lingering Potion Picked Up"}, "json_string": "{\"text\":\"Lingering Potion Picked Up\"}"}}, "q.twistingVines": {"CriteriaName": "minecraft.dropped:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Dropped"}, "json_string": "{\"text\":\"Twisting Vines Dropped\"}"}}, "q.axolotlSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.axolotl_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Spawn Egg Dropped"}, "json_string": "{\"text\":\"Axolotl Spawn Egg Dropped\"}"}}, "b.polishedAndesite": {"CriteriaName": "minecraft.broken:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Broken"}, "json_string": "{\"text\":\"Polished Andesite Broken\"}"}}, "u.polishedAndesiteSlab": {"CriteriaName": "minecraft.used:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Used"}, "json_string": "{\"text\":\"Polished Andesite Slab Used\"}"}}, "cu.killedByDarkGreenTeam": {"CriteriaName": "killedByTeam.dark_green", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Green Team"}, "json_string": "{\"text\":\"Killed by Green Team\"}"}}, "m.warpedStairs": {"CriteriaName": "minecraft.mined:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Mined"}, "json_string": "{\"text\":\"Warped Stairs Mined\"}"}}, "b.tubeCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Broken"}, "json_string": "{\"text\":\"Tube Coral Block Broken\"}"}}, "u.debugStick": {"CriteriaName": "minecraft.used:minecraft.debug_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Debug Stick Used"}, "json_string": "{\"text\":\"Debug Stick Used\"}"}}, "m.blueBanner": {"CriteriaName": "minecraft.mined:minecraft.blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Banner Mined"}, "json_string": "{\"text\":\"Blue Banner Mined\"}"}}, "q.smallDripleaf": {"CriteriaName": "minecraft.dropped:minecraft.small_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Dripleaf Dropped"}, "json_string": "{\"text\":\"Small Dripleaf Dropped\"}"}}, "p.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Picked Up\"}"}}, "u.target": {"CriteriaName": "minecraft.used:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Used"}, "json_string": "{\"text\":\"Target Used\"}"}}, "p.waxedOxidizedCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Picked Up\"}"}}, "k.zombie": {"CriteriaName": "minecraft.killed:minecraft.zombie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Killed"}, "json_string": "{\"text\":\"Zombie Killed\"}"}}, "d.enderman": {"CriteriaName": "minecraft.killed_by:minecraft.enderman", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Enderman"}, "json_string": "{\"text\":\"Killed by Enderman\"}"}}, "m.weatheredCopper": {"CriteriaName": "minecraft.mined:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Mined"}, "json_string": "{\"text\":\"Weathered Copper Mined\"}"}}, "b.stoneBricks": {"CriteriaName": "minecraft.broken:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Broken"}, "json_string": "{\"text\":\"Stone Bricks Broken\"}"}}, "p.sugar": {"CriteriaName": "minecraft.picked_up:minecraft.sugar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Picked Up"}, "json_string": "{\"text\":\"Sugar Picked Up\"}"}}, "m.smoothQuartzSlab": {"CriteriaName": "minecraft.mined:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Mined"}, "json_string": "{\"text\":\"Smooth Quartz Slab Mined\"}"}}, "p.lightBlueWool": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Picked Up"}, "json_string": "{\"text\":\"Light Blue Wool Picked Up\"}"}}, "c.polishedBlackstone": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Crafted\"}"}}, "c.knowledgeBook": {"CriteriaName": "minecraft.crafted:minecraft.knowledge_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Knowledge Book Crafted"}, "json_string": "{\"text\":\"Knowledge Book Crafted\"}"}}, "p.leatherHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.leather_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Helmet Picked Up"}, "json_string": "{\"text\":\"Leather Helmet Picked Up\"}"}}, "b.jungleFenceGate": {"CriteriaName": "minecraft.broken:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Broken"}, "json_string": "{\"text\":\"Jungle Fence Gate Broken\"}"}}, "tc.break_cherry": {"CriteriaName": "minecraft.mined:minecraft.cherry_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_cherry"}, "json_string": "{\"text\":\"tc.break_cherry\"}"}}, "b.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Broken\"}"}}, "c.oakSapling": {"CriteriaName": "minecraft.crafted:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Crafted"}, "json_string": "{\"text\":\"Oak Sapling Crafted\"}"}}, "c.floweringAzaleaLeaves": {"CriteriaName": "minecraft.crafted:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Crafted"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Crafted\"}"}}, "p.darkPrismarineSlab": {"CriteriaName": "minecraft.picked_up:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Picked Up"}, "json_string": "{\"text\":\"Dark Prismarine Slab Picked Up\"}"}}, "m.redNetherBrickWall": {"CriteriaName": "minecraft.mined:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Mined"}, "json_string": "{\"text\":\"Red Nether Brick Wall Mined\"}"}}, "m.torch": {"CriteriaName": "minecraft.mined:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Mined"}, "json_string": "{\"text\":\"Torch Mined\"}"}}, "m.sporeBlossom": {"CriteriaName": "minecraft.mined:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Mined"}, "json_string": "{\"text\":\"Spore Blossom Mined\"}"}}, "u.redWool": {"CriteriaName": "minecraft.used:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Used"}, "json_string": "{\"text\":\"Red Wool Used\"}"}}, "m.whiteConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Mined"}, "json_string": "{\"text\":\"White Concrete Powder Mined\"}"}}, "c.ocelotSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.ocelot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Spawn Egg Crafted"}, "json_string": "{\"text\":\"Ocelot Spawn Egg Crafted\"}"}}, "m.limeGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Mined\"}"}}, "q.chestMinecart": {"CriteriaName": "minecraft.dropped:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Dropped"}, "json_string": "{\"text\":\"Chest Minecart Dropped\"}"}}, "b.salmonSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.salmon_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Spawn Egg Broken"}, "json_string": "{\"text\":\"Salmon Spawn Egg Broken\"}"}}, "c.blueWool": {"CriteriaName": "minecraft.crafted:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Crafted"}, "json_string": "{\"text\":\"Blue Wool Crafted\"}"}}, "p.structureVoid": {"CriteriaName": "minecraft.picked_up:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Picked Up"}, "json_string": "{\"text\":\"Structure Void Picked Up\"}"}}, "p.limeDye": {"CriteriaName": "minecraft.picked_up:minecraft.lime_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Dye Picked Up"}, "json_string": "{\"text\":\"Lime Dye Picked Up\"}"}}, "g.bellRing": {"CriteriaName": "minecraft.custom:minecraft.bell_ring", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bells Rung"}, "json_string": "{\"text\":\"Bells Rung\"}"}}, "m.redstoneWallTorch": {"CriteriaName": "minecraft.mined:minecraft.redstone_wall_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Wall Torch Mined"}, "json_string": "{\"text\":\"Redstone Wall Torch Mined\"}"}}, "m.chippedAnvil": {"CriteriaName": "minecraft.mined:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Mined"}, "json_string": "{\"text\":\"Chipped Anvil Mined\"}"}}, "m.birchWood": {"CriteriaName": "minecraft.mined:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Mined"}, "json_string": "{\"text\":\"Birch Wood Mined\"}"}}, "m.creeperWallHead": {"CriteriaName": "minecraft.mined:minecraft.creeper_wall_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Wall Head Mined"}, "json_string": "{\"text\":\"Creeper Wall Head Mined\"}"}}, "u.redConcrete": {"CriteriaName": "minecraft.used:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Used"}, "json_string": "{\"text\":\"Red Concrete Used\"}"}}, "p.whiteStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"White Stained Glass Pane Picked Up\"}"}}, "c.brownGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Crafted\"}"}}, "u.darkOakBoat": {"CriteriaName": "minecraft.used:minecraft.dark_oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Boat Used"}, "json_string": "{\"text\":\"Dark Oak Boat Used\"}"}}, "p.mediumAmethystBud": {"CriteriaName": "minecraft.picked_up:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Picked Up"}, "json_string": "{\"text\":\"Medium Amethyst Bud Picked Up\"}"}}, "m.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Mined\"}"}}, "m.driedKelpBlock": {"CriteriaName": "minecraft.mined:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Mined"}, "json_string": "{\"text\":\"Dried Kelp Block Mined\"}"}}, "b.bread": {"CriteriaName": "minecraft.broken:minecraft.bread", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bread Broken"}, "json_string": "{\"text\":\"Bread Broken\"}"}}, "m.redConcrete": {"CriteriaName": "minecraft.mined:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Mined"}, "json_string": "{\"text\":\"Red Concrete Mined\"}"}}, "c.cookedRabbit": {"CriteriaName": "minecraft.crafted:minecraft.cooked_rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Rabbit Crafted"}, "json_string": "{\"text\":\"Cooked Rabbit Crafted\"}"}}, "b.strippedBirchLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Broken"}, "json_string": "{\"text\":\"Stripped Birch Log Broken\"}"}}, "m.spruceStairs": {"CriteriaName": "minecraft.mined:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Mined"}, "json_string": "{\"text\":\"Spruce Stairs Mined\"}"}}, "b.limeStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Broken\"}"}}, "q.quartzBlock": {"CriteriaName": "minecraft.dropped:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Dropped"}, "json_string": "{\"text\":\"Quartz Block Dropped\"}"}}, "q.warpedWartBlock": {"CriteriaName": "minecraft.dropped:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Dropped"}, "json_string": "{\"text\":\"Warped Wart Block Dropped\"}"}}, "u.wheatSeeds": {"CriteriaName": "minecraft.used:minecraft.wheat_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Seeds Used"}, "json_string": "{\"text\":\"Wheat Seeds Used\"}"}}, "u.musicDiscChirp": {"CriteriaName": "minecraft.used:minecraft.music_disc_chirp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Chirp Used"}, "json_string": "{\"text\":\"Music Disc Chirp Used\"}"}}, "c.goldenHorseArmor": {"CriteriaName": "minecraft.crafted:minecraft.golden_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Horse Armor Crafted"}, "json_string": "{\"text\":\"Golden Horse Armor Crafted\"}"}}, "m.redstoneBlock": {"CriteriaName": "minecraft.mined:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Mined"}, "json_string": "{\"text\":\"Redstone Block Mined\"}"}}, "b.ironAxe": {"CriteriaName": "minecraft.broken:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Axe Broken"}, "json_string": "{\"text\":\"Iron Axe Broken\"}"}}, "m.frostedIce": {"CriteriaName": "minecraft.mined:minecraft.frosted_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Frosted Ice Mined"}, "json_string": "{\"text\":\"Frosted Ice Mined\"}"}}, "p.redNetherBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.red_nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Red Nether Brick Stairs Picked Up\"}"}}, "b.diamond": {"CriteriaName": "minecraft.broken:minecraft.diamond", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Broken"}, "json_string": "{\"text\":\"Diamond Broken\"}"}}, "b.mossyStoneBrickWall": {"CriteriaName": "minecraft.broken:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Broken"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Broken\"}"}}, "b.spruceFenceGate": {"CriteriaName": "minecraft.broken:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Broken"}, "json_string": "{\"text\":\"Spruce Fence Gate Broken\"}"}}, "p.redStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Picked Up"}, "json_string": "{\"text\":\"Red Stained Glass Picked Up\"}"}}, "c.jungleStairs": {"CriteriaName": "minecraft.crafted:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Crafted"}, "json_string": "{\"text\":\"Jungle Stairs Crafted\"}"}}, "p.deadBubbleCoral": {"CriteriaName": "minecraft.picked_up:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Picked Up"}, "json_string": "{\"text\":\"Dead Bubble Coral Picked Up\"}"}}, "armEly.dummy": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "armEly.dummy"}, "json_string": "{\"text\":\"armEly.dummy\"}"}}, "q.woodenPickaxe": {"CriteriaName": "minecraft.dropped:minecraft.wooden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Pickaxe Dropped"}, "json_string": "{\"text\":\"Wooden Pickaxe Dropped\"}"}}, "q.purpleStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Dropped"}, "json_string": "{\"text\":\"Purple Stained Glass Dropped\"}"}}, "m.crimsonStem": {"CriteriaName": "minecraft.mined:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Mined"}, "json_string": "{\"text\":\"Crimson Stem Mined\"}"}}, "c.magentaStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Crafted"}, "json_string": "{\"text\":\"Magenta Stained Glass Crafted\"}"}}, "m.fern": {"CriteriaName": "minecraft.mined:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Mined"}, "json_string": "{\"text\":\"Fern Mined\"}"}}, "c.darkOakSlab": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Crafted"}, "json_string": "{\"text\":\"Dark Oak Slab Crafted\"}"}}, "c.goldenLeggings": {"CriteriaName": "minecraft.crafted:minecraft.golden_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Leggings Crafted"}, "json_string": "{\"text\":\"Golden Leggings Crafted\"}"}}, "m.pinkConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Mined"}, "json_string": "{\"text\":\"Pink Concrete Powder Mined\"}"}}, "c.enderEye": {"CriteriaName": "minecraft.crafted:minecraft.ender_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Eye Crafted"}, "json_string": "{\"text\":\"Ender Eye Crafted\"}"}}, "b.hornCoral": {"CriteriaName": "minecraft.broken:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Broken"}, "json_string": "{\"text\":\"Horn Coral Broken\"}"}}, "b.redCandle": {"CriteriaName": "minecraft.broken:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Broken"}, "json_string": "{\"text\":\"Red Candle Broken\"}"}}, "c.torch": {"CriteriaName": "minecraft.crafted:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Crafted"}, "json_string": "{\"text\":\"Torch Crafted\"}"}}, "q.pumpkinPie": {"CriteriaName": "minecraft.dropped:minecraft.pumpkin_pie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Pie Dropped"}, "json_string": "{\"text\":\"Pumpkin Pie Dropped\"}"}}, "p.blackstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Picked Up"}, "json_string": "{\"text\":\"Blackstone Slab Picked Up\"}"}}, "u.crimsonStem": {"CriteriaName": "minecraft.used:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Used"}, "json_string": "{\"text\":\"Crimson Stem Used\"}"}}, "c.polishedBlackstoneButton": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Button Crafted\"}"}}, "u.smoothQuartz": {"CriteriaName": "minecraft.used:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Used"}, "json_string": "{\"text\":\"Smooth Quartz Used\"}"}}, "p.clay": {"CriteriaName": "minecraft.picked_up:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Picked Up"}, "json_string": "{\"text\":\"Clay Picked Up\"}"}}, "leafDec.birchS": {"CriteriaName": "minecraft.mined:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.birchS"}, "json_string": "{\"text\":\"leafDec.birchS\"}"}}, "c.tropicalFishSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.tropical_fish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Spawn Egg Crafted"}, "json_string": "{\"text\":\"Tropical Fish Spawn Egg Crafted\"}"}}, "u.zoglinSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.zoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zoglin Spawn Egg Used"}, "json_string": "{\"text\":\"Zoglin Spawn Egg Used\"}"}}, "c.map": {"CriteriaName": "minecraft.crafted:minecraft.map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Map Crafted"}, "json_string": "{\"text\":\"Map Crafted\"}"}}, "u.bigDripleaf": {"CriteriaName": "minecraft.used:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Used"}, "json_string": "{\"text\":\"Big Dripleaf Used\"}"}}, "leafDec.birchL": {"CriteriaName": "minecraft.mined:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.birchL"}, "json_string": "{\"text\":\"leafDec.birchL\"}"}}, "m.seagrass": {"CriteriaName": "minecraft.mined:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Mined"}, "json_string": "{\"text\":\"Seagrass Mined\"}"}}, "c.amethystShard": {"CriteriaName": "minecraft.crafted:minecraft.amethyst_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Shard Crafted"}, "json_string": "{\"text\":\"Amethyst Shard Crafted\"}"}}, "q.orangeGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Dropped\"}"}}, "c.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Crafted\"}"}}, "c.spruceLog": {"CriteriaName": "minecraft.crafted:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Crafted"}, "json_string": "{\"text\":\"Spruce Log Crafted\"}"}}, "m.jungleDoor": {"CriteriaName": "minecraft.mined:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Mined"}, "json_string": "{\"text\":\"Jungle Door Mined\"}"}}, "m.deadTubeCoral": {"CriteriaName": "minecraft.mined:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Mined"}, "json_string": "{\"text\":\"Dead Tube Coral Mined\"}"}}, "c.crimsonFence": {"CriteriaName": "minecraft.crafted:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Crafted"}, "json_string": "{\"text\":\"Crimson Fence Crafted\"}"}}, "b.granite": {"CriteriaName": "minecraft.broken:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Broken"}, "json_string": "{\"text\":\"Granite Broken\"}"}}, "c.tintedGlass": {"CriteriaName": "minecraft.crafted:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Crafted"}, "json_string": "{\"text\":\"Tinted Glass Crafted\"}"}}, "m.cyanWool": {"CriteriaName": "minecraft.mined:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Mined"}, "json_string": "{\"text\":\"Cyan Wool Mined\"}"}}, "u.sunflower": {"CriteriaName": "minecraft.used:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Used"}, "json_string": "{\"text\":\"Sunflower Used\"}"}}, "u.blueOrchid": {"CriteriaName": "minecraft.used:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Used"}, "json_string": "{\"text\":\"Blue Orchid Used\"}"}}, "q.cyanStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Dropped\"}"}}, "q.endStoneBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Dropped"}, "json_string": "{\"text\":\"End Stone Brick Wall Dropped\"}"}}, "u.lilyOfTheValley": {"CriteriaName": "minecraft.used:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Used"}, "json_string": "{\"text\":\"Lily Of The Valley Used\"}"}}, "u.ironIngot": {"CriteriaName": "minecraft.used:minecraft.iron_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ingot Used"}, "json_string": "{\"text\":\"Iron Ingot Used\"}"}}, "m.bigDripleaf": {"CriteriaName": "minecraft.mined:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Mined"}, "json_string": "{\"text\":\"Big Dripleaf Mined\"}"}}, "p.traderLlamaSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.trader_llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Trader Llama Spawn Egg Picked Up\"}"}}, "c.spiderEye": {"CriteriaName": "minecraft.crafted:minecraft.spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Eye Crafted"}, "json_string": "{\"text\":\"Spider Eye Crafted\"}"}}, "m.infestedStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Mined"}, "json_string": "{\"text\":\"Infested Stone Bricks Mined\"}"}}, "p.deadHornCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Picked Up"}, "json_string": "{\"text\":\"Dead Horn Coral Block Picked Up\"}"}}, "u.jungleSapling": {"CriteriaName": "minecraft.used:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Used"}, "json_string": "{\"text\":\"Jungle Sapling Used\"}"}}, "b.donkeySpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.donkey_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Spawn Egg Broken"}, "json_string": "{\"text\":\"Donkey Spawn Egg Broken\"}"}}, "p.crimsonPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Crimson Pressure Plate Picked Up\"}"}}, "c.axolotlBucket": {"CriteriaName": "minecraft.crafted:minecraft.axolotl_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Bucket Crafted"}, "json_string": "{\"text\":\"Axolotl Bucket Crafted\"}"}}, "q.netheriteBlock": {"CriteriaName": "minecraft.dropped:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Dropped"}, "json_string": "{\"text\":\"Netherite Block Dropped\"}"}}, "tc.value": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.value"}, "json_string": "{\"text\":\"tc.value\"}"}}, "c.tripwireHook": {"CriteriaName": "minecraft.crafted:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Crafted"}, "json_string": "{\"text\":\"Tripwire Hook Crafted\"}"}}, "u.brownMushroomBlock": {"CriteriaName": "minecraft.used:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Used"}, "json_string": "{\"text\":\"Brown Mushroom Block Used\"}"}}, "b.blackDye": {"CriteriaName": "minecraft.broken:minecraft.black_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Dye Broken"}, "json_string": "{\"text\":\"Black Dye Broken\"}"}}, "b.warpedStairs": {"CriteriaName": "minecraft.broken:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Broken"}, "json_string": "{\"text\":\"Warped Stairs Broken\"}"}}, "u.lightningRod": {"CriteriaName": "minecraft.used:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Used"}, "json_string": "{\"text\":\"Lightning Rod Used\"}"}}, "c.witherRose": {"CriteriaName": "minecraft.crafted:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Crafted"}, "json_string": "{\"text\":\"Wither Rose Crafted\"}"}}, "q.grayTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Dropped"}, "json_string": "{\"text\":\"Gray Terracotta Dropped\"}"}}, "g.sleepInBed": {"CriteriaName": "minecraft.custom:minecraft.sleep_in_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sleep in Bed"}, "json_string": "{\"text\":\"Sleep in Bed\"}"}}, "p.blackConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Picked Up"}, "json_string": "{\"text\":\"Black Concrete Picked Up\"}"}}, "u.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.used:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Used"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Used\"}"}}, "p.darkPrismarineStairs": {"CriteriaName": "minecraft.picked_up:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Picked Up"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Picked Up\"}"}}, "q.cutSandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Cut Sandstone Slab Dropped\"}"}}, "p.blazePowder": {"CriteriaName": "minecraft.picked_up:minecraft.blaze_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Powder Picked Up"}, "json_string": "{\"text\":\"Blaze Powder Picked Up\"}"}}, "c.fletchingTable": {"CriteriaName": "minecraft.crafted:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Crafted"}, "json_string": "{\"text\":\"Fletching Table Crafted\"}"}}, "p.purpleConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Purple Concrete Powder Picked Up\"}"}}, "c.mossyStoneBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Crafted"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Crafted\"}"}}, "u.deepslate": {"CriteriaName": "minecraft.used:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Used"}, "json_string": "{\"text\":\"Deepslate Used\"}"}}, "q.rabbitHide": {"CriteriaName": "minecraft.dropped:minecraft.rabbit_hide", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Hide Dropped"}, "json_string": "{\"text\":\"Rabbit Hide Dropped\"}"}}, "u.snow": {"CriteriaName": "minecraft.used:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Used"}, "json_string": "{\"text\":\"Snow Used\"}"}}, "p.fireCoral": {"CriteriaName": "minecraft.picked_up:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Picked Up"}, "json_string": "{\"text\":\"Fire Coral Picked Up\"}"}}, "p.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Picked Up\"}"}}, "p.greenStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Picked Up"}, "json_string": "{\"text\":\"Green Stained Glass Picked Up\"}"}}, "q.stonePickaxe": {"CriteriaName": "minecraft.dropped:minecraft.stone_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pickaxe Dropped"}, "json_string": "{\"text\":\"Stone Pickaxe Dropped\"}"}}, "m.oxidizedCutCopper": {"CriteriaName": "minecraft.mined:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Mined"}, "json_string": "{\"text\":\"Oxidized Cut Copper Mined\"}"}}, "p.netheriteShovel": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Shovel Picked Up"}, "json_string": "{\"text\":\"Netherite Shovel Picked Up\"}"}}, "q.deadTubeCoral": {"CriteriaName": "minecraft.dropped:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Dropped"}, "json_string": "{\"text\":\"Dead Tube Coral Dropped\"}"}}, "b.chainCommandBlock": {"CriteriaName": "minecraft.broken:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Broken"}, "json_string": "{\"text\":\"Chain Command Block Broken\"}"}}, "b.mushroomStew": {"CriteriaName": "minecraft.broken:minecraft.mushroom_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stew Broken"}, "json_string": "{\"text\":\"Mushroom Stew Broken\"}"}}, "c.drownedSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.drowned_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Spawn Egg Crafted"}, "json_string": "{\"text\":\"Drowned Spawn Egg Crafted\"}"}}, "g.timeSinceRest": {"CriteriaName": "minecraft.custom:minecraft.time_since_rest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Time Since Rest"}, "json_string": "{\"text\":\"Time Since Rest\"}"}}, "q.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Dropped"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Dropped\"}"}}, "c.netherBrickFence": {"CriteriaName": "minecraft.crafted:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Crafted"}, "json_string": "{\"text\":\"Nether Brick Fence Crafted\"}"}}, "m.pottedBrownMushroom": {"CriteriaName": "minecraft.mined:minecraft.potted_brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Brown Mushroom Mined"}, "json_string": "{\"text\":\"Potted Brown Mushroom Mined\"}"}}, "q.crimsonSlab": {"CriteriaName": "minecraft.dropped:minecraft.crimson_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Slab Dropped"}, "json_string": "{\"text\":\"Crimson Slab Dropped\"}"}}, "q.fireworkStar": {"CriteriaName": "minecraft.dropped:minecraft.firework_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Star Dropped"}, "json_string": "{\"text\":\"Firework Star Dropped\"}"}}, "b.mushroomStem": {"CriteriaName": "minecraft.broken:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Broken"}, "json_string": "{\"text\":\"Mushroom Stem Broken\"}"}}, "b.netherBricks": {"CriteriaName": "minecraft.broken:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Broken"}, "json_string": "{\"text\":\"Nether Bricks Broken\"}"}}, "p.brainCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Picked Up"}, "json_string": "{\"text\":\"Brain Coral Block Picked Up\"}"}}, "m.stoneSlab": {"CriteriaName": "minecraft.mined:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Mined"}, "json_string": "{\"text\":\"Stone Slab Mined\"}"}}, "m.endStone": {"CriteriaName": "minecraft.mined:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Mined"}, "json_string": "{\"text\":\"End Stone Mined\"}"}}, "m.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Mined\"}"}}, "m.boneBlock": {"CriteriaName": "minecraft.mined:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Mined"}, "json_string": "{\"text\":\"Bone Block Mined\"}"}}, "c.darkOakLog": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Crafted"}, "json_string": "{\"text\":\"Dark Oak Log Crafted\"}"}}, "u.strippedJungleLog": {"CriteriaName": "minecraft.used:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Used"}, "json_string": "{\"text\":\"Stripped Jungle Log Used\"}"}}, "q.darkOakButton": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Dropped"}, "json_string": "{\"text\":\"Dark Oak Button Dropped\"}"}}, "b.cutCopper": {"CriteriaName": "minecraft.broken:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Broken"}, "json_string": "{\"text\":\"Cut Copper Broken\"}"}}, "p.goldenHorseArmor": {"CriteriaName": "minecraft.picked_up:minecraft.golden_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Horse Armor Picked Up"}, "json_string": "{\"text\":\"Golden Horse Armor Picked Up\"}"}}, "c.playerHead": {"CriteriaName": "minecraft.crafted:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Crafted"}, "json_string": "{\"text\":\"Player Head Crafted\"}"}}, "p.hangingRoots": {"CriteriaName": "minecraft.picked_up:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Picked Up"}, "json_string": "{\"text\":\"Hanging Roots Picked Up\"}"}}, "q.rail": {"CriteriaName": "minecraft.dropped:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Dropped"}, "json_string": "{\"text\":\"Rail Dropped\"}"}}, "p.detectorRail": {"CriteriaName": "minecraft.picked_up:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Picked Up"}, "json_string": "{\"text\":\"Detector Rail Picked Up\"}"}}, "b.polishedBlackstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Broken"}, "json_string": "{\"text\":\"Polished Blackstone Slab Broken\"}"}}, "q.hornCoral": {"CriteriaName": "minecraft.dropped:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Dropped"}, "json_string": "{\"text\":\"Horn Coral Dropped\"}"}}, "p.netheriteHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Helmet Picked Up"}, "json_string": "{\"text\":\"Netherite Helmet Picked Up\"}"}}, "q.mossBlock": {"CriteriaName": "minecraft.dropped:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Dropped"}, "json_string": "{\"text\":\"Moss Block Dropped\"}"}}, "p.suspiciousStew": {"CriteriaName": "minecraft.picked_up:minecraft.suspicious_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Suspicious Stew Picked Up"}, "json_string": "{\"text\":\"Suspicious Stew Picked Up\"}"}}, "q.redstoneBlock": {"CriteriaName": "minecraft.dropped:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Dropped"}, "json_string": "{\"text\":\"Redstone Block Dropped\"}"}}, "m.tubeCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Block Mined"}, "json_string": "{\"text\":\"Tube Coral Block Mined\"}"}}, "c.rail": {"CriteriaName": "minecraft.crafted:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Crafted"}, "json_string": "{\"text\":\"Rail Crafted\"}"}}, "m.darkOakButton": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Mined"}, "json_string": "{\"text\":\"Dark Oak Button Mined\"}"}}, "c.pinkCarpet": {"CriteriaName": "minecraft.crafted:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Crafted"}, "json_string": "{\"text\":\"Pink Carpet Crafted\"}"}}, "u.lapisBlock": {"CriteriaName": "minecraft.used:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Used"}, "json_string": "{\"text\":\"Lapis Block Used\"}"}}, "m.brewingStand": {"CriteriaName": "minecraft.mined:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Mined"}, "json_string": "{\"text\":\"Brewing Stand Mined\"}"}}, "c.goldenPickaxe": {"CriteriaName": "minecraft.crafted:minecraft.golden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Pickaxe Crafted"}, "json_string": "{\"text\":\"Golden Pickaxe Crafted\"}"}}, "m.polishedBasalt": {"CriteriaName": "minecraft.mined:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Mined"}, "json_string": "{\"text\":\"Polished Basalt Mined\"}"}}, "b.clay": {"CriteriaName": "minecraft.broken:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Broken"}, "json_string": "{\"text\":\"Clay Broken\"}"}}, "c.paper": {"CriteriaName": "minecraft.crafted:minecraft.paper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Paper Crafted"}, "json_string": "{\"text\":\"Paper Crafted\"}"}}, "u.ironShovel": {"CriteriaName": "minecraft.used:minecraft.iron_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Shovel Used"}, "json_string": "{\"text\":\"Iron Shovel Used\"}"}}, "u.stoneButton": {"CriteriaName": "minecraft.used:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Used"}, "json_string": "{\"text\":\"Stone Button Used\"}"}}, "m.dragonWallHead": {"CriteriaName": "minecraft.mined:minecraft.dragon_wall_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Wall Head Mined"}, "json_string": "{\"text\":\"Dragon Wall Head Mined\"}"}}, "cu.interactWithStonecutter": {"CriteriaName": "minecraft.custom:minecraft.interact_with_stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Stonecutter"}, "json_string": "{\"text\":\"Interact With Stonecutter\"}"}}, "q.jungleSapling": {"CriteriaName": "minecraft.dropped:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Dropped"}, "json_string": "{\"text\":\"Jungle Sapling Dropped\"}"}}, "q.ladder": {"CriteriaName": "minecraft.dropped:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Dropped"}, "json_string": "{\"text\":\"Ladder Dropped\"}"}}, "m.glowLichen": {"CriteriaName": "minecraft.mined:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Mined"}, "json_string": "{\"text\":\"Glow Lichen Mined\"}"}}, "m.yellowBed": {"CriteriaName": "minecraft.mined:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Mined"}, "json_string": "{\"text\":\"Yellow Bed Mined\"}"}}, "p.birchStairs": {"CriteriaName": "minecraft.picked_up:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Picked Up"}, "json_string": "{\"text\":\"Birch Stairs Picked Up\"}"}}, "u.brewingStand": {"CriteriaName": "minecraft.used:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Used"}, "json_string": "{\"text\":\"Brewing Stand Used\"}"}}, "p.redstoneTorch": {"CriteriaName": "minecraft.picked_up:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Picked Up"}, "json_string": "{\"text\":\"Redstone Torch Picked Up\"}"}}, "m.stoneButton": {"CriteriaName": "minecraft.mined:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Mined"}, "json_string": "{\"text\":\"Stone Button Mined\"}"}}, "p.fireCharge": {"CriteriaName": "minecraft.picked_up:minecraft.fire_charge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Charge Picked Up"}, "json_string": "{\"text\":\"Fire Charge Picked Up\"}"}}, "p.snowBlock": {"CriteriaName": "minecraft.picked_up:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Picked Up"}, "json_string": "{\"text\":\"Snow Block Picked Up\"}"}}, "p.deepslateTileWall": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Picked Up"}, "json_string": "{\"text\":\"Deepslate Tile Wall Picked Up\"}"}}, "u.deadBubbleCoralBlock": {"CriteriaName": "minecraft.used:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Used"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Used\"}"}}, "q.limeCarpet": {"CriteriaName": "minecraft.dropped:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Dropped"}, "json_string": "{\"text\":\"Lime Carpet Dropped\"}"}}, "c.roseBush": {"CriteriaName": "minecraft.crafted:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Crafted"}, "json_string": "{\"text\":\"Rose Bush Crafted\"}"}}, "q.yellowCarpet": {"CriteriaName": "minecraft.dropped:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Dropped"}, "json_string": "{\"text\":\"Yellow Carpet Dropped\"}"}}, "m.bubbleCoralFan": {"CriteriaName": "minecraft.mined:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Mined"}, "json_string": "{\"text\":\"Bubble Coral Fan Mined\"}"}}, "p.cutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Cut Copper Stairs Picked Up\"}"}}, "p.oakSapling": {"CriteriaName": "minecraft.picked_up:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Picked Up"}, "json_string": "{\"text\":\"Oak Sapling Picked Up\"}"}}, "b.limeBed": {"CriteriaName": "minecraft.broken:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Broken"}, "json_string": "{\"text\":\"Lime Bed Broken\"}"}}, "q.blackCarpet": {"CriteriaName": "minecraft.dropped:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Dropped"}, "json_string": "{\"text\":\"Black Carpet Dropped\"}"}}, "p.andesiteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Picked Up"}, "json_string": "{\"text\":\"Andesite Stairs Picked Up\"}"}}, "b.endRod": {"CriteriaName": "minecraft.broken:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Broken"}, "json_string": "{\"text\":\"End Rod Broken\"}"}}, "d.fox": {"CriteriaName": "minecraft.killed_by:minecraft.fox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Fox"}, "json_string": "{\"text\":\"Killed by Fox\"}"}}, "p.crimsonHyphae": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Picked Up"}, "json_string": "{\"text\":\"Crimson Hyphae Picked Up\"}"}}, "p.creeperBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.creeper_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Creeper Banner Pattern Picked Up\"}"}}, "b.yellowConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Broken"}, "json_string": "{\"text\":\"Yellow Concrete Powder Broken\"}"}}, "m.deadHornCoralFan": {"CriteriaName": "minecraft.mined:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Mined"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Mined\"}"}}, "m.limeShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Mined"}, "json_string": "{\"text\":\"Lime Shulker Box Mined\"}"}}, "m.grayShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Mined"}, "json_string": "{\"text\":\"Gray Shulker Box Mined\"}"}}, "b.birchPlanks": {"CriteriaName": "minecraft.broken:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Broken"}, "json_string": "{\"text\":\"Birch Planks Broken\"}"}}, "g.playRecord": {"CriteriaName": "minecraft.custom:minecraft.play_record", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Play Record"}, "json_string": "{\"text\":\"Play Record\"}"}}, "b.glowstoneDust": {"CriteriaName": "minecraft.broken:minecraft.glowstone_dust", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dust Broken"}, "json_string": "{\"text\":\"Glowstone Dust Broken\"}"}}, "m.spruceSlab": {"CriteriaName": "minecraft.mined:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Mined"}, "json_string": "{\"text\":\"Spruce Slab Mined\"}"}}, "b.prismarineStairs": {"CriteriaName": "minecraft.broken:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Broken"}, "json_string": "{\"text\":\"Prismarine Stairs Broken\"}"}}, "q.wheat": {"CriteriaName": "minecraft.dropped:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Dropped"}, "json_string": "{\"text\":\"Wheat Dropped\"}"}}, "m.blueIce": {"CriteriaName": "minecraft.mined:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Mined"}, "json_string": "{\"text\":\"Blue Ice Mined\"}"}}, "p.smoothStoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Picked Up"}, "json_string": "{\"text\":\"Smooth Stone Slab Picked Up\"}"}}, "q.endCrystal": {"CriteriaName": "minecraft.dropped:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Dropped"}, "json_string": "{\"text\":\"End Crystal Dropped\"}"}}, "b.acaciaSapling": {"CriteriaName": "minecraft.broken:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Broken"}, "json_string": "{\"text\":\"Acacia Sapling Broken\"}"}}, "cu.minecartOneCm": {"CriteriaName": "minecraft.custom:minecraft.minecart_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart One Cm"}, "json_string": "{\"text\":\"Minecart One Cm\"}"}}, "p.orangeBanner": {"CriteriaName": "minecraft.picked_up:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Picked Up"}, "json_string": "{\"text\":\"Orange Banner Picked Up\"}"}}, "b.grayConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Broken"}, "json_string": "{\"text\":\"Gray Concrete Powder Broken\"}"}}, "q.stone": {"CriteriaName": "minecraft.dropped:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Dropped"}, "json_string": "{\"text\":\"Stone Dropped\"}"}}, "q.prismarineShard": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Shard Dropped"}, "json_string": "{\"text\":\"Prismarine Shard Dropped\"}"}}, "m.endPortalFrame": {"CriteriaName": "minecraft.mined:minecraft.end_portal_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Frame Mined"}, "json_string": "{\"text\":\"End Portal Frame Mined\"}"}}, "m.pottedBamboo": {"CriteriaName": "minecraft.mined:minecraft.potted_bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Bamboo Mined"}, "json_string": "{\"text\":\"Potted Bamboo Mined\"}"}}, "q.fireCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Dropped"}, "json_string": "{\"text\":\"Fire Coral Block Dropped\"}"}}, "b.stoneBrickWall": {"CriteriaName": "minecraft.broken:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Broken"}, "json_string": "{\"text\":\"Stone Brick Wall Broken\"}"}}, "u.brainCoralBlock": {"CriteriaName": "minecraft.used:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Used"}, "json_string": "{\"text\":\"Brain Coral Block Used\"}"}}, "c.polishedBlackstoneWall": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Wall Crafted\"}"}}, "c.purpleBed": {"CriteriaName": "minecraft.crafted:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Crafted"}, "json_string": "{\"text\":\"Purple Bed Crafted\"}"}}, "u.porkchop": {"CriteriaName": "minecraft.used:minecraft.porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Porkchop Used"}, "json_string": "{\"text\":\"Porkchop Used\"}"}}, "b.hopper": {"CriteriaName": "minecraft.broken:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Broken"}, "json_string": "{\"text\":\"Hopper Broken\"}"}}, "c.darkOakFence": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Crafted"}, "json_string": "{\"text\":\"Dark Oak Fence Crafted\"}"}}, "p.pinkStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Picked Up\"}"}}, "q.dioriteWall": {"CriteriaName": "minecraft.dropped:minecraft.diorite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Wall Dropped"}, "json_string": "{\"text\":\"Diorite Wall Dropped\"}"}}, "u.shears": {"CriteriaName": "minecraft.used:minecraft.shears", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shears Used"}, "json_string": "{\"text\":\"Shears Used\"}"}}, "m.exposedCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Mined\"}"}}, "c.obsidian": {"CriteriaName": "minecraft.crafted:minecraft.obsidian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Obsidian Crafted"}, "json_string": "{\"text\":\"Obsidian Crafted\"}"}}, "b.orangeConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Broken"}, "json_string": "{\"text\":\"Orange Concrete Powder Broken\"}"}}, "u.sporeBlossom": {"CriteriaName": "minecraft.used:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Used"}, "json_string": "{\"text\":\"Spore Blossom Used\"}"}}, "m.purpleTerracotta": {"CriteriaName": "minecraft.mined:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Mined"}, "json_string": "{\"text\":\"Purple Terracotta Mined\"}"}}, "m.pinkConcrete": {"CriteriaName": "minecraft.mined:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Mined"}, "json_string": "{\"text\":\"Pink Concrete Mined\"}"}}, "q.brownStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Dropped"}, "json_string": "{\"text\":\"Brown Stained Glass Dropped\"}"}}, "b.lever": {"CriteriaName": "minecraft.broken:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Broken"}, "json_string": "{\"text\":\"Lever Broken\"}"}}, "b.warpedNylium": {"CriteriaName": "minecraft.broken:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Broken"}, "json_string": "{\"text\":\"Warped Nylium Broken\"}"}}, "m.lightBlueCandle": {"CriteriaName": "minecraft.mined:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Mined"}, "json_string": "{\"text\":\"Light Blue Candle Mined\"}"}}, "u.fletchingTable": {"CriteriaName": "minecraft.used:minecraft.fletching_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fletching Table Used"}, "json_string": "{\"text\":\"Fletching Table Used\"}"}}, "u.cookedChicken": {"CriteriaName": "minecraft.used:minecraft.cooked_chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Chicken Used"}, "json_string": "{\"text\":\"Cooked Chicken Used\"}"}}, "m.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.mined:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Mined"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Mined\"}"}}, "m.whiteTerracotta": {"CriteriaName": "minecraft.mined:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Mined"}, "json_string": "{\"text\":\"White Terracotta Mined\"}"}}, "m.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Mined\"}"}}, "c.copperIngot": {"CriteriaName": "minecraft.crafted:minecraft.copper_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ingot Crafted"}, "json_string": "{\"text\":\"Copper Ingot Crafted\"}"}}, "p.whiteBanner": {"CriteriaName": "minecraft.picked_up:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Picked Up"}, "json_string": "{\"text\":\"White Banner Picked Up\"}"}}, "u.poisonousPotato": {"CriteriaName": "minecraft.used:minecraft.poisonous_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poisonous Potato Used"}, "json_string": "{\"text\":\"Poisonous Potato Used\"}"}}, "u.seaPickle": {"CriteriaName": "minecraft.used:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Used"}, "json_string": "{\"text\":\"Sea Pickle Used\"}"}}, "u.bow": {"CriteriaName": "minecraft.used:minecraft.bow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bow Used"}, "json_string": "{\"text\":\"Bow Used\"}"}}, "m.acaciaSlab": {"CriteriaName": "minecraft.mined:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Mined"}, "json_string": "{\"text\":\"Acacia Slab Mined\"}"}}, "q.furnace": {"CriteriaName": "minecraft.dropped:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Dropped"}, "json_string": "{\"text\":\"Furnace Dropped\"}"}}, "m.air": {"CriteriaName": "minecraft.mined:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Mined"}, "json_string": "{\"text\":\"Air Mined\"}"}}, "b.lightBlueShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Broken"}, "json_string": "{\"text\":\"Light Blue Shulker Box Broken\"}"}}, "q.grayConcrete": {"CriteriaName": "minecraft.dropped:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Dropped"}, "json_string": "{\"text\":\"Gray Concrete Dropped\"}"}}, "g.drop": {"CriteriaName": "minecraft.custom:minecraft.drop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drop"}, "json_string": "{\"text\":\"Drop\"}"}}, "p.noteBlock": {"CriteriaName": "minecraft.picked_up:minecraft.note_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Note Block Picked Up"}, "json_string": "{\"text\":\"Note Block Picked Up\"}"}}, "b.yellowDye": {"CriteriaName": "minecraft.broken:minecraft.yellow_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Dye Broken"}, "json_string": "{\"text\":\"Yellow Dye Broken\"}"}}, "cu.horseOneCm": {"CriteriaName": "minecraft.custom:minecraft.horse_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse One Cm"}, "json_string": "{\"text\":\"Horse One Cm\"}"}}, "c.carrot": {"CriteriaName": "minecraft.crafted:minecraft.carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot Crafted"}, "json_string": "{\"text\":\"Carrot Crafted\"}"}}, "p.exposedCopper": {"CriteriaName": "minecraft.picked_up:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Picked Up"}, "json_string": "{\"text\":\"Exposed Copper Picked Up\"}"}}, "c.blackBanner": {"CriteriaName": "minecraft.crafted:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Crafted"}, "json_string": "{\"text\":\"Black Banner Crafted\"}"}}, "b.diamondHoe": {"CriteriaName": "minecraft.broken:minecraft.diamond_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Hoe Broken"}, "json_string": "{\"text\":\"Diamond Hoe Broken\"}"}}, "u.chestMinecart": {"CriteriaName": "minecraft.used:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Used"}, "json_string": "{\"text\":\"Chest Minecart Used\"}"}}, "u.tippedArrow": {"CriteriaName": "minecraft.used:minecraft.tipped_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tipped Arrow Used"}, "json_string": "{\"text\":\"Tipped Arrow Used\"}"}}, "q.deadFireCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Dropped"}, "json_string": "{\"text\":\"Dead Fire Coral Block Dropped\"}"}}, "m.magentaBed": {"CriteriaName": "minecraft.mined:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Mined"}, "json_string": "{\"text\":\"Magenta Bed Mined\"}"}}, "u.deadFireCoralBlock": {"CriteriaName": "minecraft.used:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Used"}, "json_string": "{\"text\":\"Dead Fire Coral Block Used\"}"}}, "p.carrot": {"CriteriaName": "minecraft.picked_up:minecraft.carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot Picked Up"}, "json_string": "{\"text\":\"Carrot Picked Up\"}"}}, "b.poweredRail": {"CriteriaName": "minecraft.broken:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Broken"}, "json_string": "{\"text\":\"Powered Rail Broken\"}"}}, "q.rottenFlesh": {"CriteriaName": "minecraft.dropped:minecraft.rotten_flesh", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rotten Flesh Dropped"}, "json_string": "{\"text\":\"Rotten Flesh Dropped\"}"}}, "m.acaciaTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Mined"}, "json_string": "{\"text\":\"Acacia Trapdoor Mined\"}"}}, "q.mossyCobblestoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Dropped"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Dropped\"}"}}, "p.darkOakLog": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Log Picked Up"}, "json_string": "{\"text\":\"Dark Oak Log Picked Up\"}"}}, "m.yellowTerracotta": {"CriteriaName": "minecraft.mined:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Mined"}, "json_string": "{\"text\":\"Yellow Terracotta Mined\"}"}}, "u.pumpkin": {"CriteriaName": "minecraft.used:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Used"}, "json_string": "{\"text\":\"Pumpkin Used\"}"}}, "b.pinkConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Broken"}, "json_string": "{\"text\":\"Pink Concrete Powder Broken\"}"}}, "q.rawCopper": {"CriteriaName": "minecraft.dropped:minecraft.raw_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Dropped"}, "json_string": "{\"text\":\"Raw Copper Dropped\"}"}}, "p.musicDiscWard": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_ward", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Ward Picked Up"}, "json_string": "{\"text\":\"Music Disc Ward Picked Up\"}"}}, "q.musicDiscMall": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_mall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mall Dropped"}, "json_string": "{\"text\":\"Music Disc Mall Dropped\"}"}}, "u.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Used"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Used\"}"}}, "k.painting": {"CriteriaName": "minecraft.killed:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Killed"}, "json_string": "{\"text\":\"Painting Killed\"}"}}, "b.foxSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.fox_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Spawn Egg Broken"}, "json_string": "{\"text\":\"Fox Spawn Egg Broken\"}"}}, "q.magentaDye": {"CriteriaName": "minecraft.dropped:minecraft.magenta_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Dye Dropped"}, "json_string": "{\"text\":\"Magenta Dye Dropped\"}"}}, "c.whiteGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"White Glazed Terracotta Crafted\"}"}}, "b.porkchop": {"CriteriaName": "minecraft.broken:minecraft.porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Porkchop Broken"}, "json_string": "{\"text\":\"Porkchop Broken\"}"}}, "b.salmonBucket": {"CriteriaName": "minecraft.broken:minecraft.salmon_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Bucket Broken"}, "json_string": "{\"text\":\"Salmon Bucket Broken\"}"}}, "b.bubbleCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Broken"}, "json_string": "{\"text\":\"Bubble Coral Block Broken\"}"}}, "u.netherBrickWall": {"CriteriaName": "minecraft.used:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Used"}, "json_string": "{\"text\":\"Nether Brick Wall Used\"}"}}, "cu.killedByGrayTeam": {"CriteriaName": "killedByTeam.gray", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Gray Team"}, "json_string": "{\"text\":\"Killed by Gray Team\"}"}}, "q.gravel": {"CriteriaName": "minecraft.dropped:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Dropped"}, "json_string": "{\"text\":\"Gravel Dropped\"}"}}, "b.redNetherBrickWall": {"CriteriaName": "minecraft.broken:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Broken"}, "json_string": "{\"text\":\"Red Nether Brick Wall Broken\"}"}}, "m.coalOre": {"CriteriaName": "minecraft.mined:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Mined"}, "json_string": "{\"text\":\"Coal Ore Mined\"}"}}, "u.jungleBoat": {"CriteriaName": "minecraft.used:minecraft.jungle_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Boat Used"}, "json_string": "{\"text\":\"Jungle Boat Used\"}"}}, "q.lightGrayShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Dropped"}, "json_string": "{\"text\":\"Light Gray Shulker Box Dropped\"}"}}, "q.magmaCubeSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.magma_cube_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Spawn Egg Dropped"}, "json_string": "{\"text\":\"Magma Cube Spawn Egg Dropped\"}"}}, "m.cyanShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.cyan_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Shulker Box Mined"}, "json_string": "{\"text\":\"Cyan Shulker Box Mined\"}"}}, "p.strippedAcaciaWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Acacia Wood Picked Up\"}"}}, "m.yellowConcrete": {"CriteriaName": "minecraft.mined:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Mined"}, "json_string": "{\"text\":\"Yellow Concrete Mined\"}"}}, "u.polishedGraniteSlab": {"CriteriaName": "minecraft.used:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Used"}, "json_string": "{\"text\":\"Polished Granite Slab Used\"}"}}, "c.cyanStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Crafted"}, "json_string": "{\"text\":\"Cyan Stained Glass Crafted\"}"}}, "m.turtleEgg": {"CriteriaName": "minecraft.mined:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Mined"}, "json_string": "{\"text\":\"Turtle Egg Mined\"}"}}, "m.yellowCandleCake": {"CriteriaName": "minecraft.mined:minecraft.yellow_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Cake Mined"}, "json_string": "{\"text\":\"Yellow Candle Cake Mined\"}"}}, "q.dirtPath": {"CriteriaName": "minecraft.dropped:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Dropped"}, "json_string": "{\"text\":\"Dirt Path Dropped\"}"}}, "m.pottedCrimsonFungus": {"CriteriaName": "minecraft.mined:minecraft.potted_crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Crimson Fungus Mined"}, "json_string": "{\"text\":\"Potted Crimson Fungus Mined\"}"}}, "b.darkOakPlanks": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Broken"}, "json_string": "{\"text\":\"Dark Oak Planks Broken\"}"}}, "q.birchSapling": {"CriteriaName": "minecraft.dropped:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Dropped"}, "json_string": "{\"text\":\"Birch Sapling Dropped\"}"}}, "p.goldBlock": {"CriteriaName": "minecraft.picked_up:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Picked Up"}, "json_string": "{\"text\":\"Gold Block Picked Up\"}"}}, "c.zombieVillagerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.zombie_villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Spawn Egg Crafted"}, "json_string": "{\"text\":\"Zombie Villager Spawn Egg Crafted\"}"}}, "u.chicken": {"CriteriaName": "minecraft.used:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Used"}, "json_string": "{\"text\":\"Chicken Used\"}"}}, "p.strippedJungleWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Jungle Wood Picked Up\"}"}}, "m.ironTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Mined"}, "json_string": "{\"text\":\"Iron Trapdoor Mined\"}"}}, "u.chainCommandBlock": {"CriteriaName": "minecraft.used:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Used"}, "json_string": "{\"text\":\"Chain Command Block Used\"}"}}, "p.cobblestoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Picked Up"}, "json_string": "{\"text\":\"Cobblestone Slab Picked Up\"}"}}, "m.crimsonTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Mined"}, "json_string": "{\"text\":\"Crimson Trapdoor Mined\"}"}}, "b.lightBlueDye": {"CriteriaName": "minecraft.broken:minecraft.light_blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Dye Broken"}, "json_string": "{\"text\":\"Light Blue Dye Broken\"}"}}, "q.shulkerShell": {"CriteriaName": "minecraft.dropped:minecraft.shulker_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Shell Dropped"}, "json_string": "{\"text\":\"Shulker Shell Dropped\"}"}}, "m.pinkWallBanner": {"CriteriaName": "minecraft.mined:minecraft.pink_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wall Banner Mined"}, "json_string": "{\"text\":\"Pink Wall Banner Mined\"}"}}, "m.lightWeightedPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Mined"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Mined\"}"}}, "u.beetrootSeeds": {"CriteriaName": "minecraft.used:minecraft.beetroot_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Seeds Used"}, "json_string": "{\"text\":\"Beetroot Seeds Used\"}"}}, "c.pufferfishBucket": {"CriteriaName": "minecraft.crafted:minecraft.pufferfish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Bucket Crafted"}, "json_string": "{\"text\":\"Pufferfish Bucket Crafted\"}"}}, "m.smoker": {"CriteriaName": "minecraft.mined:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Mined"}, "json_string": "{\"text\":\"Smoker Mined\"}"}}, "b.deepslateTileSlab": {"CriteriaName": "minecraft.broken:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Broken"}, "json_string": "{\"text\":\"Deepslate Tile Slab Broken\"}"}}, "c.endStoneBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Crafted"}, "json_string": "{\"text\":\"End Stone Brick Stairs Crafted\"}"}}, "m.exposedCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Mined\"}"}}, "c.elderGuardianSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.elder_guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Spawn Egg Crafted"}, "json_string": "{\"text\":\"Elder Guardian Spawn Egg Crafted\"}"}}, "b.bow": {"CriteriaName": "minecraft.broken:minecraft.bow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bow Broken"}, "json_string": "{\"text\":\"Bow Broken\"}"}}, "u.copperBlock": {"CriteriaName": "minecraft.used:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Used"}, "json_string": "{\"text\":\"Copper Block Used\"}"}}, "c.cutRedSandstone": {"CriteriaName": "minecraft.crafted:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Crafted"}, "json_string": "{\"text\":\"Cut Red Sandstone Crafted\"}"}}, "b.lightBlueBanner": {"CriteriaName": "minecraft.broken:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Broken"}, "json_string": "{\"text\":\"Light Blue Banner Broken\"}"}}, "m.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Mined"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Mined\"}"}}, "m.copperBlock": {"CriteriaName": "minecraft.mined:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Mined"}, "json_string": "{\"text\":\"Copper Block Mined\"}"}}, "c.pinkCandle": {"CriteriaName": "minecraft.crafted:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Crafted"}, "json_string": "{\"text\":\"Pink Candle Crafted\"}"}}, "b.yellowWool": {"CriteriaName": "minecraft.broken:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Broken"}, "json_string": "{\"text\":\"Yellow Wool Broken\"}"}}, "c.brownConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Crafted"}, "json_string": "{\"text\":\"Brown Concrete Powder Crafted\"}"}}, "q.fireCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Dropped"}, "json_string": "{\"text\":\"Fire Coral Fan Dropped\"}"}}, "b.guardianSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian Spawn Egg Broken"}, "json_string": "{\"text\":\"Guardian Spawn Egg Broken\"}"}}, "m.whiteTulip": {"CriteriaName": "minecraft.mined:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Mined"}, "json_string": "{\"text\":\"White Tulip Mined\"}"}}, "u.melonSlice": {"CriteriaName": "minecraft.used:minecraft.melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Slice Used"}, "json_string": "{\"text\":\"Melon Slice Used\"}"}}, "k.enderPearl": {"CriteriaName": "minecraft.killed:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Killed"}, "json_string": "{\"text\":\"Ender Pearl Killed\"}"}}, "u.leatherBoots": {"CriteriaName": "minecraft.used:minecraft.leather_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Boots Used"}, "json_string": "{\"text\":\"Leather Boots Used\"}"}}, "m.bubbleCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Mined"}, "json_string": "{\"text\":\"Bubble Coral Block Mined\"}"}}, "p.musicDiscCat": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Cat Picked Up"}, "json_string": "{\"text\":\"Music Disc Cat Picked Up\"}"}}, "u.spruceBoat": {"CriteriaName": "minecraft.used:minecraft.spruce_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Boat Used"}, "json_string": "{\"text\":\"Spruce Boat Used\"}"}}, "c.deepslateCoalOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Coal Ore Crafted\"}"}}, "c.coalBlock": {"CriteriaName": "minecraft.crafted:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Crafted"}, "json_string": "{\"text\":\"Coal Block Crafted\"}"}}, "c.purpleCandle": {"CriteriaName": "minecraft.crafted:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Crafted"}, "json_string": "{\"text\":\"Purple Candle Crafted\"}"}}, "u.leatherHorseArmor": {"CriteriaName": "minecraft.used:minecraft.leather_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Horse Armor Used"}, "json_string": "{\"text\":\"Leather Horse Armor Used\"}"}}, "b.netherBrickWall": {"CriteriaName": "minecraft.broken:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Broken"}, "json_string": "{\"text\":\"Nether Brick Wall Broken\"}"}}, "b.turtleHelmet": {"CriteriaName": "minecraft.broken:minecraft.turtle_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Helmet Broken"}, "json_string": "{\"text\":\"Turtle Helmet Broken\"}"}}, "b.cutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Cut Copper Slab Broken\"}"}}, "c.polishedDeepslate": {"CriteriaName": "minecraft.crafted:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Crafted"}, "json_string": "{\"text\":\"Polished Deepslate Crafted\"}"}}, "b.string": {"CriteriaName": "minecraft.broken:minecraft.string", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "String Broken"}, "json_string": "{\"text\":\"String Broken\"}"}}, "u.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Used\"}"}}, "b.commandBlock": {"CriteriaName": "minecraft.broken:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Broken"}, "json_string": "{\"text\":\"Command Block Broken\"}"}}, "u.jungleFenceGate": {"CriteriaName": "minecraft.used:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Used"}, "json_string": "{\"text\":\"Jungle Fence Gate Used\"}"}}, "q.redCandle": {"CriteriaName": "minecraft.dropped:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Dropped"}, "json_string": "{\"text\":\"Red Candle Dropped\"}"}}, "b.lilyOfTheValley": {"CriteriaName": "minecraft.broken:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Broken"}, "json_string": "{\"text\":\"Lily Of The Valley Broken\"}"}}, "b.warpedTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Broken"}, "json_string": "{\"text\":\"Warped Trapdoor Broken\"}"}}, "q.oakButton": {"CriteriaName": "minecraft.dropped:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Dropped"}, "json_string": "{\"text\":\"Oak Button Dropped\"}"}}, "b.roseBush": {"CriteriaName": "minecraft.broken:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Broken"}, "json_string": "{\"text\":\"Rose Bush Broken\"}"}}, "c.honeyBottle": {"CriteriaName": "minecraft.crafted:minecraft.honey_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Bottle Crafted"}, "json_string": "{\"text\":\"Honey Bottle Crafted\"}"}}, "tc.break_jungle": {"CriteriaName": "minecraft.mined:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_jungle"}, "json_string": "{\"text\":\"tc.break_jungle\"}"}}, "u.andesiteWall": {"CriteriaName": "minecraft.used:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Used"}, "json_string": "{\"text\":\"Andesite Wall Used\"}"}}, "u.stick": {"CriteriaName": "minecraft.used:minecraft.stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stick Used"}, "json_string": "{\"text\":\"Stick Used\"}"}}, "m.pinkCandleCake": {"CriteriaName": "minecraft.mined:minecraft.pink_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Cake Mined"}, "json_string": "{\"text\":\"Pink Candle Cake Mined\"}"}}, "p.evokerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.evoker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Evoker Spawn Egg Picked Up\"}"}}, "q.huskSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.husk_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Spawn Egg Dropped"}, "json_string": "{\"text\":\"Husk Spawn Egg Dropped\"}"}}, "m.hornCoralFan": {"CriteriaName": "minecraft.mined:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Mined"}, "json_string": "{\"text\":\"Horn Coral Fan Mined\"}"}}, "k.itemFrame": {"CriteriaName": "minecraft.killed:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Killed"}, "json_string": "{\"text\":\"Item Frame Killed\"}"}}, "p.grass": {"CriteriaName": "minecraft.picked_up:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Picked Up"}, "json_string": "{\"text\":\"Grass Picked Up\"}"}}, "m.beehive": {"CriteriaName": "minecraft.mined:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Mined"}, "json_string": "{\"text\":\"Beehive Mined\"}"}}, "u.witherSkeletonSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.wither_skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Spawn Egg Used"}, "json_string": "{\"text\":\"Wither Skeleton Spawn Egg Used\"}"}}, "q.beetrootSeeds": {"CriteriaName": "minecraft.dropped:minecraft.beetroot_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Seeds Dropped"}, "json_string": "{\"text\":\"Beetroot Seeds Dropped\"}"}}, "p.pufferfishBucket": {"CriteriaName": "minecraft.picked_up:minecraft.pufferfish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Bucket Picked Up"}, "json_string": "{\"text\":\"Pufferfish Bucket Picked Up\"}"}}, "q.strippedWarpedStem": {"CriteriaName": "minecraft.dropped:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Dropped"}, "json_string": "{\"text\":\"Stripped Warped Stem Dropped\"}"}}, "c.salmonSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.salmon_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Spawn Egg Crafted"}, "json_string": "{\"text\":\"Salmon Spawn Egg Crafted\"}"}}, "u.strippedWarpedStem": {"CriteriaName": "minecraft.used:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Used"}, "json_string": "{\"text\":\"Stripped Warped Stem Used\"}"}}, "m.greenWallBanner": {"CriteriaName": "minecraft.mined:minecraft.green_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wall Banner Mined"}, "json_string": "{\"text\":\"Green Wall Banner Mined\"}"}}, "g.animalsBred": {"CriteriaName": "minecraft.custom:minecraft.animals_bred", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Animals Bred"}, "json_string": "{\"text\":\"Animals Bred\"}"}}, "u.peony": {"CriteriaName": "minecraft.used:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Used"}, "json_string": "{\"text\":\"Peony Used\"}"}}, "m.candleCake": {"CriteriaName": "minecraft.mined:minecraft.candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Cake Mined"}, "json_string": "{\"text\":\"Candle Cake Mined\"}"}}, "p.dioriteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Picked Up"}, "json_string": "{\"text\":\"Diorite Stairs Picked Up\"}"}}, "b.brownConcrete": {"CriteriaName": "minecraft.broken:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Broken"}, "json_string": "{\"text\":\"Brown Concrete Broken\"}"}}, "q.dragonEgg": {"CriteriaName": "minecraft.dropped:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Dropped"}, "json_string": "{\"text\":\"Dragon Egg Dropped\"}"}}, "b.poisonousPotato": {"CriteriaName": "minecraft.broken:minecraft.poisonous_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poisonous Potato Broken"}, "json_string": "{\"text\":\"Poisonous Potato Broken\"}"}}, "c.bedrock": {"CriteriaName": "minecraft.crafted:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Crafted"}, "json_string": "{\"text\":\"Bedrock Crafted\"}"}}, "u.acaciaBoat": {"CriteriaName": "minecraft.used:minecraft.acacia_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Boat Used"}, "json_string": "{\"text\":\"Acacia Boat Used\"}"}}, "b.clock": {"CriteriaName": "minecraft.broken:minecraft.clock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clock Broken"}, "json_string": "{\"text\":\"Clock Broken\"}"}}, "u.creeperBannerPattern": {"CriteriaName": "minecraft.used:minecraft.creeper_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Banner Pattern Used"}, "json_string": "{\"text\":\"Creeper Banner Pattern Used\"}"}}, "p.fireCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Picked Up"}, "json_string": "{\"text\":\"Fire Coral Block Picked Up\"}"}}, "b.glisteringMelonSlice": {"CriteriaName": "minecraft.broken:minecraft.glistering_melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glistering Melon Slice Broken"}, "json_string": "{\"text\":\"Glistering Melon Slice Broken\"}"}}, "m.damagedAnvil": {"CriteriaName": "minecraft.mined:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Mined"}, "json_string": "{\"text\":\"Damaged Anvil Mined\"}"}}, "p.musicDiscWait": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_wait", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Wait Picked Up"}, "json_string": "{\"text\":\"Music Disc Wait Picked Up\"}"}}, "u.blueConcrete": {"CriteriaName": "minecraft.used:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Used"}, "json_string": "{\"text\":\"Blue Concrete Used\"}"}}, "m.limeStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Mined"}, "json_string": "{\"text\":\"Lime Stained Glass Mined\"}"}}, "cu.killedByDarkPurpleTeam": {"CriteriaName": "killedByTeam.dark_purple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Purple Team"}, "json_string": "{\"text\":\"Killed by Purple Team\"}"}}, "b.goldenLeggings": {"CriteriaName": "minecraft.broken:minecraft.golden_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Leggings Broken"}, "json_string": "{\"text\":\"Golden Leggings Broken\"}"}}, "d.endCrystal": {"CriteriaName": "minecraft.killed_by:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by End Crystal"}, "json_string": "{\"text\":\"Killed by End Crystal\"}"}}, "m.blackTerracotta": {"CriteriaName": "minecraft.mined:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Mined"}, "json_string": "{\"text\":\"Black Terracotta Mined\"}"}}, "b.writableBook": {"CriteriaName": "minecraft.broken:minecraft.writable_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Writable Book Broken"}, "json_string": "{\"text\":\"Writable Book Broken\"}"}}, "q.greenStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Green Stained Glass Pane Dropped\"}"}}, "m.blackStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Mined"}, "json_string": "{\"text\":\"Black Stained Glass Mined\"}"}}, "c.brownStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Crafted\"}"}}, "m.pinkWool": {"CriteriaName": "minecraft.mined:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Mined"}, "json_string": "{\"text\":\"Pink Wool Mined\"}"}}, "p.emeraldBlock": {"CriteriaName": "minecraft.picked_up:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Picked Up"}, "json_string": "{\"text\":\"Emerald Block Picked Up\"}"}}, "c.boneMeal": {"CriteriaName": "minecraft.crafted:minecraft.bone_meal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Meal Crafted"}, "json_string": "{\"text\":\"Bone Meal Crafted\"}"}}, "q.powderSnowBucket": {"CriteriaName": "minecraft.dropped:minecraft.powder_snow_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Bucket Dropped"}, "json_string": "{\"text\":\"Powder Snow Bucket Dropped\"}"}}, "m.purpleCandleCake": {"CriteriaName": "minecraft.mined:minecraft.purple_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Cake Mined"}, "json_string": "{\"text\":\"Purple Candle Cake Mined\"}"}}, "m.acaciaStairs": {"CriteriaName": "minecraft.mined:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Mined"}, "json_string": "{\"text\":\"Acacia Stairs Mined\"}"}}, "c.orangeStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Crafted"}, "json_string": "{\"text\":\"Orange Stained Glass Crafted\"}"}}, "p.darkOakLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Picked Up"}, "json_string": "{\"text\":\"Dark Oak Leaves Picked Up\"}"}}, "p.acaciaPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Acacia Pressure Plate Picked Up\"}"}}, "q.yellowCandle": {"CriteriaName": "minecraft.dropped:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Dropped"}, "json_string": "{\"text\":\"Yellow Candle Dropped\"}"}}, "u.soulSoil": {"CriteriaName": "minecraft.used:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Used"}, "json_string": "{\"text\":\"Soul Soil Used\"}"}}, "q.spruceFence": {"CriteriaName": "minecraft.dropped:minecraft.spruce_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Dropped"}, "json_string": "{\"text\":\"Spruce Fence Dropped\"}"}}, "p.blackWool": {"CriteriaName": "minecraft.picked_up:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Picked Up"}, "json_string": "{\"text\":\"Black Wool Picked Up\"}"}}, "p.pinkCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.pink_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Carpet Picked Up"}, "json_string": "{\"text\":\"Pink Carpet Picked Up\"}"}}, "c.whiteStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"White Stained Glass Pane Crafted\"}"}}, "b.globeBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.globe_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Globe Banner Pattern Broken"}, "json_string": "{\"text\":\"Globe Banner Pattern Broken\"}"}}, "p.experienceBottle": {"CriteriaName": "minecraft.picked_up:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Picked Up"}, "json_string": "{\"text\":\"Experience Bottle Picked Up\"}"}}, "m.greenStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Green Stained Glass Pane Mined\"}"}}, "u.brainCoralFan": {"CriteriaName": "minecraft.used:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Used"}, "json_string": "{\"text\":\"Brain Coral Fan Used\"}"}}, "c.netheriteAxe": {"CriteriaName": "minecraft.crafted:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Axe Crafted"}, "json_string": "{\"text\":\"Netherite Axe Crafted\"}"}}, "c.debugStick": {"CriteriaName": "minecraft.crafted:minecraft.debug_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Debug Stick Crafted"}, "json_string": "{\"text\":\"Debug Stick Crafted\"}"}}, "m.greenConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Mined"}, "json_string": "{\"text\":\"Green Concrete Powder Mined\"}"}}, "q.leather": {"CriteriaName": "minecraft.dropped:minecraft.leather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Dropped"}, "json_string": "{\"text\":\"Leather Dropped\"}"}}, "m.lightGrayBanner": {"CriteriaName": "minecraft.mined:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Mined"}, "json_string": "{\"text\":\"Light Gray Banner Mined\"}"}}, "q.netheriteLeggings": {"CriteriaName": "minecraft.dropped:minecraft.netherite_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Leggings Dropped"}, "json_string": "{\"text\":\"Netherite Leggings Dropped\"}"}}, "k.polarBear": {"CriteriaName": "minecraft.killed:minecraft.polar_bear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Killed"}, "json_string": "{\"text\":\"Polar Bear Killed\"}"}}, "m.chain": {"CriteriaName": "minecraft.mined:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Mined"}, "json_string": "{\"text\":\"Chain Mined\"}"}}, "c.greenStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.green_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Crafted"}, "json_string": "{\"text\":\"Green Stained Glass Crafted\"}"}}, "q.prismarineStairs": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Dropped"}, "json_string": "{\"text\":\"Prismarine Stairs Dropped\"}"}}, "c.woodenHoe": {"CriteriaName": "minecraft.crafted:minecraft.wooden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Hoe Crafted"}, "json_string": "{\"text\":\"Wooden Hoe Crafted\"}"}}, "p.crackedNetherBricks": {"CriteriaName": "minecraft.picked_up:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Picked Up"}, "json_string": "{\"text\":\"Cracked Nether Bricks Picked Up\"}"}}, "u.crackedDeepslateBricks": {"CriteriaName": "minecraft.used:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Used"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Used\"}"}}, "p.fern": {"CriteriaName": "minecraft.picked_up:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Picked Up"}, "json_string": "{\"text\":\"Fern Picked Up\"}"}}, "q.hoglinSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.hoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin Spawn Egg Dropped"}, "json_string": "{\"text\":\"Hoglin Spawn Egg Dropped\"}"}}, "p.chorusFlower": {"CriteriaName": "minecraft.picked_up:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Picked Up"}, "json_string": "{\"text\":\"Chorus Flower Picked Up\"}"}}, "u.redDye": {"CriteriaName": "minecraft.used:minecraft.red_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Dye Used"}, "json_string": "{\"text\":\"Red Dye Used\"}"}}, "q.ravagerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.ravager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Spawn Egg Dropped"}, "json_string": "{\"text\":\"Ravager Spawn Egg Dropped\"}"}}, "p.mooshroomSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.mooshroom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Mooshroom Spawn Egg Picked Up\"}"}}, "m.glowstone": {"CriteriaName": "minecraft.mined:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Mined"}, "json_string": "{\"text\":\"Glowstone Mined\"}"}}, "u.pinkConcrete": {"CriteriaName": "minecraft.used:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Used"}, "json_string": "{\"text\":\"Pink Concrete Used\"}"}}, "c.deepslateTileStairs": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Crafted"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Crafted\"}"}}, "p.crimsonFence": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Picked Up"}, "json_string": "{\"text\":\"Crimson Fence Picked Up\"}"}}, "q.blackstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Dropped"}, "json_string": "{\"text\":\"Blackstone Slab Dropped\"}"}}, "c.twistingVines": {"CriteriaName": "minecraft.crafted:minecraft.twisting_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Crafted"}, "json_string": "{\"text\":\"Twisting Vines Crafted\"}"}}, "m.greenBanner": {"CriteriaName": "minecraft.mined:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Mined"}, "json_string": "{\"text\":\"Green Banner Mined\"}"}}, "u.musicDiscMall": {"CriteriaName": "minecraft.used:minecraft.music_disc_mall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mall Used"}, "json_string": "{\"text\":\"Music Disc Mall Used\"}"}}, "q.deepslateIronOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Iron Ore Dropped\"}"}}, "c.detectorRail": {"CriteriaName": "minecraft.crafted:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Crafted"}, "json_string": "{\"text\":\"Detector Rail Crafted\"}"}}, "c.greenCarpet": {"CriteriaName": "minecraft.crafted:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Crafted"}, "json_string": "{\"text\":\"Green Carpet Crafted\"}"}}, "p.spiderEye": {"CriteriaName": "minecraft.picked_up:minecraft.spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Eye Picked Up"}, "json_string": "{\"text\":\"Spider Eye Picked Up\"}"}}, "b.skeletonSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Spawn Egg Broken"}, "json_string": "{\"text\":\"Skeleton Spawn Egg Broken\"}"}}, "c.chain": {"CriteriaName": "minecraft.crafted:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Crafted"}, "json_string": "{\"text\":\"Chain Crafted\"}"}}, "u.emeraldOre": {"CriteriaName": "minecraft.used:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Used"}, "json_string": "{\"text\":\"Emerald Ore Used\"}"}}, "u.deadBrainCoralBlock": {"CriteriaName": "minecraft.used:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Used"}, "json_string": "{\"text\":\"Dead Brain Coral Block Used\"}"}}, "m.lightBlueConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.light_blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Powder Mined"}, "json_string": "{\"text\":\"Light Blue Concrete Powder Mined\"}"}}, "p.tripwireHook": {"CriteriaName": "minecraft.picked_up:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Picked Up"}, "json_string": "{\"text\":\"Tripwire Hook Picked Up\"}"}}, "p.mossyStoneBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Picked Up"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Picked Up\"}"}}, "q.brickWall": {"CriteriaName": "minecraft.dropped:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Dropped"}, "json_string": "{\"text\":\"Brick Wall Dropped\"}"}}, "cusNetPor.dummy": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "cusNetPor.dummy"}, "json_string": "{\"text\":\"cusNetPor.dummy\"}"}}, "b.deadHornCoralFan": {"CriteriaName": "minecraft.broken:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Broken"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Broken\"}"}}, "m.jungleSlab": {"CriteriaName": "minecraft.mined:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Mined"}, "json_string": "{\"text\":\"Jungle Slab Mined\"}"}}, "c.minecart": {"CriteriaName": "minecraft.crafted:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Crafted"}, "json_string": "{\"text\":\"Minecart Crafted\"}"}}, "p.spruceLog": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Log Picked Up"}, "json_string": "{\"text\":\"Spruce Log Picked Up\"}"}}, "q.sandstone": {"CriteriaName": "minecraft.dropped:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Dropped"}, "json_string": "{\"text\":\"Sandstone Dropped\"}"}}, "m.lightBlueShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Mined"}, "json_string": "{\"text\":\"Light Blue Shulker Box Mined\"}"}}, "b.waterBucket": {"CriteriaName": "minecraft.broken:minecraft.water_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Bucket Broken"}, "json_string": "{\"text\":\"Water Bucket Broken\"}"}}, "u.mossyCobblestoneWall": {"CriteriaName": "minecraft.used:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Used"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Used\"}"}}, "p.cookedRabbit": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Rabbit Picked Up"}, "json_string": "{\"text\":\"Cooked Rabbit Picked Up\"}"}}, "p.poisonousPotato": {"CriteriaName": "minecraft.picked_up:minecraft.poisonous_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poisonous Potato Picked Up"}, "json_string": "{\"text\":\"Poisonous Potato Picked Up\"}"}}, "p.brownCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Picked Up"}, "json_string": "{\"text\":\"Brown Carpet Picked Up\"}"}}, "c.redstoneOre": {"CriteriaName": "minecraft.crafted:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Crafted"}, "json_string": "{\"text\":\"Redstone Ore Crafted\"}"}}, "b.junglePressurePlate": {"CriteriaName": "minecraft.broken:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Broken"}, "json_string": "{\"text\":\"Jungle Pressure Plate Broken\"}"}}, "q.spruceButton": {"CriteriaName": "minecraft.dropped:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Dropped"}, "json_string": "{\"text\":\"Spruce Button Dropped\"}"}}, "p.coalBlock": {"CriteriaName": "minecraft.picked_up:minecraft.coal_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Block Picked Up"}, "json_string": "{\"text\":\"Coal Block Picked Up\"}"}}, "q.daylightDetector": {"CriteriaName": "minecraft.dropped:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Dropped"}, "json_string": "{\"text\":\"Daylight Detector Dropped\"}"}}, "c.purpleGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Crafted\"}"}}, "b.purpleStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Broken"}, "json_string": "{\"text\":\"Purple Stained Glass Broken\"}"}}, "m.lightGrayConcrete": {"CriteriaName": "minecraft.mined:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Mined"}, "json_string": "{\"text\":\"Light Gray Concrete Mined\"}"}}, "p.apple": {"CriteriaName": "minecraft.picked_up:minecraft.apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Apple Picked Up"}, "json_string": "{\"text\":\"Apple Picked Up\"}"}}, "c.waxedCopperBlock": {"CriteriaName": "minecraft.crafted:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Crafted"}, "json_string": "{\"text\":\"Waxed Copper Block Crafted\"}"}}, "c.soulLantern": {"CriteriaName": "minecraft.crafted:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Crafted"}, "json_string": "{\"text\":\"Soul Lantern Crafted\"}"}}, "m.deadBubbleCoralFan": {"CriteriaName": "minecraft.mined:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Mined"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Mined\"}"}}, "c.orangeBanner": {"CriteriaName": "minecraft.crafted:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Crafted"}, "json_string": "{\"text\":\"Orange Banner Crafted\"}"}}, "b.brainCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Broken"}, "json_string": "{\"text\":\"Brain Coral Block Broken\"}"}}, "p.grayTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Terracotta Picked Up"}, "json_string": "{\"text\":\"Gray Terracotta Picked Up\"}"}}, "q.pinkConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Dropped"}, "json_string": "{\"text\":\"Pink Concrete Powder Dropped\"}"}}, "m.mycelium": {"CriteriaName": "minecraft.mined:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Mined"}, "json_string": "{\"text\":\"Mycelium Mined\"}"}}, "b.brainCoralFan": {"CriteriaName": "minecraft.broken:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Broken"}, "json_string": "{\"text\":\"Brain Coral Fan Broken\"}"}}, "b.fern": {"CriteriaName": "minecraft.broken:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Broken"}, "json_string": "{\"text\":\"Fern Broken\"}"}}, "u.redstoneLamp": {"CriteriaName": "minecraft.used:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Used"}, "json_string": "{\"text\":\"Redstone Lamp Used\"}"}}, "u.granite": {"CriteriaName": "minecraft.used:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Used"}, "json_string": "{\"text\":\"Granite Used\"}"}}, "c.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Crafted"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Crafted\"}"}}, "u.woodenAxe": {"CriteriaName": "minecraft.used:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Axe Used"}, "json_string": "{\"text\":\"Wooden Axe Used\"}"}}, "b.pumpkinPie": {"CriteriaName": "minecraft.broken:minecraft.pumpkin_pie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Pie Broken"}, "json_string": "{\"text\":\"Pumpkin Pie Broken\"}"}}, "m.farmland": {"CriteriaName": "minecraft.mined:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Mined"}, "json_string": "{\"text\":\"Farmland Mined\"}"}}, "p.lightWeightedPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Picked Up\"}"}}, "c.pufferfish": {"CriteriaName": "minecraft.crafted:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Crafted"}, "json_string": "{\"text\":\"Pufferfish Crafted\"}"}}, "b.air": {"CriteriaName": "minecraft.broken:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Broken"}, "json_string": "{\"text\":\"Air Broken\"}"}}, "b.deepslateRedstoneOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Broken"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Broken\"}"}}, "b.glowBerries": {"CriteriaName": "minecraft.broken:minecraft.glow_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Berries Broken"}, "json_string": "{\"text\":\"Glow Berries Broken\"}"}}, "c.zombieHead": {"CriteriaName": "minecraft.crafted:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Crafted"}, "json_string": "{\"text\":\"Zombie Head Crafted\"}"}}, "p.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Picked Up"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Picked Up\"}"}}, "u.sandstone": {"CriteriaName": "minecraft.used:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Used"}, "json_string": "{\"text\":\"Sandstone Used\"}"}}, "p.slimeSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.slime_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Slime Spawn Egg Picked Up\"}"}}, "c.fireCoral": {"CriteriaName": "minecraft.crafted:minecraft.fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Crafted"}, "json_string": "{\"text\":\"Fire Coral Crafted\"}"}}, "q.limeWool": {"CriteriaName": "minecraft.dropped:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Dropped"}, "json_string": "{\"text\":\"Lime Wool Dropped\"}"}}, "m.lightGrayStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Mined"}, "json_string": "{\"text\":\"Light Gray Stained Glass Mined\"}"}}, "c.orangeTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Crafted"}, "json_string": "{\"text\":\"Orange Terracotta Crafted\"}"}}, "b.oakButton": {"CriteriaName": "minecraft.broken:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Broken"}, "json_string": "{\"text\":\"Oak Button Broken\"}"}}, "d.dolphin": {"CriteriaName": "minecraft.killed_by:minecraft.dolphin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Dolphin"}, "json_string": "{\"text\":\"Killed by Dolphin\"}"}}, "u.seaLantern": {"CriteriaName": "minecraft.used:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Used"}, "json_string": "{\"text\":\"Sea Lantern Used\"}"}}, "m.orangeWool": {"CriteriaName": "minecraft.mined:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Mined"}, "json_string": "{\"text\":\"Orange Wool Mined\"}"}}, "c.sprucePlanks": {"CriteriaName": "minecraft.crafted:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Crafted"}, "json_string": "{\"text\":\"Spruce Planks Crafted\"}"}}, "q.quartzPillar": {"CriteriaName": "minecraft.dropped:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Dropped"}, "json_string": "{\"text\":\"Quartz Pillar Dropped\"}"}}, "rs_tick": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "rs_tick"}, "json_string": "{\"text\":\"rs_tick\"}"}}, "q.allium": {"CriteriaName": "minecraft.dropped:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Dropped"}, "json_string": "{\"text\":\"Allium Dropped\"}"}}, "q.darkOakSign": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Sign Dropped"}, "json_string": "{\"text\":\"Dark Oak Sign Dropped\"}"}}, "q.diamondSword": {"CriteriaName": "minecraft.dropped:minecraft.diamond_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Sword Dropped"}, "json_string": "{\"text\":\"Diamond Sword Dropped\"}"}}, "c.blueConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Crafted"}, "json_string": "{\"text\":\"Blue Concrete Powder Crafted\"}"}}, "p.witchSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.witch_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Witch Spawn Egg Picked Up\"}"}}, "u.spruceFenceGate": {"CriteriaName": "minecraft.used:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Used"}, "json_string": "{\"text\":\"Spruce Fence Gate Used\"}"}}, "p.stoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Stone Bricks Picked Up\"}"}}, "u.slimeBlock": {"CriteriaName": "minecraft.used:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Used"}, "json_string": "{\"text\":\"Slime Block Used\"}"}}, "d.ocelot": {"CriteriaName": "minecraft.killed_by:minecraft.ocelot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Ocelot"}, "json_string": "{\"text\":\"Killed by Ocelot\"}"}}, "u.goldenHelmet": {"CriteriaName": "minecraft.used:minecraft.golden_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Helmet Used"}, "json_string": "{\"text\":\"Golden Helmet Used\"}"}}, "q.cyanCarpet": {"CriteriaName": "minecraft.dropped:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Dropped"}, "json_string": "{\"text\":\"Cyan Carpet Dropped\"}"}}, "b.chiseledRedSandstone": {"CriteriaName": "minecraft.broken:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Broken"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Broken\"}"}}, "c.porkchop": {"CriteriaName": "minecraft.crafted:minecraft.porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Porkchop Crafted"}, "json_string": "{\"text\":\"Porkchop Crafted\"}"}}, "m.lightningRod": {"CriteriaName": "minecraft.mined:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Mined"}, "json_string": "{\"text\":\"Lightning Rod Mined\"}"}}, "u.blackDye": {"CriteriaName": "minecraft.used:minecraft.black_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Dye Used"}, "json_string": "{\"text\":\"Black Dye Used\"}"}}, "p.dispenser": {"CriteriaName": "minecraft.picked_up:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Picked Up"}, "json_string": "{\"text\":\"Dispenser Picked Up\"}"}}, "p.goldenApple": {"CriteriaName": "minecraft.picked_up:minecraft.golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Apple Picked Up"}, "json_string": "{\"text\":\"Golden Apple Picked Up\"}"}}, "d.panda": {"CriteriaName": "minecraft.killed_by:minecraft.panda", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Panda"}, "json_string": "{\"text\":\"Killed by Panda\"}"}}, "b.waxedWeatheredCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Broken"}, "json_string": "{\"text\":\"Waxed Weathered Copper Broken\"}"}}, "m.magentaConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Mined"}, "json_string": "{\"text\":\"Magenta Concrete Powder Mined\"}"}}, "q.musicDiscStal": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_stal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Stal Dropped"}, "json_string": "{\"text\":\"Music Disc Stal Dropped\"}"}}, "m.brickWall": {"CriteriaName": "minecraft.mined:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Mined"}, "json_string": "{\"text\":\"Brick Wall Mined\"}"}}, "u.goldenCarrot": {"CriteriaName": "minecraft.used:minecraft.golden_carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Carrot Used"}, "json_string": "{\"text\":\"Golden Carrot Used\"}"}}, "c.snowBlock": {"CriteriaName": "minecraft.crafted:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Crafted"}, "json_string": "{\"text\":\"Snow Block Crafted\"}"}}, "q.cookedBeef": {"CriteriaName": "minecraft.dropped:minecraft.cooked_beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Beef Dropped"}, "json_string": "{\"text\":\"Cooked Beef Dropped\"}"}}, "q.grayCarpet": {"CriteriaName": "minecraft.dropped:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Dropped"}, "json_string": "{\"text\":\"Gray Carpet Dropped\"}"}}, "b.blueWool": {"CriteriaName": "minecraft.broken:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Broken"}, "json_string": "{\"text\":\"Blue Wool Broken\"}"}}, "c.darkOakDoor": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Crafted"}, "json_string": "{\"text\":\"Dark Oak Door Crafted\"}"}}, "q.coarseDirt": {"CriteriaName": "minecraft.dropped:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Dropped"}, "json_string": "{\"text\":\"Coarse Dirt Dropped\"}"}}, "b.strippedCrimsonStem": {"CriteriaName": "minecraft.broken:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Broken"}, "json_string": "{\"text\":\"Stripped Crimson Stem Broken\"}"}}, "u.deadTubeCoral": {"CriteriaName": "minecraft.used:minecraft.dead_tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Used"}, "json_string": "{\"text\":\"Dead Tube Coral Used\"}"}}, "b.azalea": {"CriteriaName": "minecraft.broken:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Broken"}, "json_string": "{\"text\":\"Azalea Broken\"}"}}, "b.chicken": {"CriteriaName": "minecraft.broken:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Broken"}, "json_string": "{\"text\":\"Chicken Broken\"}"}}, "c.cobbledDeepslateSlab": {"CriteriaName": "minecraft.crafted:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Crafted"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Crafted\"}"}}, "p.strippedWarpedHyphae": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Picked Up"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Picked Up\"}"}}, "c.mediumAmethystBud": {"CriteriaName": "minecraft.crafted:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Crafted"}, "json_string": "{\"text\":\"Medium Amethyst Bud Crafted\"}"}}, "q.mossyCobblestone": {"CriteriaName": "minecraft.dropped:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Dropped"}, "json_string": "{\"text\":\"Mossy Cobblestone Dropped\"}"}}, "q.flowerBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.flower_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Banner Pattern Dropped"}, "json_string": "{\"text\":\"Flower Banner Pattern Dropped\"}"}}, "c.beetrootSoup": {"CriteriaName": "minecraft.crafted:minecraft.beetroot_soup", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Soup Crafted"}, "json_string": "{\"text\":\"Beetroot Soup Crafted\"}"}}, "b.leatherHorseArmor": {"CriteriaName": "minecraft.broken:minecraft.leather_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Horse Armor Broken"}, "json_string": "{\"text\":\"Leather Horse Armor Broken\"}"}}, "p.shulkerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.shulker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Shulker Spawn Egg Picked Up\"}"}}, "q.glowItemFrame": {"CriteriaName": "minecraft.dropped:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Dropped"}, "json_string": "{\"text\":\"Glow Item Frame Dropped\"}"}}, "c.caveSpiderSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.cave_spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Spawn Egg Crafted"}, "json_string": "{\"text\":\"Cave Spider Spawn Egg Crafted\"}"}}, "p.pinkGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Picked Up\"}"}}, "b.dragonHead": {"CriteriaName": "minecraft.broken:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Broken"}, "json_string": "{\"text\":\"Dragon Head Broken\"}"}}, "q.glassBottle": {"CriteriaName": "minecraft.dropped:minecraft.glass_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Bottle Dropped"}, "json_string": "{\"text\":\"Glass Bottle Dropped\"}"}}, "m.oakDoor": {"CriteriaName": "minecraft.mined:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Mined"}, "json_string": "{\"text\":\"Oak Door Mined\"}"}}, "c.charcoal": {"CriteriaName": "minecraft.crafted:minecraft.charcoal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Charcoal Crafted"}, "json_string": "{\"text\":\"Charcoal Crafted\"}"}}, "p.leatherLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.leather_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Leggings Picked Up"}, "json_string": "{\"text\":\"Leather Leggings Picked Up\"}"}}, "c.donkeySpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.donkey_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Donkey Spawn Egg Crafted"}, "json_string": "{\"text\":\"Donkey Spawn Egg Crafted\"}"}}, "m.oxidizedCopper": {"CriteriaName": "minecraft.mined:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Mined"}, "json_string": "{\"text\":\"Oxidized Copper Mined\"}"}}, "p.netheriteBlock": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Picked Up"}, "json_string": "{\"text\":\"Netherite Block Picked Up\"}"}}, "b.polishedAndesiteStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Broken"}, "json_string": "{\"text\":\"Polished Andesite Stairs Broken\"}"}}, "b.feather": {"CriteriaName": "minecraft.broken:minecraft.feather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Feather Broken"}, "json_string": "{\"text\":\"Feather Broken\"}"}}, "p.honeyBottle": {"CriteriaName": "minecraft.picked_up:minecraft.honey_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Bottle Picked Up"}, "json_string": "{\"text\":\"Honey Bottle Picked Up\"}"}}, "m.brickStairs": {"CriteriaName": "minecraft.mined:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Mined"}, "json_string": "{\"text\":\"Brick Stairs Mined\"}"}}, "q.greenGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Green Glazed Terracotta Dropped\"}"}}, "u.redstoneBlock": {"CriteriaName": "minecraft.used:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Used"}, "json_string": "{\"text\":\"Redstone Block Used\"}"}}, "p.andesite": {"CriteriaName": "minecraft.picked_up:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Picked Up"}, "json_string": "{\"text\":\"Andesite Picked Up\"}"}}, "p.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Picked Up\"}"}}, "b.dragonEgg": {"CriteriaName": "minecraft.broken:minecraft.dragon_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Egg Broken"}, "json_string": "{\"text\":\"Dragon Egg Broken\"}"}}, "u.glowSquidSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.glow_squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid Spawn Egg Used"}, "json_string": "{\"text\":\"Glow Squid Spawn Egg Used\"}"}}, "u.goldIngot": {"CriteriaName": "minecraft.used:minecraft.gold_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ingot Used"}, "json_string": "{\"text\":\"Gold Ingot Used\"}"}}, "b.jungleLog": {"CriteriaName": "minecraft.broken:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Broken"}, "json_string": "{\"text\":\"Jungle Log Broken\"}"}}, "p.warpedFungus": {"CriteriaName": "minecraft.picked_up:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Picked Up"}, "json_string": "{\"text\":\"Warped Fungus Picked Up\"}"}}, "c.strippedAcaciaLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Crafted"}, "json_string": "{\"text\":\"Stripped Acacia Log Crafted\"}"}}, "p.brickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Brick Stairs Picked Up\"}"}}, "u.splashPotion": {"CriteriaName": "minecraft.used:minecraft.splash_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Splash Potion Used"}, "json_string": "{\"text\":\"Splash Potion Used\"}"}}, "m.sculkSensor": {"CriteriaName": "minecraft.mined:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Mined"}, "json_string": "{\"text\":\"Sculk Sensor Mined\"}"}}, "u.blueBed": {"CriteriaName": "minecraft.used:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Used"}, "json_string": "{\"text\":\"Blue Bed Used\"}"}}, "q.leatherChestplate": {"CriteriaName": "minecraft.dropped:minecraft.leather_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Chestplate Dropped"}, "json_string": "{\"text\":\"Leather Chestplate Dropped\"}"}}, "p.redStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Red Stained Glass Pane Picked Up\"}"}}, "u.musicDiscStal": {"CriteriaName": "minecraft.used:minecraft.music_disc_stal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Stal Used"}, "json_string": "{\"text\":\"Music Disc Stal Used\"}"}}, "b.jungleSlab": {"CriteriaName": "minecraft.broken:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Broken"}, "json_string": "{\"text\":\"Jungle Slab Broken\"}"}}, "d.zoglin": {"CriteriaName": "minecraft.killed_by:minecraft.zoglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Zoglin"}, "json_string": "{\"text\":\"Killed by Zoglin\"}"}}, "b.yellowBanner": {"CriteriaName": "minecraft.broken:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Broken"}, "json_string": "{\"text\":\"Yellow Banner Broken\"}"}}, "k.wanderingTrader": {"CriteriaName": "minecraft.killed:minecraft.wandering_trader", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Killed"}, "json_string": "{\"text\":\"Wandering Trader Killed\"}"}}, "u.largeAmethystBud": {"CriteriaName": "minecraft.used:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Used"}, "json_string": "{\"text\":\"Large Amethyst Bud Used\"}"}}, "p.whiteGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"White Glazed Terracotta Picked Up\"}"}}, "p.skullBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.skull_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skull Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Skull Banner Pattern Picked Up\"}"}}, "b.terracotta": {"CriteriaName": "minecraft.broken:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Broken"}, "json_string": "{\"text\":\"Terracotta Broken\"}"}}, "b.cocoaBeans": {"CriteriaName": "minecraft.broken:minecraft.cocoa_beans", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Beans Broken"}, "json_string": "{\"text\":\"Cocoa Beans Broken\"}"}}, "b.limeCarpet": {"CriteriaName": "minecraft.broken:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Broken"}, "json_string": "{\"text\":\"Lime Carpet Broken\"}"}}, "u.netheriteSword": {"CriteriaName": "minecraft.used:minecraft.netherite_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Sword Used"}, "json_string": "{\"text\":\"Netherite Sword Used\"}"}}, "q.magentaWool": {"CriteriaName": "minecraft.dropped:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Dropped"}, "json_string": "{\"text\":\"Magenta Wool Dropped\"}"}}, "c.deepslateTileWall": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Crafted"}, "json_string": "{\"text\":\"Deepslate Tile Wall Crafted\"}"}}, "u.ocelotSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.ocelot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ocelot Spawn Egg Used"}, "json_string": "{\"text\":\"Ocelot Spawn Egg Used\"}"}}, "m.endStoneBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Mined"}, "json_string": "{\"text\":\"End Stone Brick Slab Mined\"}"}}, "c.purpleCarpet": {"CriteriaName": "minecraft.crafted:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Crafted"}, "json_string": "{\"text\":\"Purple Carpet Crafted\"}"}}, "c.deadFireCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Crafted"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Crafted\"}"}}, "m.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Mined\"}"}}, "q.netheriteScrap": {"CriteriaName": "minecraft.dropped:minecraft.netherite_scrap", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Scrap Dropped"}, "json_string": "{\"text\":\"Netherite Scrap Dropped\"}"}}, "b.limeStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Broken"}, "json_string": "{\"text\":\"Lime Stained Glass Broken\"}"}}, "b.craftingTable": {"CriteriaName": "minecraft.broken:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Broken"}, "json_string": "{\"text\":\"Crafting Table Broken\"}"}}, "m.cobweb": {"CriteriaName": "minecraft.mined:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Mined"}, "json_string": "{\"text\":\"Cobweb Mined\"}"}}, "m.dragonHead": {"CriteriaName": "minecraft.mined:minecraft.dragon_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Head Mined"}, "json_string": "{\"text\":\"Dragon Head Mined\"}"}}, "m.smoothSandstoneStairs": {"CriteriaName": "minecraft.mined:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Mined"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Mined\"}"}}, "p.grayStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Picked Up"}, "json_string": "{\"text\":\"Gray Stained Glass Picked Up\"}"}}, "m.beacon": {"CriteriaName": "minecraft.mined:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Mined"}, "json_string": "{\"text\":\"Beacon Mined\"}"}}, "u.rootedDirt": {"CriteriaName": "minecraft.used:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Used"}, "json_string": "{\"text\":\"Rooted Dirt Used\"}"}}, "u.limeDye": {"CriteriaName": "minecraft.used:minecraft.lime_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Dye Used"}, "json_string": "{\"text\":\"Lime Dye Used\"}"}}, "c.musicDiscMellohi": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_mellohi", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mellohi Crafted"}, "json_string": "{\"text\":\"Music Disc Mellohi Crafted\"}"}}, "u.glowItemFrame": {"CriteriaName": "minecraft.used:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Used"}, "json_string": "{\"text\":\"Glow Item Frame Used\"}"}}, "q.tntMinecart": {"CriteriaName": "minecraft.dropped:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Dropped"}, "json_string": "{\"text\":\"Tnt Minecart Dropped\"}"}}, "q.arrow": {"CriteriaName": "minecraft.dropped:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Dropped"}, "json_string": "{\"text\":\"Arrow Dropped\"}"}}, "q.strippedBirchLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Dropped"}, "json_string": "{\"text\":\"Stripped Birch Log Dropped\"}"}}, "u.greenConcretePowder": {"CriteriaName": "minecraft.used:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Used"}, "json_string": "{\"text\":\"Green Concrete Powder Used\"}"}}, "u.warpedFungusOnAStick": {"CriteriaName": "minecraft.used:minecraft.warped_fungus_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus On A Stick Used"}, "json_string": "{\"text\":\"Warped Fungus On A Stick Used\"}"}}, "b.scute": {"CriteriaName": "minecraft.broken:minecraft.scute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scute Broken"}, "json_string": "{\"text\":\"Scute Broken\"}"}}, "d.caveSpider": {"CriteriaName": "minecraft.killed_by:minecraft.cave_spider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Cave Spider"}, "json_string": "{\"text\":\"Killed by Cave Spider\"}"}}, "m.limeStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Mined\"}"}}, "q.cookedChicken": {"CriteriaName": "minecraft.dropped:minecraft.cooked_chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Chicken Dropped"}, "json_string": "{\"text\":\"Cooked Chicken Dropped\"}"}}, "u.lightBlueBanner": {"CriteriaName": "minecraft.used:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Used"}, "json_string": "{\"text\":\"Light Blue Banner Used\"}"}}, "m.brownCandle": {"CriteriaName": "minecraft.mined:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Mined"}, "json_string": "{\"text\":\"Brown Candle Mined\"}"}}, "u.musicDiscCat": {"CriteriaName": "minecraft.used:minecraft.music_disc_cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Cat Used"}, "json_string": "{\"text\":\"Music Disc Cat Used\"}"}}, "m.terracotta": {"CriteriaName": "minecraft.mined:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Mined"}, "json_string": "{\"text\":\"Terracotta Mined\"}"}}, "c.scute": {"CriteriaName": "minecraft.crafted:minecraft.scute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scute Crafted"}, "json_string": "{\"text\":\"Scute Crafted\"}"}}, "p.fireworkRocket": {"CriteriaName": "minecraft.picked_up:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Picked Up"}, "json_string": "{\"text\":\"Firework Rocket Picked Up\"}"}}, "b.netheriteShovel": {"CriteriaName": "minecraft.broken:minecraft.netherite_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Shovel Broken"}, "json_string": "{\"text\":\"Netherite Shovel Broken\"}"}}, "u.grayConcretePowder": {"CriteriaName": "minecraft.used:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Used"}, "json_string": "{\"text\":\"Gray Concrete Powder Used\"}"}}, "p.llamaSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Llama Spawn Egg Picked Up\"}"}}, "u.blackstoneStairs": {"CriteriaName": "minecraft.used:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Used"}, "json_string": "{\"text\":\"Blackstone Stairs Used\"}"}}, "u.cutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Cut Copper Stairs Used\"}"}}, "c.greenCandle": {"CriteriaName": "minecraft.crafted:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Crafted"}, "json_string": "{\"text\":\"Green Candle Crafted\"}"}}, "b.redSand": {"CriteriaName": "minecraft.broken:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Broken"}, "json_string": "{\"text\":\"Red Sand Broken\"}"}}, "q.brownMushroomBlock": {"CriteriaName": "minecraft.dropped:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Dropped"}, "json_string": "{\"text\":\"Brown Mushroom Block Dropped\"}"}}, "u.blackstone": {"CriteriaName": "minecraft.used:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Used"}, "json_string": "{\"text\":\"Blackstone Used\"}"}}, "m.cutRedSandstone": {"CriteriaName": "minecraft.mined:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Mined"}, "json_string": "{\"text\":\"Cut Red Sandstone Mined\"}"}}, "p.skeletonHorseSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.skeleton_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Skeleton Horse Spawn Egg Picked Up\"}"}}, "u.smoothStoneSlab": {"CriteriaName": "minecraft.used:minecraft.smooth_stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Slab Used"}, "json_string": "{\"text\":\"Smooth Stone Slab Used\"}"}}, "g.sneakTime": {"CriteriaName": "minecraft.custom:minecraft.sneak_time", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sneak Time"}, "json_string": "{\"text\":\"Sneak Time\"}"}}, "c.blackDye": {"CriteriaName": "minecraft.crafted:minecraft.black_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Dye Crafted"}, "json_string": "{\"text\":\"Black Dye Crafted\"}"}}, "b.darkOakWood": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Broken"}, "json_string": "{\"text\":\"Dark Oak Wood Broken\"}"}}, "m.strippedDarkOakLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Mined"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Mined\"}"}}, "u.wanderingTraderSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.wandering_trader_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wandering Trader Spawn Egg Used"}, "json_string": "{\"text\":\"Wandering Trader Spawn Egg Used\"}"}}, "m.chiseledRedSandstone": {"CriteriaName": "minecraft.mined:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Mined"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Mined\"}"}}, "b.grayCarpet": {"CriteriaName": "minecraft.broken:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Broken"}, "json_string": "{\"text\":\"Gray Carpet Broken\"}"}}, "m.ancientDebris": {"CriteriaName": "minecraft.mined:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Mined"}, "json_string": "{\"text\":\"Ancient Debris Mined\"}"}}, "u.salmonSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.salmon_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Spawn Egg Used"}, "json_string": "{\"text\":\"Salmon Spawn Egg Used\"}"}}, "b.strippedWarpedStem": {"CriteriaName": "minecraft.broken:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Broken"}, "json_string": "{\"text\":\"Stripped Warped Stem Broken\"}"}}, "p.furnaceMinecart": {"CriteriaName": "minecraft.picked_up:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Picked Up"}, "json_string": "{\"text\":\"Furnace Minecart Picked Up\"}"}}, "u.mutton": {"CriteriaName": "minecraft.used:minecraft.mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mutton Used"}, "json_string": "{\"text\":\"Mutton Used\"}"}}, "q.purpurStairs": {"CriteriaName": "minecraft.dropped:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Dropped"}, "json_string": "{\"text\":\"Purpur Stairs Dropped\"}"}}, "c.emeraldBlock": {"CriteriaName": "minecraft.crafted:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Crafted"}, "json_string": "{\"text\":\"Emerald Block Crafted\"}"}}, "c.darkOakFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Crafted"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Crafted\"}"}}, "m.jungleSapling": {"CriteriaName": "minecraft.mined:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Mined"}, "json_string": "{\"text\":\"Jungle Sapling Mined\"}"}}, "q.purpleStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Dropped\"}"}}, "p.exposedCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Picked Up"}, "json_string": "{\"text\":\"Exposed Cut Copper Picked Up\"}"}}, "cu.interactWithGrindstone": {"CriteriaName": "minecraft.custom:minecraft.interact_with_grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Grindstone"}, "json_string": "{\"text\":\"Interact With Grindstone\"}"}}, "u.smoothBasalt": {"CriteriaName": "minecraft.used:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Used"}, "json_string": "{\"text\":\"Smooth Basalt Used\"}"}}, "m.carrots": {"CriteriaName": "minecraft.mined:minecraft.carrots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrots Mined"}, "json_string": "{\"text\":\"Carrots Mined\"}"}}, "m.enderChest": {"CriteriaName": "minecraft.mined:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Mined"}, "json_string": "{\"text\":\"Ender Chest Mined\"}"}}, "b.netherBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Broken"}, "json_string": "{\"text\":\"Nether Brick Stairs Broken\"}"}}, "b.chain": {"CriteriaName": "minecraft.broken:minecraft.chain", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Broken"}, "json_string": "{\"text\":\"Chain Broken\"}"}}, "p.mycelium": {"CriteriaName": "minecraft.picked_up:minecraft.mycelium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mycelium Picked Up"}, "json_string": "{\"text\":\"Mycelium Picked Up\"}"}}, "u.netheriteHelmet": {"CriteriaName": "minecraft.used:minecraft.netherite_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Helmet Used"}, "json_string": "{\"text\":\"Netherite Helmet Used\"}"}}, "u.redSand": {"CriteriaName": "minecraft.used:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Used"}, "json_string": "{\"text\":\"Red Sand Used\"}"}}, "m.warpedPlanks": {"CriteriaName": "minecraft.mined:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Mined"}, "json_string": "{\"text\":\"Warped Planks Mined\"}"}}, "u.chippedAnvil": {"CriteriaName": "minecraft.used:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Used"}, "json_string": "{\"text\":\"Chipped Anvil Used\"}"}}, "u.ironHelmet": {"CriteriaName": "minecraft.used:minecraft.iron_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Helmet Used"}, "json_string": "{\"text\":\"Iron Helmet Used\"}"}}, "c.whiteBanner": {"CriteriaName": "minecraft.crafted:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Crafted"}, "json_string": "{\"text\":\"White Banner Crafted\"}"}}, "m.waxedExposedCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Mined"}, "json_string": "{\"text\":\"Waxed Exposed Copper Mined\"}"}}, "u.elytra": {"CriteriaName": "minecraft.used:minecraft.elytra", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elytra Used"}, "json_string": "{\"text\":\"Elytra Used\"}"}}, "m.spruceWallSign": {"CriteriaName": "minecraft.mined:minecraft.spruce_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wall Sign Mined"}, "json_string": "{\"text\":\"Spruce Wall Sign Mined\"}"}}, "u.observer": {"CriteriaName": "minecraft.used:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Used"}, "json_string": "{\"text\":\"Observer Used\"}"}}, "c.bread": {"CriteriaName": "minecraft.crafted:minecraft.bread", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bread Crafted"}, "json_string": "{\"text\":\"Bread Crafted\"}"}}, "b.polishedDeepslateSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Broken"}, "json_string": "{\"text\":\"Polished Deepslate Slab Broken\"}"}}, "p.strippedCrimsonStem": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Picked Up"}, "json_string": "{\"text\":\"Stripped Crimson Stem Picked Up\"}"}}, "m.deepslateBricks": {"CriteriaName": "minecraft.mined:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Mined"}, "json_string": "{\"text\":\"Deepslate Bricks Mined\"}"}}, "u.melonSeeds": {"CriteriaName": "minecraft.used:minecraft.melon_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Seeds Used"}, "json_string": "{\"text\":\"Melon Seeds Used\"}"}}, "q.yellowWool": {"CriteriaName": "minecraft.dropped:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Dropped"}, "json_string": "{\"text\":\"Yellow Wool Dropped\"}"}}, "m.redShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Mined"}, "json_string": "{\"text\":\"Red Shulker Box Mined\"}"}}, "p.limeTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Picked Up"}, "json_string": "{\"text\":\"Lime Terracotta Picked Up\"}"}}, "u.enderEye": {"CriteriaName": "minecraft.used:minecraft.ender_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Eye Used"}, "json_string": "{\"text\":\"Ender Eye Used\"}"}}, "p.brownStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Picked Up\"}"}}, "p.lilac": {"CriteriaName": "minecraft.picked_up:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Picked Up"}, "json_string": "{\"text\":\"Lilac Picked Up\"}"}}, "m.yellowConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.yellow_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Powder Mined"}, "json_string": "{\"text\":\"Yellow Concrete Powder Mined\"}"}}, "b.beeNest": {"CriteriaName": "minecraft.broken:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Broken"}, "json_string": "{\"text\":\"Bee Nest Broken\"}"}}, "q.limeTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.lime_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Terracotta Dropped"}, "json_string": "{\"text\":\"Lime Terracotta Dropped\"}"}}, "q.cookedMutton": {"CriteriaName": "minecraft.dropped:minecraft.cooked_mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Mutton Dropped"}, "json_string": "{\"text\":\"Cooked Mutton Dropped\"}"}}, "b.deadBubbleCoral": {"CriteriaName": "minecraft.broken:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Broken"}, "json_string": "{\"text\":\"Dead Bubble Coral Broken\"}"}}, "b.poppedChorusFruit": {"CriteriaName": "minecraft.broken:minecraft.popped_chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Popped Chorus Fruit Broken"}, "json_string": "{\"text\":\"Popped Chorus Fruit Broken\"}"}}, "g.damageDealtAbsorbed": {"CriteriaName": "minecraft.custom:minecraft.damage_dealt_absorbed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Dealt Absorbed"}, "json_string": "{\"text\":\"Damage Dealt Absorbed\"}"}}, "u.warpedTrapdoor": {"CriteriaName": "minecraft.used:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Used"}, "json_string": "{\"text\":\"Warped Trapdoor Used\"}"}}, "p.brownCandle": {"CriteriaName": "minecraft.picked_up:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Picked Up"}, "json_string": "{\"text\":\"Brown Candle Picked Up\"}"}}, "b.stoneButton": {"CriteriaName": "minecraft.broken:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Broken"}, "json_string": "{\"text\":\"Stone Button Broken\"}"}}, "c.ravagerSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.ravager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Spawn Egg Crafted"}, "json_string": "{\"text\":\"Ravager Spawn Egg Crafted\"}"}}, "p.warpedPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Picked Up"}, "json_string": "{\"text\":\"Warped Planks Picked Up\"}"}}, "p.mossyStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Mossy Stone Bricks Picked Up\"}"}}, "u.air": {"CriteriaName": "minecraft.used:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Used"}, "json_string": "{\"text\":\"Air Used\"}"}}, "b.orangeConcrete": {"CriteriaName": "minecraft.broken:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Broken"}, "json_string": "{\"text\":\"Orange Concrete Broken\"}"}}, "u.warpedDoor": {"CriteriaName": "minecraft.used:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Used"}, "json_string": "{\"text\":\"Warped Door Used\"}"}}, "c.netherWart": {"CriteriaName": "minecraft.crafted:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Crafted"}, "json_string": "{\"text\":\"Nether Wart Crafted\"}"}}, "c.endRod": {"CriteriaName": "minecraft.crafted:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Crafted"}, "json_string": "{\"text\":\"End Rod Crafted\"}"}}, "m.redTulip": {"CriteriaName": "minecraft.mined:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Mined"}, "json_string": "{\"text\":\"Red Tulip Mined\"}"}}, "q.brownConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Dropped"}, "json_string": "{\"text\":\"Brown Concrete Powder Dropped\"}"}}, "b.musicDiscChirp": {"CriteriaName": "minecraft.broken:minecraft.music_disc_chirp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Chirp Broken"}, "json_string": "{\"text\":\"Music Disc Chirp Broken\"}"}}, "b.magentaDye": {"CriteriaName": "minecraft.broken:minecraft.magenta_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Dye Broken"}, "json_string": "{\"text\":\"Magenta Dye Broken\"}"}}, "u.fermentedSpiderEye": {"CriteriaName": "minecraft.used:minecraft.fermented_spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fermented Spider Eye Used"}, "json_string": "{\"text\":\"Fermented Spider Eye Used\"}"}}, "b.goldenSword": {"CriteriaName": "minecraft.broken:minecraft.golden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Sword Broken"}, "json_string": "{\"text\":\"Golden Sword Broken\"}"}}, "u.woodenPickaxe": {"CriteriaName": "minecraft.used:minecraft.wooden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Pickaxe Used"}, "json_string": "{\"text\":\"Wooden Pickaxe Used\"}"}}, "b.glowInkSac": {"CriteriaName": "minecraft.broken:minecraft.glow_ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Ink Sac Broken"}, "json_string": "{\"text\":\"Glow Ink Sac Broken\"}"}}, "q.magmaCream": {"CriteriaName": "minecraft.dropped:minecraft.magma_cream", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cream Dropped"}, "json_string": "{\"text\":\"Magma Cream Dropped\"}"}}, "q.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Dropped\"}"}}, "b.purpleTerracotta": {"CriteriaName": "minecraft.broken:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Broken"}, "json_string": "{\"text\":\"Purple Terracotta Broken\"}"}}, "q.straySpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.stray_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Spawn Egg Dropped"}, "json_string": "{\"text\":\"Stray Spawn Egg Dropped\"}"}}, "k.lightningBolt": {"CriteriaName": "minecraft.killed:minecraft.lightning_bolt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Bolt Killed (how?)"}, "json_string": "{\"text\":\"Lightning Bolt Killed (how?)\"}"}}, "m.stoneBricks": {"CriteriaName": "minecraft.mined:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Mined"}, "json_string": "{\"text\":\"Stone Bricks Mined\"}"}}, "m.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Mined\"}"}}, "u.blastFurnace": {"CriteriaName": "minecraft.used:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Used"}, "json_string": "{\"text\":\"Blast Furnace Used\"}"}}, "q.mossyCobblestoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Dropped"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Dropped\"}"}}, "b.smoothQuartzSlab": {"CriteriaName": "minecraft.broken:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Broken"}, "json_string": "{\"text\":\"Smooth Quartz Slab Broken\"}"}}, "cu.killedByBlackTeam": {"CriteriaName": "killedByTeam.black", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Black Team"}, "json_string": "{\"text\":\"Killed by Black Team\"}"}}, "u.blueStainedGlass": {"CriteriaName": "minecraft.used:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Used"}, "json_string": "{\"text\":\"Blue Stained Glass Used\"}"}}, "m.netherPortal": {"CriteriaName": "minecraft.mined:minecraft.nether_portal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Portal Mined"}, "json_string": "{\"text\":\"Nether Portal Mined\"}"}}, "q.light": {"CriteriaName": "minecraft.dropped:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Dropped"}, "json_string": "{\"text\":\"Light Dropped\"}"}}, "p.redTulip": {"CriteriaName": "minecraft.picked_up:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Picked Up"}, "json_string": "{\"text\":\"Red Tulip Picked Up\"}"}}, "q.grayStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Dropped\"}"}}, "m.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Mined"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Mined\"}"}}, "m.tripwire": {"CriteriaName": "minecraft.mined:minecraft.tripwire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Mined"}, "json_string": "{\"text\":\"Tripwire Mined\"}"}}, "c.orangeConcrete": {"CriteriaName": "minecraft.crafted:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Crafted"}, "json_string": "{\"text\":\"Orange Concrete Crafted\"}"}}, "b.deepslateIronOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Broken"}, "json_string": "{\"text\":\"Deepslate Iron Ore Broken\"}"}}, "g.jump": {"CriteriaName": "minecraft.custom:minecraft.jump", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jump"}, "json_string": "{\"text\":\"Jump\"}"}}, "p.lightGrayConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Picked Up"}, "json_string": "{\"text\":\"Light Gray Concrete Picked Up\"}"}}, "p.playerHead": {"CriteriaName": "minecraft.picked_up:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Picked Up"}, "json_string": "{\"text\":\"Player Head Picked Up\"}"}}, "m.deepslateRedstoneOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Mined"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Mined\"}"}}, "b.netherQuartzOre": {"CriteriaName": "minecraft.broken:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Broken"}, "json_string": "{\"text\":\"Nether Quartz Ore Broken\"}"}}, "p.feather": {"CriteriaName": "minecraft.picked_up:minecraft.feather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Feather Picked Up"}, "json_string": "{\"text\":\"Feather Picked Up\"}"}}, "m.acaciaLog": {"CriteriaName": "minecraft.mined:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Mined"}, "json_string": "{\"text\":\"Acacia Log Mined\"}"}}, "q.purpleBanner": {"CriteriaName": "minecraft.dropped:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Dropped"}, "json_string": "{\"text\":\"Purple Banner Dropped\"}"}}, "b.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Broken\"}"}}, "u.ironTrapdoor": {"CriteriaName": "minecraft.used:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Used"}, "json_string": "{\"text\":\"Iron Trapdoor Used\"}"}}, "m.hornCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Block Mined"}, "json_string": "{\"text\":\"Horn Coral Block Mined\"}"}}, "u.greenGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Used"}, "json_string": "{\"text\":\"Green Glazed Terracotta Used\"}"}}, "u.pinkTulip": {"CriteriaName": "minecraft.used:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Used"}, "json_string": "{\"text\":\"Pink Tulip Used\"}"}}, "p.cyanTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Picked Up"}, "json_string": "{\"text\":\"Cyan Terracotta Picked Up\"}"}}, "b.deadFireCoral": {"CriteriaName": "minecraft.broken:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Broken"}, "json_string": "{\"text\":\"Dead Fire Coral Broken\"}"}}, "c.stoneAxe": {"CriteriaName": "minecraft.crafted:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Axe Crafted"}, "json_string": "{\"text\":\"Stone Axe Crafted\"}"}}, "b.traderLlamaSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.trader_llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Spawn Egg Broken"}, "json_string": "{\"text\":\"Trader Llama Spawn Egg Broken\"}"}}, "b.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Broken\"}"}}, "q.spruceTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Dropped"}, "json_string": "{\"text\":\"Spruce Trapdoor Dropped\"}"}}, "q.magentaConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.magenta_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Powder Dropped"}, "json_string": "{\"text\":\"Magenta Concrete Powder Dropped\"}"}}, "c.chorusFruit": {"CriteriaName": "minecraft.crafted:minecraft.chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Fruit Crafted"}, "json_string": "{\"text\":\"Chorus Fruit Crafted\"}"}}, "c.goldenApple": {"CriteriaName": "minecraft.crafted:minecraft.golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Apple Crafted"}, "json_string": "{\"text\":\"Golden Apple Crafted\"}"}}, "u.blazePowder": {"CriteriaName": "minecraft.used:minecraft.blaze_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Powder Used"}, "json_string": "{\"text\":\"Blaze Powder Used\"}"}}, "q.redMushroom": {"CriteriaName": "minecraft.dropped:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Dropped"}, "json_string": "{\"text\":\"Red Mushroom Dropped\"}"}}, "u.waterBucket": {"CriteriaName": "minecraft.used:minecraft.water_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Bucket Used"}, "json_string": "{\"text\":\"Water Bucket Used\"}"}}, "p.weatheredCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Picked Up"}, "json_string": "{\"text\":\"Weathered Cut Copper Picked Up\"}"}}, "q.commandBlockMinecart": {"CriteriaName": "minecraft.dropped:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Dropped"}, "json_string": "{\"text\":\"Command Block Minecart Dropped\"}"}}, "c.lightBlueCandle": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Crafted"}, "json_string": "{\"text\":\"Light Blue Candle Crafted\"}"}}, "k.magmaCube": {"CriteriaName": "minecraft.killed:minecraft.magma_cube", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Killed"}, "json_string": "{\"text\":\"Magma Cube Killed\"}"}}, "p.chorusFruit": {"CriteriaName": "minecraft.picked_up:minecraft.chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Fruit Picked Up"}, "json_string": "{\"text\":\"Chorus Fruit Picked Up\"}"}}, "q.dirt": {"CriteriaName": "minecraft.dropped:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Dropped"}, "json_string": "{\"text\":\"Dirt Dropped\"}"}}, "b.cyanDye": {"CriteriaName": "minecraft.broken:minecraft.cyan_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Dye Broken"}, "json_string": "{\"text\":\"Cyan Dye Broken\"}"}}, "u.feather": {"CriteriaName": "minecraft.used:minecraft.feather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Feather Used"}, "json_string": "{\"text\":\"Feather Used\"}"}}, "c.musicDiscChirp": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_chirp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Chirp Crafted"}, "json_string": "{\"text\":\"Music Disc Chirp Crafted\"}"}}, "m.blueWallBanner": {"CriteriaName": "minecraft.mined:minecraft.blue_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wall Banner Mined"}, "json_string": "{\"text\":\"Blue Wall Banner Mined\"}"}}, "tc.valid": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.valid"}, "json_string": "{\"text\":\"tc.valid\"}"}}, "b.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Broken"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Broken\"}"}}, "b.shulkerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.shulker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Spawn Egg Broken"}, "json_string": "{\"text\":\"Shulker Spawn Egg Broken\"}"}}, "q.ancientDebris": {"CriteriaName": "minecraft.dropped:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Dropped"}, "json_string": "{\"text\":\"Ancient Debris Dropped\"}"}}, "b.blueBed": {"CriteriaName": "minecraft.broken:minecraft.blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Bed Broken"}, "json_string": "{\"text\":\"Blue Bed Broken\"}"}}, "p.netherSprouts": {"CriteriaName": "minecraft.picked_up:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Picked Up"}, "json_string": "{\"text\":\"Nether Sprouts Picked Up\"}"}}, "c.dirt": {"CriteriaName": "minecraft.crafted:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Crafted"}, "json_string": "{\"text\":\"Dirt Crafted\"}"}}, "u.darkPrismarineStairs": {"CriteriaName": "minecraft.used:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Used"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Used\"}"}}, "u.straySpawnEgg": {"CriteriaName": "minecraft.used:minecraft.stray_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Spawn Egg Used"}, "json_string": "{\"text\":\"Stray Spawn Egg Used\"}"}}, "u.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Used"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Used\"}"}}, "b.mossBlock": {"CriteriaName": "minecraft.broken:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Broken"}, "json_string": "{\"text\":\"Moss Block Broken\"}"}}, "q.carrot": {"CriteriaName": "minecraft.dropped:minecraft.carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot Dropped"}, "json_string": "{\"text\":\"Carrot Dropped\"}"}}, "u.acaciaStairs": {"CriteriaName": "minecraft.used:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Used"}, "json_string": "{\"text\":\"Acacia Stairs Used\"}"}}, "u.lightGrayConcretePowder": {"CriteriaName": "minecraft.used:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Used"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Used\"}"}}, "q.cyanTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Dropped"}, "json_string": "{\"text\":\"Cyan Terracotta Dropped\"}"}}, "u.hornCoralFan": {"CriteriaName": "minecraft.used:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Used"}, "json_string": "{\"text\":\"Horn Coral Fan Used\"}"}}, "c.string": {"CriteriaName": "minecraft.crafted:minecraft.string", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "String Crafted"}, "json_string": "{\"text\":\"String Crafted\"}"}}, "c.pinkStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Crafted"}, "json_string": "{\"text\":\"Pink Stained Glass Crafted\"}"}}, "m.brownCarpet": {"CriteriaName": "minecraft.mined:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Mined"}, "json_string": "{\"text\":\"Brown Carpet Mined\"}"}}, "b.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Broken"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Broken\"}"}}, "c.tallGrass": {"CriteriaName": "minecraft.crafted:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Crafted"}, "json_string": "{\"text\":\"Tall Grass Crafted\"}"}}, "c.prismarineShard": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Shard Crafted"}, "json_string": "{\"text\":\"Prismarine Shard Crafted\"}"}}, "p.acaciaWood": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Picked Up"}, "json_string": "{\"text\":\"Acacia Wood Picked Up\"}"}}, "c.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Crafted"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Crafted\"}"}}, "q.grayBed": {"CriteriaName": "minecraft.dropped:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Dropped"}, "json_string": "{\"text\":\"Gray Bed Dropped\"}"}}, "c.diamondBlock": {"CriteriaName": "minecraft.crafted:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Crafted"}, "json_string": "{\"text\":\"Diamond Block Crafted\"}"}}, "u.damagedAnvil": {"CriteriaName": "minecraft.used:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Used"}, "json_string": "{\"text\":\"Damaged Anvil Used\"}"}}, "q.fireworkRocket": {"CriteriaName": "minecraft.dropped:minecraft.firework_rocket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Rocket Dropped"}, "json_string": "{\"text\":\"Firework Rocket Dropped\"}"}}, "g.playerKills": {"CriteriaName": "minecraft.custom:minecraft.player_kills", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Kills"}, "json_string": "{\"text\":\"Player Kills\"}"}}, "m.redMushroomBlock": {"CriteriaName": "minecraft.mined:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Mined"}, "json_string": "{\"text\":\"Red Mushroom Block Mined\"}"}}, "m.grayConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Mined"}, "json_string": "{\"text\":\"Gray Concrete Powder Mined\"}"}}, "b.smoker": {"CriteriaName": "minecraft.broken:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Broken"}, "json_string": "{\"text\":\"Smoker Broken\"}"}}, "b.dragonBreath": {"CriteriaName": "minecraft.broken:minecraft.dragon_breath", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Breath Broken"}, "json_string": "{\"text\":\"Dragon Breath Broken\"}"}}, "q.lightGrayDye": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Dye Dropped"}, "json_string": "{\"text\":\"Light Gray Dye Dropped\"}"}}, "p.stonePressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Stone Pressure Plate Picked Up\"}"}}, "q.oakTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.oak_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Trapdoor Dropped"}, "json_string": "{\"text\":\"Oak Trapdoor Dropped\"}"}}, "c.sugarCane": {"CriteriaName": "minecraft.crafted:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Crafted"}, "json_string": "{\"text\":\"Sugar Cane Crafted\"}"}}, "m.lightBlueCarpet": {"CriteriaName": "minecraft.mined:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Mined"}, "json_string": "{\"text\":\"Light Blue Carpet Mined\"}"}}, "p.endStoneBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Picked Up"}, "json_string": "{\"text\":\"End Stone Brick Slab Picked Up\"}"}}, "u.purpleCarpet": {"CriteriaName": "minecraft.used:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Used"}, "json_string": "{\"text\":\"Purple Carpet Used\"}"}}, "c.whiteCandle": {"CriteriaName": "minecraft.crafted:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Crafted"}, "json_string": "{\"text\":\"White Candle Crafted\"}"}}, "b.ironIngot": {"CriteriaName": "minecraft.broken:minecraft.iron_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ingot Broken"}, "json_string": "{\"text\":\"Iron Ingot Broken\"}"}}, "c.furnace": {"CriteriaName": "minecraft.crafted:minecraft.furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Crafted"}, "json_string": "{\"text\":\"Furnace Crafted\"}"}}, "u.orangeStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Used"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Used\"}"}}, "p.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Picked Up\"}"}}, "u.glowstoneDust": {"CriteriaName": "minecraft.used:minecraft.glowstone_dust", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dust Used"}, "json_string": "{\"text\":\"Glowstone Dust Used\"}"}}, "q.beef": {"CriteriaName": "minecraft.dropped:minecraft.beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beef Dropped"}, "json_string": "{\"text\":\"Beef Dropped\"}"}}, "c.acaciaWood": {"CriteriaName": "minecraft.crafted:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Crafted"}, "json_string": "{\"text\":\"Acacia Wood Crafted\"}"}}, "q.warpedTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Dropped"}, "json_string": "{\"text\":\"Warped Trapdoor Dropped\"}"}}, "q.map": {"CriteriaName": "minecraft.dropped:minecraft.map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Map Dropped"}, "json_string": "{\"text\":\"Map Dropped\"}"}}, "c.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Crafted\"}"}}, "q.chiseledDeepslate": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Dropped"}, "json_string": "{\"text\":\"Chiseled Deepslate Dropped\"}"}}, "p.magmaBlock": {"CriteriaName": "minecraft.picked_up:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Picked Up"}, "json_string": "{\"text\":\"Magma Block Picked Up\"}"}}, "c.yellowShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Crafted"}, "json_string": "{\"text\":\"Yellow Shulker Box Crafted\"}"}}, "p.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Picked Up\"}"}}, "q.ironIngot": {"CriteriaName": "minecraft.dropped:minecraft.iron_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ingot Dropped"}, "json_string": "{\"text\":\"Iron Ingot Dropped\"}"}}, "q.yellowBed": {"CriteriaName": "minecraft.dropped:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Dropped"}, "json_string": "{\"text\":\"Yellow Bed Dropped\"}"}}, "u.deadBrainCoral": {"CriteriaName": "minecraft.used:minecraft.dead_brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Used"}, "json_string": "{\"text\":\"Dead Brain Coral Used\"}"}}, "q.whiteCandle": {"CriteriaName": "minecraft.dropped:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Dropped"}, "json_string": "{\"text\":\"White Candle Dropped\"}"}}, "u.birchFence": {"CriteriaName": "minecraft.used:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Used"}, "json_string": "{\"text\":\"Birch Fence Used\"}"}}, "m.waxedWeatheredCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Mined"}, "json_string": "{\"text\":\"Waxed Weathered Copper Mined\"}"}}, "b.netherBrick": {"CriteriaName": "minecraft.broken:minecraft.nether_brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Broken"}, "json_string": "{\"text\":\"Nether Brick Broken\"}"}}, "m.mossBlock": {"CriteriaName": "minecraft.mined:minecraft.moss_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Block Mined"}, "json_string": "{\"text\":\"Moss Block Mined\"}"}}, "m.crimsonRoots": {"CriteriaName": "minecraft.mined:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Mined"}, "json_string": "{\"text\":\"Crimson Roots Mined\"}"}}, "p.tintedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Picked Up"}, "json_string": "{\"text\":\"Tinted Glass Picked Up\"}"}}, "m.pottedOakSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Oak Sapling Mined"}, "json_string": "{\"text\":\"Potted Oak Sapling Mined\"}"}}, "p.grindstone": {"CriteriaName": "minecraft.picked_up:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Picked Up"}, "json_string": "{\"text\":\"Grindstone Picked Up\"}"}}, "m.fireCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.fire_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Fire Coral Wall Fan Mined\"}"}}, "p.limeConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.lime_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Lime Concrete Powder Picked Up\"}"}}, "q.blackstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Dropped"}, "json_string": "{\"text\":\"Blackstone Stairs Dropped\"}"}}, "b.pumpkinSeeds": {"CriteriaName": "minecraft.broken:minecraft.pumpkin_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Seeds Broken"}, "json_string": "{\"text\":\"Pumpkin Seeds Broken\"}"}}, "b.warpedWartBlock": {"CriteriaName": "minecraft.broken:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Broken"}, "json_string": "{\"text\":\"Warped Wart Block Broken\"}"}}, "c.redstoneLamp": {"CriteriaName": "minecraft.crafted:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Crafted"}, "json_string": "{\"text\":\"Redstone Lamp Crafted\"}"}}, "p.endRod": {"CriteriaName": "minecraft.picked_up:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Picked Up"}, "json_string": "{\"text\":\"End Rod Picked Up\"}"}}, "p.redConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Picked Up"}, "json_string": "{\"text\":\"Red Concrete Picked Up\"}"}}, "p.driedKelp": {"CriteriaName": "minecraft.picked_up:minecraft.dried_kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Picked Up"}, "json_string": "{\"text\":\"Dried Kelp Picked Up\"}"}}, "c.diamondShovel": {"CriteriaName": "minecraft.crafted:minecraft.diamond_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Shovel Crafted"}, "json_string": "{\"text\":\"Diamond Shovel Crafted\"}"}}, "b.campfire": {"CriteriaName": "minecraft.broken:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Broken"}, "json_string": "{\"text\":\"Campfire Broken\"}"}}, "c.blueCarpet": {"CriteriaName": "minecraft.crafted:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Crafted"}, "json_string": "{\"text\":\"Blue Carpet Crafted\"}"}}, "m.whiteWallBanner": {"CriteriaName": "minecraft.mined:minecraft.white_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wall Banner Mined"}, "json_string": "{\"text\":\"White Wall Banner Mined\"}"}}, "u.deepslateBrickWall": {"CriteriaName": "minecraft.used:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Used"}, "json_string": "{\"text\":\"Deepslate Brick Wall Used\"}"}}, "q.chorusPlant": {"CriteriaName": "minecraft.dropped:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Dropped"}, "json_string": "{\"text\":\"Chorus Plant Dropped\"}"}}, "b.redConcrete": {"CriteriaName": "minecraft.broken:minecraft.red_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Broken"}, "json_string": "{\"text\":\"Red Concrete Broken\"}"}}, "p.darkOakBoat": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Boat Picked Up"}, "json_string": "{\"text\":\"Dark Oak Boat Picked Up\"}"}}, "k.pig": {"CriteriaName": "minecraft.killed:minecraft.pig", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Killed"}, "json_string": "{\"text\":\"Pig Killed\"}"}}, "c.composter": {"CriteriaName": "minecraft.crafted:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Crafted"}, "json_string": "{\"text\":\"Composter Crafted\"}"}}, "c.deepslateBricks": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Crafted"}, "json_string": "{\"text\":\"Deepslate Bricks Crafted\"}"}}, "c.infestedDeepslate": {"CriteriaName": "minecraft.crafted:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Crafted"}, "json_string": "{\"text\":\"Infested Deepslate Crafted\"}"}}, "m.warpedStem": {"CriteriaName": "minecraft.mined:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Mined"}, "json_string": "{\"text\":\"Warped Stem Mined\"}"}}, "p.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Picked Up\"}"}}, "m.strippedOakLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Log Mined"}, "json_string": "{\"text\":\"Stripped Oak Log Mined\"}"}}, "c.birchStairs": {"CriteriaName": "minecraft.crafted:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Crafted"}, "json_string": "{\"text\":\"Birch Stairs Crafted\"}"}}, "u.spruceTrapdoor": {"CriteriaName": "minecraft.used:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Used"}, "json_string": "{\"text\":\"Spruce Trapdoor Used\"}"}}, "u.waxedOxidizedCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Used"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Used\"}"}}, "tc.break_mangrove": {"CriteriaName": "minecraft.mined:minecraft.mangrove_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_mangrove"}, "json_string": "{\"text\":\"tc.break_mangrove\"}"}}, "g.damageResisted": {"CriteriaName": "minecraft.custom:minecraft.damage_resisted", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Resisted"}, "json_string": "{\"text\":\"Damage Resisted\"}"}}, "cu.flyOneCm": {"CriteriaName": "minecraft.custom:minecraft.fly_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fly One Cm"}, "json_string": "{\"text\":\"Fly One Cm\"}"}}, "p.cyanBanner": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Picked Up"}, "json_string": "{\"text\":\"Cyan Banner Picked Up\"}"}}, "m.deadFireCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Mined"}, "json_string": "{\"text\":\"Dead Fire Coral Block Mined\"}"}}, "q.blackstone": {"CriteriaName": "minecraft.dropped:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Dropped"}, "json_string": "{\"text\":\"Blackstone Dropped\"}"}}, "q.waxedExposedCopper": {"CriteriaName": "minecraft.dropped:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Dropped"}, "json_string": "{\"text\":\"Waxed Exposed Copper Dropped\"}"}}, "p.hoglinSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.hoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Hoglin Spawn Egg Picked Up\"}"}}, "m.warpedNylium": {"CriteriaName": "minecraft.mined:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Mined"}, "json_string": "{\"text\":\"Warped Nylium Mined\"}"}}, "c.soulTorch": {"CriteriaName": "minecraft.crafted:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Crafted"}, "json_string": "{\"text\":\"Soul Torch Crafted\"}"}}, "p.smallAmethystBud": {"CriteriaName": "minecraft.picked_up:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Picked Up"}, "json_string": "{\"text\":\"Small Amethyst Bud Picked Up\"}"}}, "q.whiteTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Dropped"}, "json_string": "{\"text\":\"White Terracotta Dropped\"}"}}, "u.magentaShulkerBox": {"CriteriaName": "minecraft.used:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Used"}, "json_string": "{\"text\":\"Magenta Shulker Box Used\"}"}}, "p.stone": {"CriteriaName": "minecraft.picked_up:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Picked Up"}, "json_string": "{\"text\":\"Stone Picked Up\"}"}}, "q.spruceFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Dropped"}, "json_string": "{\"text\":\"Spruce Fence Gate Dropped\"}"}}, "q.anvil": {"CriteriaName": "minecraft.dropped:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Dropped"}, "json_string": "{\"text\":\"Anvil Dropped\"}"}}, "p.netherrack": {"CriteriaName": "minecraft.picked_up:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Picked Up"}, "json_string": "{\"text\":\"Netherrack Picked Up\"}"}}, "m.bubbleColumn": {"CriteriaName": "minecraft.mined:minecraft.bubble_column", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Column Mined"}, "json_string": "{\"text\":\"Bubble Column Mined\"}"}}, "c.lavaBucket": {"CriteriaName": "minecraft.crafted:minecraft.lava_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Bucket Crafted"}, "json_string": "{\"text\":\"Lava Bucket Crafted\"}"}}, "p.yellowConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Picked Up"}, "json_string": "{\"text\":\"Yellow Concrete Picked Up\"}"}}, "p.azalea": {"CriteriaName": "minecraft.picked_up:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Picked Up"}, "json_string": "{\"text\":\"Azalea Picked Up\"}"}}, "u.lingeringPotion": {"CriteriaName": "minecraft.used:minecraft.lingering_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lingering Potion Used"}, "json_string": "{\"text\":\"Lingering Potion Used\"}"}}, "p.cartographyTable": {"CriteriaName": "minecraft.picked_up:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Picked Up"}, "json_string": "{\"text\":\"Cartography Table Picked Up\"}"}}, "b.darkOakBoat": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Boat Broken"}, "json_string": "{\"text\":\"Dark Oak Boat Broken\"}"}}, "c.birchBoat": {"CriteriaName": "minecraft.crafted:minecraft.birch_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Boat Crafted"}, "json_string": "{\"text\":\"Birch Boat Crafted\"}"}}, "q.orangeTulip": {"CriteriaName": "minecraft.dropped:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Dropped"}, "json_string": "{\"text\":\"Orange Tulip Dropped\"}"}}, "p.diamondAxe": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Axe Picked Up"}, "json_string": "{\"text\":\"Diamond Axe Picked Up\"}"}}, "c.shield": {"CriteriaName": "minecraft.crafted:minecraft.shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shield Crafted"}, "json_string": "{\"text\":\"Shield Crafted\"}"}}, "u.mossyStoneBrickWall": {"CriteriaName": "minecraft.used:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Used"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Used\"}"}}, "p.acaciaPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Picked Up"}, "json_string": "{\"text\":\"Acacia Planks Picked Up\"}"}}, "u.roseBush": {"CriteriaName": "minecraft.used:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Used"}, "json_string": "{\"text\":\"Rose Bush Used\"}"}}, "b.cutSandstone": {"CriteriaName": "minecraft.broken:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Broken"}, "json_string": "{\"text\":\"Cut Sandstone Broken\"}"}}, "u.brick": {"CriteriaName": "minecraft.used:minecraft.brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Used"}, "json_string": "{\"text\":\"Brick Used\"}"}}, "m.yellowWool": {"CriteriaName": "minecraft.mined:minecraft.yellow_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wool Mined"}, "json_string": "{\"text\":\"Yellow Wool Mined\"}"}}, "p.vindicatorSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.vindicator_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Vindicator Spawn Egg Picked Up\"}"}}, "u.birchStairs": {"CriteriaName": "minecraft.used:minecraft.birch_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Stairs Used"}, "json_string": "{\"text\":\"Birch Stairs Used\"}"}}, "cu.striderOneCm": {"CriteriaName": "minecraft.custom:minecraft.strider_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider One Cm"}, "json_string": "{\"text\":\"Strider One Cm\"}"}}, "b.blackBed": {"CriteriaName": "minecraft.broken:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Broken"}, "json_string": "{\"text\":\"Black Bed Broken\"}"}}, "b.deadTubeCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Broken"}, "json_string": "{\"text\":\"Dead Tube Coral Block Broken\"}"}}, "m.cauldron": {"CriteriaName": "minecraft.mined:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Mined"}, "json_string": "{\"text\":\"Cauldron Mined\"}"}}, "g.interactWithLoom": {"CriteriaName": "minecraft.custom:minecraft.interact_with_loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Loom"}, "json_string": "{\"text\":\"Interact with Loom\"}"}}, "p.creeperSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.creeper_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Creeper Spawn Egg Picked Up\"}"}}, "m.magentaCarpet": {"CriteriaName": "minecraft.mined:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Mined"}, "json_string": "{\"text\":\"Magenta Carpet Mined\"}"}}, "u.whiteConcretePowder": {"CriteriaName": "minecraft.used:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Used"}, "json_string": "{\"text\":\"White Concrete Powder Used\"}"}}, "p.magentaStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Picked Up\"}"}}, "c.fermentedSpiderEye": {"CriteriaName": "minecraft.crafted:minecraft.fermented_spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fermented Spider Eye Crafted"}, "json_string": "{\"text\":\"Fermented Spider Eye Crafted\"}"}}, "q.lightGrayBed": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Dropped"}, "json_string": "{\"text\":\"Light Gray Bed Dropped\"}"}}, "b.lightWeightedPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Broken"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Broken\"}"}}, "c.polarBearSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.polar_bear_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Spawn Egg Crafted"}, "json_string": "{\"text\":\"Polar Bear Spawn Egg Crafted\"}"}}, "b.lightBlueBed": {"CriteriaName": "minecraft.broken:minecraft.light_blue_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Bed Broken"}, "json_string": "{\"text\":\"Light Blue Bed Broken\"}"}}, "q.blackTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Dropped"}, "json_string": "{\"text\":\"Black Terracotta Dropped\"}"}}, "b.soulSand": {"CriteriaName": "minecraft.broken:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Broken"}, "json_string": "{\"text\":\"Soul Sand Broken\"}"}}, "p.birchLog": {"CriteriaName": "minecraft.picked_up:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Picked Up"}, "json_string": "{\"text\":\"Birch Log Picked Up\"}"}}, "p.bow": {"CriteriaName": "minecraft.picked_up:minecraft.bow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bow Picked Up"}, "json_string": "{\"text\":\"Bow Picked Up\"}"}}, "m.cyanConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Mined"}, "json_string": "{\"text\":\"Cyan Concrete Powder Mined\"}"}}, "q.strippedWarpedHyphae": {"CriteriaName": "minecraft.dropped:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Dropped"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Dropped\"}"}}, "q.parrotSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.parrot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Spawn Egg Dropped"}, "json_string": "{\"text\":\"Parrot Spawn Egg Dropped\"}"}}, "u.chest": {"CriteriaName": "minecraft.used:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Used"}, "json_string": "{\"text\":\"Chest Used\"}"}}, "c.candle": {"CriteriaName": "minecraft.crafted:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Crafted"}, "json_string": "{\"text\":\"Candle Crafted\"}"}}, "u.deadTubeCoralFan": {"CriteriaName": "minecraft.used:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Used"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Used\"}"}}, "q.cobblestone": {"CriteriaName": "minecraft.dropped:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Dropped"}, "json_string": "{\"text\":\"Cobblestone Dropped\"}"}}, "m.purpleGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Mined\"}"}}, "u.brownShulkerBox": {"CriteriaName": "minecraft.used:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Used"}, "json_string": "{\"text\":\"Brown Shulker Box Used\"}"}}, "b.acaciaStairs": {"CriteriaName": "minecraft.broken:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Broken"}, "json_string": "{\"text\":\"Acacia Stairs Broken\"}"}}, "u.birchPlanks": {"CriteriaName": "minecraft.used:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Used"}, "json_string": "{\"text\":\"Birch Planks Used\"}"}}, "m.pottedDarkOakSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_dark_oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Dark Oak Sapling Mined"}, "json_string": "{\"text\":\"Potted Dark Oak Sapling Mined\"}"}}, "q.wheatSeeds": {"CriteriaName": "minecraft.dropped:minecraft.wheat_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Seeds Dropped"}, "json_string": "{\"text\":\"Wheat Seeds Dropped\"}"}}, "q.crossbow": {"CriteriaName": "minecraft.dropped:minecraft.crossbow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crossbow Dropped"}, "json_string": "{\"text\":\"Crossbow Dropped\"}"}}, "c.hopper": {"CriteriaName": "minecraft.crafted:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Crafted"}, "json_string": "{\"text\":\"Hopper Crafted\"}"}}, "p.cyanWool": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Picked Up"}, "json_string": "{\"text\":\"Cyan Wool Picked Up\"}"}}, "b.stick": {"CriteriaName": "minecraft.broken:minecraft.stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stick Broken"}, "json_string": "{\"text\":\"Stick Broken\"}"}}, "q.stoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Dropped"}, "json_string": "{\"text\":\"Stone Slab Dropped\"}"}}, "c.honeycombBlock": {"CriteriaName": "minecraft.crafted:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Crafted"}, "json_string": "{\"text\":\"Honeycomb Block Crafted\"}"}}, "c.smithingTable": {"CriteriaName": "minecraft.crafted:minecraft.smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smithing Table Crafted"}, "json_string": "{\"text\":\"Smithing Table Crafted\"}"}}, "q.spruceSlab": {"CriteriaName": "minecraft.dropped:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Dropped"}, "json_string": "{\"text\":\"Spruce Slab Dropped\"}"}}, "p.woodenShovel": {"CriteriaName": "minecraft.picked_up:minecraft.wooden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Shovel Picked Up"}, "json_string": "{\"text\":\"Wooden Shovel Picked Up\"}"}}, "b.boneBlock": {"CriteriaName": "minecraft.broken:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Broken"}, "json_string": "{\"text\":\"Bone Block Broken\"}"}}, "b.dropper": {"CriteriaName": "minecraft.broken:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Broken"}, "json_string": "{\"text\":\"Dropper Broken\"}"}}, "c.mooshroomSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.mooshroom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mooshroom Spawn Egg Crafted"}, "json_string": "{\"text\":\"Mooshroom Spawn Egg Crafted\"}"}}, "p.allium": {"CriteriaName": "minecraft.picked_up:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Picked Up"}, "json_string": "{\"text\":\"Allium Picked Up\"}"}}, "p.netheriteScrap": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_scrap", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Scrap Picked Up"}, "json_string": "{\"text\":\"Netherite Scrap Picked Up\"}"}}, "c.grayBed": {"CriteriaName": "minecraft.crafted:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Crafted"}, "json_string": "{\"text\":\"Gray Bed Crafted\"}"}}, "m.birchPlanks": {"CriteriaName": "minecraft.mined:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Mined"}, "json_string": "{\"text\":\"Birch Planks Mined\"}"}}, "b.chiseledQuartzBlock": {"CriteriaName": "minecraft.broken:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Broken"}, "json_string": "{\"text\":\"Chiseled Quartz Block Broken\"}"}}, "c.musicDisc13": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_13", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 13 Crafted"}, "json_string": "{\"text\":\"Music Disc 13 Crafted\"}"}}, "m.blackWallBanner": {"CriteriaName": "minecraft.mined:minecraft.black_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wall Banner Mined"}, "json_string": "{\"text\":\"Black Wall Banner Mined\"}"}}, "q.limeConcrete": {"CriteriaName": "minecraft.dropped:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Dropped"}, "json_string": "{\"text\":\"Lime Concrete Dropped\"}"}}, "u.polishedBlackstone": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Used"}, "json_string": "{\"text\":\"Polished Blackstone Used\"}"}}, "p.commandBlockMinecart": {"CriteriaName": "minecraft.picked_up:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Picked Up"}, "json_string": "{\"text\":\"Command Block Minecart Picked Up\"}"}}, "q.ironBoots": {"CriteriaName": "minecraft.dropped:minecraft.iron_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Boots Dropped"}, "json_string": "{\"text\":\"Iron Boots Dropped\"}"}}, "u.cocoaBeans": {"CriteriaName": "minecraft.used:minecraft.cocoa_beans", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Beans Used"}, "json_string": "{\"text\":\"Cocoa Beans Used\"}"}}, "q.lapisBlock": {"CriteriaName": "minecraft.dropped:minecraft.lapis_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Block Dropped"}, "json_string": "{\"text\":\"Lapis Block Dropped\"}"}}, "q.birchWood": {"CriteriaName": "minecraft.dropped:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Dropped"}, "json_string": "{\"text\":\"Birch Wood Dropped\"}"}}, "c.weatheredCopper": {"CriteriaName": "minecraft.crafted:minecraft.weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Copper Crafted"}, "json_string": "{\"text\":\"Weathered Copper Crafted\"}"}}, "u.cobblestoneStairs": {"CriteriaName": "minecraft.used:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Used"}, "json_string": "{\"text\":\"Cobblestone Stairs Used\"}"}}, "b.birchWood": {"CriteriaName": "minecraft.broken:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Broken"}, "json_string": "{\"text\":\"Birch Wood Broken\"}"}}, "m.endRod": {"CriteriaName": "minecraft.mined:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Mined"}, "json_string": "{\"text\":\"End Rod Mined\"}"}}, "u.foxSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.fox_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fox Spawn Egg Used"}, "json_string": "{\"text\":\"Fox Spawn Egg Used\"}"}}, "c.musicDisc11": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_11", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc 11 Crafted"}, "json_string": "{\"text\":\"Music Disc 11 Crafted\"}"}}, "p.comparator": {"CriteriaName": "minecraft.picked_up:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Picked Up"}, "json_string": "{\"text\":\"Comparator Picked Up\"}"}}, "m.pottedRedTulip": {"CriteriaName": "minecraft.mined:minecraft.potted_red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Red Tulip Mined"}, "json_string": "{\"text\":\"Potted Red Tulip Mined\"}"}}, "m.greenTerracotta": {"CriteriaName": "minecraft.mined:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Mined"}, "json_string": "{\"text\":\"Green Terracotta Mined\"}"}}, "p.oakSign": {"CriteriaName": "minecraft.picked_up:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Picked Up"}, "json_string": "{\"text\":\"Oak Sign Picked Up\"}"}}, "k.hoglin": {"CriteriaName": "minecraft.killed:minecraft.hoglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin"}, "json_string": "{\"text\":\"Hoglin\"}"}}, "m.pinkBanner": {"CriteriaName": "minecraft.mined:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Mined"}, "json_string": "{\"text\":\"Pink Banner Mined\"}"}}, "u.enchantedGoldenApple": {"CriteriaName": "minecraft.used:minecraft.enchanted_golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Golden Apple Used"}, "json_string": "{\"text\":\"Enchanted Golden Apple Used\"}"}}, "u.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Used"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Used\"}"}}, "c.blueStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Crafted\"}"}}, "c.deepslateEmeraldOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Crafted\"}"}}, "p.potion": {"CriteriaName": "minecraft.picked_up:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Picked Up"}, "json_string": "{\"text\":\"Potion Picked Up\"}"}}, "q.cutRedSandstone": {"CriteriaName": "minecraft.dropped:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Dropped"}, "json_string": "{\"text\":\"Cut Red Sandstone Dropped\"}"}}, "p.catSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.cat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Cat Spawn Egg Picked Up\"}"}}, "u.pinkStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.pink_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Pane Used"}, "json_string": "{\"text\":\"Pink Stained Glass Pane Used\"}"}}, "b.crimsonStem": {"CriteriaName": "minecraft.broken:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Broken"}, "json_string": "{\"text\":\"Crimson Stem Broken\"}"}}, "u.egg": {"CriteriaName": "minecraft.used:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Used"}, "json_string": "{\"text\":\"Egg Used\"}"}}, "b.netheriteBlock": {"CriteriaName": "minecraft.broken:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Broken"}, "json_string": "{\"text\":\"Netherite Block Broken\"}"}}, "b.redGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Red Glazed Terracotta Broken\"}"}}, "b.bigDripleaf": {"CriteriaName": "minecraft.broken:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Broken"}, "json_string": "{\"text\":\"Big Dripleaf Broken\"}"}}, "u.skeletonHorseSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.skeleton_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Spawn Egg Used"}, "json_string": "{\"text\":\"Skeleton Horse Spawn Egg Used\"}"}}, "b.oakWood": {"CriteriaName": "minecraft.broken:minecraft.oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Wood Broken"}, "json_string": "{\"text\":\"Oak Wood Broken\"}"}}, "p.polishedBlackstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Slab Picked Up\"}"}}, "b.cookie": {"CriteriaName": "minecraft.broken:minecraft.cookie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cookie Broken"}, "json_string": "{\"text\":\"Cookie Broken\"}"}}, "b.yellowTerracotta": {"CriteriaName": "minecraft.broken:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Broken"}, "json_string": "{\"text\":\"Yellow Terracotta Broken\"}"}}, "q.heartOfTheSea": {"CriteriaName": "minecraft.dropped:minecraft.heart_of_the_sea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heart Of The Sea Dropped"}, "json_string": "{\"text\":\"Heart Of The Sea Dropped\"}"}}, "p.emerald": {"CriteriaName": "minecraft.picked_up:minecraft.emerald", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Picked Up"}, "json_string": "{\"text\":\"Emerald Picked Up\"}"}}, "u.goldenSword": {"CriteriaName": "minecraft.used:minecraft.golden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Sword Used"}, "json_string": "{\"text\":\"Golden Sword Used\"}"}}, "c.smoothBasalt": {"CriteriaName": "minecraft.crafted:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Crafted"}, "json_string": "{\"text\":\"Smooth Basalt Crafted\"}"}}, "p.ironDoor": {"CriteriaName": "minecraft.picked_up:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Picked Up"}, "json_string": "{\"text\":\"Iron Door Picked Up\"}"}}, "c.whiteWool": {"CriteriaName": "minecraft.crafted:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Crafted"}, "json_string": "{\"text\":\"White Wool Crafted\"}"}}, "b.magentaShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Broken"}, "json_string": "{\"text\":\"Magenta Shulker Box Broken\"}"}}, "q.ironHelmet": {"CriteriaName": "minecraft.dropped:minecraft.iron_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Helmet Dropped"}, "json_string": "{\"text\":\"Iron Helmet Dropped\"}"}}, "c.orangeBed": {"CriteriaName": "minecraft.crafted:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Crafted"}, "json_string": "{\"text\":\"Orange Bed Crafted\"}"}}, "b.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Broken"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Broken\"}"}}, "b.cobblestoneSlab": {"CriteriaName": "minecraft.broken:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Broken"}, "json_string": "{\"text\":\"Cobblestone Slab Broken\"}"}}, "b.purpurSlab": {"CriteriaName": "minecraft.broken:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Broken"}, "json_string": "{\"text\":\"Purpur Slab Broken\"}"}}, "p.strippedDarkOakWood": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Picked Up"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Picked Up\"}"}}, "b.gravel": {"CriteriaName": "minecraft.broken:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Broken"}, "json_string": "{\"text\":\"Gravel Broken\"}"}}, "c.hoglinSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.hoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin Spawn Egg Crafted"}, "json_string": "{\"text\":\"Hoglin Spawn Egg Crafted\"}"}}, "c.mossyStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Crafted"}, "json_string": "{\"text\":\"Mossy Stone Bricks Crafted\"}"}}, "tc.use_stone": {"CriteriaName": "minecraft.used:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_stone"}, "json_string": "{\"text\":\"tc.use_stone\"}"}}, "c.crimsonTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.crimson_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Trapdoor Crafted"}, "json_string": "{\"text\":\"Crimson Trapdoor Crafted\"}"}}, "p.strippedCrimsonHyphae": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Hyphae Picked Up"}, "json_string": "{\"text\":\"Stripped Crimson Hyphae Picked Up\"}"}}, "b.crackedDeepslateTiles": {"CriteriaName": "minecraft.broken:minecraft.cracked_deepslate_tiles", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Tiles Broken"}, "json_string": "{\"text\":\"Cracked Deepslate Tiles Broken\"}"}}, "p.dirtPath": {"CriteriaName": "minecraft.picked_up:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Picked Up"}, "json_string": "{\"text\":\"Dirt Path Picked Up\"}"}}, "p.redTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Picked Up"}, "json_string": "{\"text\":\"Red Terracotta Picked Up\"}"}}, "m.deadHornCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.dead_horn_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Dead Horn Coral Wall Fan Mined\"}"}}, "c.netheriteScrap": {"CriteriaName": "minecraft.crafted:minecraft.netherite_scrap", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Scrap Crafted"}, "json_string": "{\"text\":\"Netherite Scrap Crafted\"}"}}, "q.diorite": {"CriteriaName": "minecraft.dropped:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Dropped"}, "json_string": "{\"text\":\"Diorite Dropped\"}"}}, "u.prismarineBricks": {"CriteriaName": "minecraft.used:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Used"}, "json_string": "{\"text\":\"Prismarine Bricks Used\"}"}}, "c.sugar": {"CriteriaName": "minecraft.crafted:minecraft.sugar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Crafted"}, "json_string": "{\"text\":\"Sugar Crafted\"}"}}, "m.stonePressurePlate": {"CriteriaName": "minecraft.mined:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Mined"}, "json_string": "{\"text\":\"Stone Pressure Plate Mined\"}"}}, "q.soulCampfire": {"CriteriaName": "minecraft.dropped:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Dropped"}, "json_string": "{\"text\":\"Soul Campfire Dropped\"}"}}, "k.witch": {"CriteriaName": "minecraft.killed:minecraft.witch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Killed"}, "json_string": "{\"text\":\"Witch Killed\"}"}}, "m.blackConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Mined"}, "json_string": "{\"text\":\"Black Concrete Powder Mined\"}"}}, "b.greenConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Broken"}, "json_string": "{\"text\":\"Green Concrete Powder Broken\"}"}}, "u.ironLeggings": {"CriteriaName": "minecraft.used:minecraft.iron_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Leggings Used"}, "json_string": "{\"text\":\"Iron Leggings Used\"}"}}, "b.spruceSlab": {"CriteriaName": "minecraft.broken:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Broken"}, "json_string": "{\"text\":\"Spruce Slab Broken\"}"}}, "p.smoothQuartz": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Picked Up"}, "json_string": "{\"text\":\"Smooth Quartz Picked Up\"}"}}, "b.chestMinecart": {"CriteriaName": "minecraft.broken:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Broken"}, "json_string": "{\"text\":\"Chest Minecart Broken\"}"}}, "q.polishedBlackstoneWall": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Wall Dropped\"}"}}, "k.giant": {"CriteriaName": "minecraft.killed:minecraft.giant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Giant Killed"}, "json_string": "{\"text\":\"Giant Killed\"}"}}, "u.crimsonRoots": {"CriteriaName": "minecraft.used:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Used"}, "json_string": "{\"text\":\"Crimson Roots Used\"}"}}, "u.wetSponge": {"CriteriaName": "minecraft.used:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Used"}, "json_string": "{\"text\":\"Wet Sponge Used\"}"}}, "c.blueCandle": {"CriteriaName": "minecraft.crafted:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Crafted"}, "json_string": "{\"text\":\"Blue Candle Crafted\"}"}}, "b.milkBucket": {"CriteriaName": "minecraft.broken:minecraft.milk_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Milk Bucket Broken"}, "json_string": "{\"text\":\"Milk Bucket Broken\"}"}}, "m.purpleCarpet": {"CriteriaName": "minecraft.mined:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Mined"}, "json_string": "{\"text\":\"Purple Carpet Mined\"}"}}, "u.emeraldBlock": {"CriteriaName": "minecraft.used:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Used"}, "json_string": "{\"text\":\"Emerald Block Used\"}"}}, "p.wheat": {"CriteriaName": "minecraft.picked_up:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Picked Up"}, "json_string": "{\"text\":\"Wheat Picked Up\"}"}}, "m.pottedRedMushroom": {"CriteriaName": "minecraft.mined:minecraft.potted_red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Red Mushroom Mined"}, "json_string": "{\"text\":\"Potted Red Mushroom Mined\"}"}}, "q.poppy": {"CriteriaName": "minecraft.dropped:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Dropped"}, "json_string": "{\"text\":\"Poppy Dropped\"}"}}, "d.glowSquid": {"CriteriaName": "minecraft.killed_by:minecraft.glow_squid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Glow Squid"}, "json_string": "{\"text\":\"Killed by Glow Squid\"}"}}, "tc.break_warped": {"CriteriaName": "minecraft.mined:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_warped"}, "json_string": "{\"text\":\"tc.break_warped\"}"}}, "c.netherrack": {"CriteriaName": "minecraft.crafted:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Crafted"}, "json_string": "{\"text\":\"Netherrack Crafted\"}"}}, "p.goldNugget": {"CriteriaName": "minecraft.picked_up:minecraft.gold_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Nugget Picked Up"}, "json_string": "{\"text\":\"Gold Nugget Picked Up\"}"}}, "p.pinkWool": {"CriteriaName": "minecraft.picked_up:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Picked Up"}, "json_string": "{\"text\":\"Pink Wool Picked Up\"}"}}, "m.polishedGraniteSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Mined"}, "json_string": "{\"text\":\"Polished Granite Slab Mined\"}"}}, "b.brownCandle": {"CriteriaName": "minecraft.broken:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Broken"}, "json_string": "{\"text\":\"Brown Candle Broken\"}"}}, "m.tnt": {"CriteriaName": "minecraft.mined:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Mined"}, "json_string": "{\"text\":\"Tnt Mined\"}"}}, "u.deepslateLapisOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Used"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Used\"}"}}, "u.mossyStoneBrickStairs": {"CriteriaName": "minecraft.used:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Used"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Used\"}"}}, "p.zombieHead": {"CriteriaName": "minecraft.picked_up:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Picked Up"}, "json_string": "{\"text\":\"Zombie Head Picked Up\"}"}}, "g.openBarrel": {"CriteriaName": "minecraft.custom:minecraft.open_barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Open Barrel"}, "json_string": "{\"text\":\"Open Barrel\"}"}}, "p.heartOfTheSea": {"CriteriaName": "minecraft.picked_up:minecraft.heart_of_the_sea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heart Of The Sea Picked Up"}, "json_string": "{\"text\":\"Heart Of The Sea Picked Up\"}"}}, "q.sweetBerries": {"CriteriaName": "minecraft.dropped:minecraft.sweet_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berries Dropped"}, "json_string": "{\"text\":\"Sweet Berries Dropped\"}"}}, "m.whiteBanner": {"CriteriaName": "minecraft.mined:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Mined"}, "json_string": "{\"text\":\"White Banner Mined\"}"}}, "d.evokerFangs": {"CriteriaName": "minecraft.killed_by:minecraft.evoker_fangs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Evoker Fangs"}, "json_string": "{\"text\":\"Killed by Evoker Fangs\"}"}}, "u.goldNugget": {"CriteriaName": "minecraft.used:minecraft.gold_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Nugget Used"}, "json_string": "{\"text\":\"Gold Nugget Used\"}"}}, "m.netherSprouts": {"CriteriaName": "minecraft.mined:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Mined"}, "json_string": "{\"text\":\"Nether Sprouts Mined\"}"}}, "b.purpurBlock": {"CriteriaName": "minecraft.broken:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Broken"}, "json_string": "{\"text\":\"Purpur Block Broken\"}"}}, "d.lightningBolt": {"CriteriaName": "minecraft.killed_by:minecraft.lightning_bolt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Lightning Bolt"}, "json_string": "{\"text\":\"Killed by Lightning Bolt\"}"}}, "u.gunpowder": {"CriteriaName": "minecraft.used:minecraft.gunpowder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gunpowder Used"}, "json_string": "{\"text\":\"Gunpowder Used\"}"}}, "m.lectern": {"CriteriaName": "minecraft.mined:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Mined"}, "json_string": "{\"text\":\"Lectern Mined\"}"}}, "p.pigSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.pig_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Pig Spawn Egg Picked Up\"}"}}, "p.magentaGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Magenta Glazed Terracotta Picked Up\"}"}}, "p.lightningRod": {"CriteriaName": "minecraft.picked_up:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Picked Up"}, "json_string": "{\"text\":\"Lightning Rod Picked Up\"}"}}, "m.dandelion": {"CriteriaName": "minecraft.mined:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Mined"}, "json_string": "{\"text\":\"Dandelion Mined\"}"}}, "u.ghastSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.ghast_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Spawn Egg Used"}, "json_string": "{\"text\":\"Ghast Spawn Egg Used\"}"}}, "c.axolotlSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.axolotl_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Spawn Egg Crafted"}, "json_string": "{\"text\":\"Axolotl Spawn Egg Crafted\"}"}}, "q.netheriteChestplate": {"CriteriaName": "minecraft.dropped:minecraft.netherite_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Chestplate Dropped"}, "json_string": "{\"text\":\"Netherite Chestplate Dropped\"}"}}, "b.strippedBirchWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Broken"}, "json_string": "{\"text\":\"Stripped Birch Wood Broken\"}"}}, "c.leather": {"CriteriaName": "minecraft.crafted:minecraft.leather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Crafted"}, "json_string": "{\"text\":\"Leather Crafted\"}"}}, "u.beeNest": {"CriteriaName": "minecraft.used:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Used"}, "json_string": "{\"text\":\"Bee Nest Used\"}"}}, "q.redTulip": {"CriteriaName": "minecraft.dropped:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Dropped"}, "json_string": "{\"text\":\"Red Tulip Dropped\"}"}}, "c.grindstone": {"CriteriaName": "minecraft.crafted:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Crafted"}, "json_string": "{\"text\":\"Grindstone Crafted\"}"}}, "c.skeletonHorseSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.skeleton_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Spawn Egg Crafted"}, "json_string": "{\"text\":\"Skeleton Horse Spawn Egg Crafted\"}"}}, "m.orangeBanner": {"CriteriaName": "minecraft.mined:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Mined"}, "json_string": "{\"text\":\"Orange Banner Mined\"}"}}, "c.stoneSword": {"CriteriaName": "minecraft.crafted:minecraft.stone_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Sword Crafted"}, "json_string": "{\"text\":\"Stone Sword Crafted\"}"}}, "b.diamondBoots": {"CriteriaName": "minecraft.broken:minecraft.diamond_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Boots Broken"}, "json_string": "{\"text\":\"Diamond Boots Broken\"}"}}, "u.leatherLeggings": {"CriteriaName": "minecraft.used:minecraft.leather_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Leggings Used"}, "json_string": "{\"text\":\"Leather Leggings Used\"}"}}, "c.lightGrayBanner": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Crafted"}, "json_string": "{\"text\":\"Light Gray Banner Crafted\"}"}}, "u.crossbow": {"CriteriaName": "minecraft.used:minecraft.crossbow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crossbow Used"}, "json_string": "{\"text\":\"Crossbow Used\"}"}}, "b.deadFireCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Broken"}, "json_string": "{\"text\":\"Dead Fire Coral Block Broken\"}"}}, "c.lightBlueCarpet": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Crafted"}, "json_string": "{\"text\":\"Light Blue Carpet Crafted\"}"}}, "c.jungleWood": {"CriteriaName": "minecraft.crafted:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Crafted"}, "json_string": "{\"text\":\"Jungle Wood Crafted\"}"}}, "p.endStone": {"CriteriaName": "minecraft.picked_up:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Picked Up"}, "json_string": "{\"text\":\"End Stone Picked Up\"}"}}, "u.prismarineWall": {"CriteriaName": "minecraft.used:minecraft.prismarine_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Wall Used"}, "json_string": "{\"text\":\"Prismarine Wall Used\"}"}}, "p.sugarCane": {"CriteriaName": "minecraft.picked_up:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Picked Up"}, "json_string": "{\"text\":\"Sugar Cane Picked Up\"}"}}, "q.caveSpiderSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.cave_spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Spawn Egg Dropped"}, "json_string": "{\"text\":\"Cave Spider Spawn Egg Dropped\"}"}}, "q.greenConcrete": {"CriteriaName": "minecraft.dropped:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Dropped"}, "json_string": "{\"text\":\"Green Concrete Dropped\"}"}}, "b.spruceLeaves": {"CriteriaName": "minecraft.broken:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Broken"}, "json_string": "{\"text\":\"Spruce Leaves Broken\"}"}}, "k.axolotl": {"CriteriaName": "minecraft.killed:minecraft.axolotl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Killed"}, "json_string": "{\"text\":\"Axolotl Killed\"}"}}, "p.stoneButton": {"CriteriaName": "minecraft.picked_up:minecraft.stone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Button Picked Up"}, "json_string": "{\"text\":\"Stone Button Picked Up\"}"}}, "c.silverfishSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.silverfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Spawn Egg Crafted"}, "json_string": "{\"text\":\"Silverfish Spawn Egg Crafted\"}"}}, "g.leaveGame": {"CriteriaName": "minecraft.custom:minecraft.leave_game", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leave Game"}, "json_string": "{\"text\":\"Leave Game\"}"}}, "c.blueIce": {"CriteriaName": "minecraft.crafted:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Crafted"}, "json_string": "{\"text\":\"Blue Ice Crafted\"}"}}, "u.purpleCandle": {"CriteriaName": "minecraft.used:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Used"}, "json_string": "{\"text\":\"Purple Candle Used\"}"}}, "c.stoneBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Crafted"}, "json_string": "{\"text\":\"Stone Brick Wall Crafted\"}"}}, "c.snowball": {"CriteriaName": "minecraft.crafted:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Crafted"}, "json_string": "{\"text\":\"Snowball Crafted\"}"}}, "m.warpedWallSign": {"CriteriaName": "minecraft.mined:minecraft.warped_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wall Sign Mined"}, "json_string": "{\"text\":\"Warped Wall Sign Mined\"}"}}, "color": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Color"}, "json_string": "{\"text\":\"Color\"}"}}, "c.whiteCarpet": {"CriteriaName": "minecraft.crafted:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Crafted"}, "json_string": "{\"text\":\"White Carpet Crafted\"}"}}, "u.endStoneBricks": {"CriteriaName": "minecraft.used:minecraft.end_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Bricks Used"}, "json_string": "{\"text\":\"End Stone Bricks Used\"}"}}, "p.kelp": {"CriteriaName": "minecraft.picked_up:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Picked Up"}, "json_string": "{\"text\":\"Kelp Picked Up\"}"}}, "c.redConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Crafted"}, "json_string": "{\"text\":\"Red Concrete Powder Crafted\"}"}}, "u.redNetherBrickWall": {"CriteriaName": "minecraft.used:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Used"}, "json_string": "{\"text\":\"Red Nether Brick Wall Used\"}"}}, "m.azalea": {"CriteriaName": "minecraft.mined:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Mined"}, "json_string": "{\"text\":\"Azalea Mined\"}"}}, "m.birchWallSign": {"CriteriaName": "minecraft.mined:minecraft.birch_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wall Sign Mined"}, "json_string": "{\"text\":\"Birch Wall Sign Mined\"}"}}, "p.orangeShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Picked Up"}, "json_string": "{\"text\":\"Orange Shulker Box Picked Up\"}"}}, "q.diamondChestplate": {"CriteriaName": "minecraft.dropped:minecraft.diamond_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Chestplate Dropped"}, "json_string": "{\"text\":\"Diamond Chestplate Dropped\"}"}}, "b.minecart": {"CriteriaName": "minecraft.broken:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Broken"}, "json_string": "{\"text\":\"Minecart Broken\"}"}}, "c.diamondOre": {"CriteriaName": "minecraft.crafted:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Crafted"}, "json_string": "{\"text\":\"Diamond Ore Crafted\"}"}}, "q.sandstoneWall": {"CriteriaName": "minecraft.dropped:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Dropped"}, "json_string": "{\"text\":\"Sandstone Wall Dropped\"}"}}, "p.diamond": {"CriteriaName": "minecraft.picked_up:minecraft.diamond", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Picked Up"}, "json_string": "{\"text\":\"Diamond Picked Up\"}"}}, "c.musicDiscPigstep": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_pigstep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Pigstep Crafted"}, "json_string": "{\"text\":\"Music Disc Pigstep Crafted\"}"}}, "q.redSandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Red Sandstone Slab Dropped\"}"}}, "q.vindicatorSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.vindicator_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Spawn Egg Dropped"}, "json_string": "{\"text\":\"Vindicator Spawn Egg Dropped\"}"}}, "q.whiteCarpet": {"CriteriaName": "minecraft.dropped:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Dropped"}, "json_string": "{\"text\":\"White Carpet Dropped\"}"}}, "b.barrier": {"CriteriaName": "minecraft.broken:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Broken"}, "json_string": "{\"text\":\"Barrier Broken\"}"}}, "d.stray": {"CriteriaName": "minecraft.killed_by:minecraft.stray", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Stray"}, "json_string": "{\"text\":\"Killed by Stray\"}"}}, "m.azureBluet": {"CriteriaName": "minecraft.mined:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Mined"}, "json_string": "{\"text\":\"Azure Bluet Mined\"}"}}, "u.purpleConcretePowder": {"CriteriaName": "minecraft.used:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Used"}, "json_string": "{\"text\":\"Purple Concrete Powder Used\"}"}}, "p.netherQuartzOre": {"CriteriaName": "minecraft.picked_up:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Picked Up"}, "json_string": "{\"text\":\"Nether Quartz Ore Picked Up\"}"}}, "p.strippedAcaciaLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Picked Up"}, "json_string": "{\"text\":\"Stripped Acacia Log Picked Up\"}"}}, "p.jungleFenceGate": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Picked Up"}, "json_string": "{\"text\":\"Jungle Fence Gate Picked Up\"}"}}, "b.weatheredCutCopper": {"CriteriaName": "minecraft.broken:minecraft.weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Broken"}, "json_string": "{\"text\":\"Weathered Cut Copper Broken\"}"}}, "c.deepslateGoldOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Gold Ore Crafted\"}"}}, "c.polishedBlackstoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Crafted\"}"}}, "q.zombieVillagerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.zombie_villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Spawn Egg Dropped"}, "json_string": "{\"text\":\"Zombie Villager Spawn Egg Dropped\"}"}}, "k.salmon": {"CriteriaName": "minecraft.killed:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Killed"}, "json_string": "{\"text\":\"Salmon Killed\"}"}}, "p.tallGrass": {"CriteriaName": "minecraft.picked_up:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Picked Up"}, "json_string": "{\"text\":\"Tall Grass Picked Up\"}"}}, "b.jungleLeaves": {"CriteriaName": "minecraft.broken:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Broken"}, "json_string": "{\"text\":\"Jungle Leaves Broken\"}"}}, "m.polishedDioriteSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Mined"}, "json_string": "{\"text\":\"Polished Diorite Slab Mined\"}"}}, "c.cobblestone": {"CriteriaName": "minecraft.crafted:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Crafted"}, "json_string": "{\"text\":\"Cobblestone Crafted\"}"}}, "c.limeGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Crafted\"}"}}, "u.cutSandstone": {"CriteriaName": "minecraft.used:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Used"}, "json_string": "{\"text\":\"Cut Sandstone Used\"}"}}, "b.petrifiedOakSlab": {"CriteriaName": "minecraft.broken:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Broken"}, "json_string": "{\"text\":\"Petrified Oak Slab Broken\"}"}}, "b.polishedDioriteSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Broken"}, "json_string": "{\"text\":\"Polished Diorite Slab Broken\"}"}}, "c.tntMinecart": {"CriteriaName": "minecraft.crafted:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Crafted"}, "json_string": "{\"text\":\"Tnt Minecart Crafted\"}"}}, "p.blackBed": {"CriteriaName": "minecraft.picked_up:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Picked Up"}, "json_string": "{\"text\":\"Black Bed Picked Up\"}"}}, "c.striderSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.strider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Strider Spawn Egg Crafted"}, "json_string": "{\"text\":\"Strider Spawn Egg Crafted\"}"}}, "u.mojangBannerPattern": {"CriteriaName": "minecraft.used:minecraft.mojang_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mojang Banner Pattern Used"}, "json_string": "{\"text\":\"Mojang Banner Pattern Used\"}"}}, "p.polishedDeepslateWall": {"CriteriaName": "minecraft.picked_up:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Picked Up"}, "json_string": "{\"text\":\"Polished Deepslate Wall Picked Up\"}"}}, "c.bundle": {"CriteriaName": "minecraft.crafted:minecraft.bundle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bundle Crafted"}, "json_string": "{\"text\":\"Bundle Crafted\"}"}}, "m.repeatingCommandBlock": {"CriteriaName": "minecraft.mined:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Mined"}, "json_string": "{\"text\":\"Repeating Command Block Mined\"}"}}, "p.brickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Picked Up"}, "json_string": "{\"text\":\"Brick Slab Picked Up\"}"}}, "b.prismarineBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Broken"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Broken\"}"}}, "g.mobKills": {"CriteriaName": "minecraft.custom:minecraft.mob_kills", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mob Kills"}, "json_string": "{\"text\":\"Mob Kills\"}"}}, "q.creeperHead": {"CriteriaName": "minecraft.dropped:minecraft.creeper_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Head Dropped"}, "json_string": "{\"text\":\"Creeper Head Dropped\"}"}}, "u.fern": {"CriteriaName": "minecraft.used:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Used"}, "json_string": "{\"text\":\"Fern Used\"}"}}, "q.largeAmethystBud": {"CriteriaName": "minecraft.dropped:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Dropped"}, "json_string": "{\"text\":\"Large Amethyst Bud Dropped\"}"}}, "p.copperBlock": {"CriteriaName": "minecraft.picked_up:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Picked Up"}, "json_string": "{\"text\":\"Copper Block Picked Up\"}"}}, "u.polishedBlackstoneButton": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Used"}, "json_string": "{\"text\":\"Polished Blackstone Button Used\"}"}}, "q.activatorRail": {"CriteriaName": "minecraft.dropped:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Dropped"}, "json_string": "{\"text\":\"Activator Rail Dropped\"}"}}, "m.crackedNetherBricks": {"CriteriaName": "minecraft.mined:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Mined"}, "json_string": "{\"text\":\"Cracked Nether Bricks Mined\"}"}}, "b.shroomlight": {"CriteriaName": "minecraft.broken:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Broken"}, "json_string": "{\"text\":\"Shroomlight Broken\"}"}}, "p.greenConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.green_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Green Concrete Powder Picked Up\"}"}}, "m.deadBrainCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.dead_brain_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Dead Brain Coral Wall Fan Mined\"}"}}, "b.strippedDarkOakWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Broken"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Broken\"}"}}, "p.ancientDebris": {"CriteriaName": "minecraft.picked_up:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Picked Up"}, "json_string": "{\"text\":\"Ancient Debris Picked Up\"}"}}, "b.cyanConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Broken"}, "json_string": "{\"text\":\"Cyan Concrete Powder Broken\"}"}}, "u.ghastTear": {"CriteriaName": "minecraft.used:minecraft.ghast_tear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Tear Used"}, "json_string": "{\"text\":\"Ghast Tear Used\"}"}}, "p.whiteConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Picked Up"}, "json_string": "{\"text\":\"White Concrete Powder Picked Up\"}"}}, "p.deadBubbleCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Picked Up"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Picked Up\"}"}}, "c.ironBlock": {"CriteriaName": "minecraft.crafted:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Crafted"}, "json_string": "{\"text\":\"Iron Block Crafted\"}"}}, "b.fireCoralBlock": {"CriteriaName": "minecraft.broken:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Broken"}, "json_string": "{\"text\":\"Fire Coral Block Broken\"}"}}, "c.graniteSlab": {"CriteriaName": "minecraft.crafted:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Crafted"}, "json_string": "{\"text\":\"Granite Slab Crafted\"}"}}, "q.sunflower": {"CriteriaName": "minecraft.dropped:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Dropped"}, "json_string": "{\"text\":\"Sunflower Dropped\"}"}}, "b.goldenCarrot": {"CriteriaName": "minecraft.broken:minecraft.golden_carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Carrot Broken"}, "json_string": "{\"text\":\"Golden Carrot Broken\"}"}}, "q.ironOre": {"CriteriaName": "minecraft.dropped:minecraft.iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ore Dropped"}, "json_string": "{\"text\":\"Iron Ore Dropped\"}"}}, "c.blueShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Crafted"}, "json_string": "{\"text\":\"Blue Shulker Box Crafted\"}"}}, "p.chiseledQuartzBlock": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Picked Up"}, "json_string": "{\"text\":\"Chiseled Quartz Block Picked Up\"}"}}, "b.jungleSapling": {"CriteriaName": "minecraft.broken:minecraft.jungle_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sapling Broken"}, "json_string": "{\"text\":\"Jungle Sapling Broken\"}"}}, "p.redWool": {"CriteriaName": "minecraft.picked_up:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Picked Up"}, "json_string": "{\"text\":\"Red Wool Picked Up\"}"}}, "q.acaciaSapling": {"CriteriaName": "minecraft.dropped:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Dropped"}, "json_string": "{\"text\":\"Acacia Sapling Dropped\"}"}}, "c.warpedPlanks": {"CriteriaName": "minecraft.crafted:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Crafted"}, "json_string": "{\"text\":\"Warped Planks Crafted\"}"}}, "b.diamondHorseArmor": {"CriteriaName": "minecraft.broken:minecraft.diamond_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Horse Armor Broken"}, "json_string": "{\"text\":\"Diamond Horse Armor Broken\"}"}}, "q.birchLeaves": {"CriteriaName": "minecraft.dropped:minecraft.birch_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Leaves Dropped"}, "json_string": "{\"text\":\"Birch Leaves Dropped\"}"}}, "q.salmonSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.salmon_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Spawn Egg Dropped"}, "json_string": "{\"text\":\"Salmon Spawn Egg Dropped\"}"}}, "m.greenGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Green Glazed Terracotta Mined\"}"}}, "p.strippedSpruceLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Picked Up"}, "json_string": "{\"text\":\"Stripped Spruce Log Picked Up\"}"}}, "d.tropicalFish": {"CriteriaName": "minecraft.killed_by:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Tropical Fish"}, "json_string": "{\"text\":\"Killed by Tropical Fish\"}"}}, "m.strippedWarpedStem": {"CriteriaName": "minecraft.mined:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Mined"}, "json_string": "{\"text\":\"Stripped Warped Stem Mined\"}"}}, "u.whiteBanner": {"CriteriaName": "minecraft.used:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Used"}, "json_string": "{\"text\":\"White Banner Used\"}"}}, "m.kelpPlant": {"CriteriaName": "minecraft.mined:minecraft.kelp_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Plant Mined"}, "json_string": "{\"text\":\"Kelp Plant Mined\"}"}}, "p.weatheredCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Picked Up\"}"}}, "u.podzol": {"CriteriaName": "minecraft.used:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Used"}, "json_string": "{\"text\":\"Podzol Used\"}"}}, "u.glowBerries": {"CriteriaName": "minecraft.used:minecraft.glow_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Berries Used"}, "json_string": "{\"text\":\"Glow Berries Used\"}"}}, "p.endermanSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.enderman_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Enderman Spawn Egg Picked Up\"}"}}, "p.warpedTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Picked Up"}, "json_string": "{\"text\":\"Warped Trapdoor Picked Up\"}"}}, "q.goldIngot": {"CriteriaName": "minecraft.dropped:minecraft.gold_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ingot Dropped"}, "json_string": "{\"text\":\"Gold Ingot Dropped\"}"}}, "d.vindicator": {"CriteriaName": "minecraft.killed_by:minecraft.vindicator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Vindicator"}, "json_string": "{\"text\":\"Killed by Vindicator\"}"}}, "u.limeBed": {"CriteriaName": "minecraft.used:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Used"}, "json_string": "{\"text\":\"Lime Bed Used\"}"}}, "m.glassPane": {"CriteriaName": "minecraft.mined:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Mined"}, "json_string": "{\"text\":\"Glass Pane Mined\"}"}}, "q.oakFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Dropped"}, "json_string": "{\"text\":\"Oak Fence Gate Dropped\"}"}}, "c.hangingRoots": {"CriteriaName": "minecraft.crafted:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Crafted"}, "json_string": "{\"text\":\"Hanging Roots Crafted\"}"}}, "m.redStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Red Stained Glass Pane Mined\"}"}}, "p.enchantedBook": {"CriteriaName": "minecraft.picked_up:minecraft.enchanted_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Book Picked Up"}, "json_string": "{\"text\":\"Enchanted Book Picked Up\"}"}}, "p.tippedArrow": {"CriteriaName": "minecraft.picked_up:minecraft.tipped_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tipped Arrow Picked Up"}, "json_string": "{\"text\":\"Tipped Arrow Picked Up\"}"}}, "p.phantomMembrane": {"CriteriaName": "minecraft.picked_up:minecraft.phantom_membrane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Membrane Picked Up"}, "json_string": "{\"text\":\"Phantom Membrane Picked Up\"}"}}, "q.shulkerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.shulker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Spawn Egg Dropped"}, "json_string": "{\"text\":\"Shulker Spawn Egg Dropped\"}"}}, "u.tripwireHook": {"CriteriaName": "minecraft.used:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Used"}, "json_string": "{\"text\":\"Tripwire Hook Used\"}"}}, "c.cactus": {"CriteriaName": "minecraft.crafted:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Crafted"}, "json_string": "{\"text\":\"Cactus Crafted\"}"}}, "c.woodenShovel": {"CriteriaName": "minecraft.crafted:minecraft.wooden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Shovel Crafted"}, "json_string": "{\"text\":\"Wooden Shovel Crafted\"}"}}, "q.cyanCandle": {"CriteriaName": "minecraft.dropped:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Dropped"}, "json_string": "{\"text\":\"Cyan Candle Dropped\"}"}}, "b.limeCandle": {"CriteriaName": "minecraft.broken:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Broken"}, "json_string": "{\"text\":\"Lime Candle Broken\"}"}}, "m.clay": {"CriteriaName": "minecraft.mined:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Mined"}, "json_string": "{\"text\":\"Clay Mined\"}"}}, "m.brainCoralFan": {"CriteriaName": "minecraft.mined:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Mined"}, "json_string": "{\"text\":\"Brain Coral Fan Mined\"}"}}, "u.globeBannerPattern": {"CriteriaName": "minecraft.used:minecraft.globe_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Globe Banner Pattern Used"}, "json_string": "{\"text\":\"Globe Banner Pattern Used\"}"}}, "m.yellowWallBanner": {"CriteriaName": "minecraft.mined:minecraft.yellow_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Wall Banner Mined"}, "json_string": "{\"text\":\"Yellow Wall Banner Mined\"}"}}, "u.llamaSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Llama Spawn Egg Used"}, "json_string": "{\"text\":\"Llama Spawn Egg Used\"}"}}, "m.powderSnow": {"CriteriaName": "minecraft.mined:minecraft.powder_snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Mined"}, "json_string": "{\"text\":\"Powder Snow Mined\"}"}}, "u.campfire": {"CriteriaName": "minecraft.used:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Used"}, "json_string": "{\"text\":\"Campfire Used\"}"}}, "u.silverfishSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.silverfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Spawn Egg Used"}, "json_string": "{\"text\":\"Silverfish Spawn Egg Used\"}"}}, "c.blackBed": {"CriteriaName": "minecraft.crafted:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Crafted"}, "json_string": "{\"text\":\"Black Bed Crafted\"}"}}, "u.vexSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.vex_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Spawn Egg Used"}, "json_string": "{\"text\":\"Vex Spawn Egg Used\"}"}}, "c.andesiteWall": {"CriteriaName": "minecraft.crafted:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Crafted"}, "json_string": "{\"text\":\"Andesite Wall Crafted\"}"}}, "u.lectern": {"CriteriaName": "minecraft.used:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Used"}, "json_string": "{\"text\":\"Lectern Used\"}"}}, "q.witherSkeletonSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.wither_skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Spawn Egg Dropped"}, "json_string": "{\"text\":\"Wither Skeleton Spawn Egg Dropped\"}"}}, "q.purpurSlab": {"CriteriaName": "minecraft.dropped:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Dropped"}, "json_string": "{\"text\":\"Purpur Slab Dropped\"}"}}, "b.cobbledDeepslateStairs": {"CriteriaName": "minecraft.broken:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Broken"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Broken\"}"}}, "u.quartzSlab": {"CriteriaName": "minecraft.used:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Used"}, "json_string": "{\"text\":\"Quartz Slab Used\"}"}}, "p.floweringAzaleaLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Picked Up"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Picked Up\"}"}}, "p.purpleShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Picked Up"}, "json_string": "{\"text\":\"Purple Shulker Box Picked Up\"}"}}, "q.bedrock": {"CriteriaName": "minecraft.dropped:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Dropped"}, "json_string": "{\"text\":\"Bedrock Dropped\"}"}}, "c.warpedTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.warped_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Trapdoor Crafted"}, "json_string": "{\"text\":\"Warped Trapdoor Crafted\"}"}}, "u.grayCandle": {"CriteriaName": "minecraft.used:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Used"}, "json_string": "{\"text\":\"Gray Candle Used\"}"}}, "p.goldenCarrot": {"CriteriaName": "minecraft.picked_up:minecraft.golden_carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Carrot Picked Up"}, "json_string": "{\"text\":\"Golden Carrot Picked Up\"}"}}, "b.greenBanner": {"CriteriaName": "minecraft.broken:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Broken"}, "json_string": "{\"text\":\"Green Banner Broken\"}"}}, "p.crimsonStairs": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Picked Up"}, "json_string": "{\"text\":\"Crimson Stairs Picked Up\"}"}}, "b.sandstone": {"CriteriaName": "minecraft.broken:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Broken"}, "json_string": "{\"text\":\"Sandstone Broken\"}"}}, "q.crimsonStairs": {"CriteriaName": "minecraft.dropped:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Dropped"}, "json_string": "{\"text\":\"Crimson Stairs Dropped\"}"}}, "u.powderSnowBucket": {"CriteriaName": "minecraft.used:minecraft.powder_snow_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Bucket Used"}, "json_string": "{\"text\":\"Powder Snow Bucket Used\"}"}}, "q.evokerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.evoker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Evoker Spawn Egg Dropped"}, "json_string": "{\"text\":\"Evoker Spawn Egg Dropped\"}"}}, "q.diamondHorseArmor": {"CriteriaName": "minecraft.dropped:minecraft.diamond_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Horse Armor Dropped"}, "json_string": "{\"text\":\"Diamond Horse Armor Dropped\"}"}}, "p.salmonSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.salmon_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Salmon Spawn Egg Picked Up\"}"}}, "p.birchFence": {"CriteriaName": "minecraft.picked_up:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Picked Up"}, "json_string": "{\"text\":\"Birch Fence Picked Up\"}"}}, "p.cutSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Picked Up"}, "json_string": "{\"text\":\"Cut Sandstone Picked Up\"}"}}, "u.kelp": {"CriteriaName": "minecraft.used:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Used"}, "json_string": "{\"text\":\"Kelp Used\"}"}}, "q.cyanBed": {"CriteriaName": "minecraft.dropped:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Dropped"}, "json_string": "{\"text\":\"Cyan Bed Dropped\"}"}}, "m.purpleCandle": {"CriteriaName": "minecraft.mined:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Mined"}, "json_string": "{\"text\":\"Purple Candle Mined\"}"}}, "cu.interactWithLectern": {"CriteriaName": "minecraft.custom:minecraft.interact_with_lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Lectern"}, "json_string": "{\"text\":\"Interact With Lectern\"}"}}, "p.gravel": {"CriteriaName": "minecraft.picked_up:minecraft.gravel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gravel Picked Up"}, "json_string": "{\"text\":\"Gravel Picked Up\"}"}}, "m.blackstoneWall": {"CriteriaName": "minecraft.mined:minecraft.blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Wall Mined"}, "json_string": "{\"text\":\"Blackstone Wall Mined\"}"}}, "p.polishedDiorite": {"CriteriaName": "minecraft.picked_up:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Picked Up"}, "json_string": "{\"text\":\"Polished Diorite Picked Up\"}"}}, "c.mossCarpet": {"CriteriaName": "minecraft.crafted:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Crafted"}, "json_string": "{\"text\":\"Moss Carpet Crafted\"}"}}, "b.brownCarpet": {"CriteriaName": "minecraft.broken:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Broken"}, "json_string": "{\"text\":\"Brown Carpet Broken\"}"}}, "m.mediumAmethystBud": {"CriteriaName": "minecraft.mined:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Mined"}, "json_string": "{\"text\":\"Medium Amethyst Bud Mined\"}"}}, "c.fishingRod": {"CriteriaName": "minecraft.crafted:minecraft.fishing_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Rod Crafted"}, "json_string": "{\"text\":\"Fishing Rod Crafted\"}"}}, "c.strippedDarkOakWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Crafted"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Crafted\"}"}}, "p.greenBanner": {"CriteriaName": "minecraft.picked_up:minecraft.green_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Banner Picked Up"}, "json_string": "{\"text\":\"Green Banner Picked Up\"}"}}, "b.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Broken\"}"}}, "u.lightGrayTerracotta": {"CriteriaName": "minecraft.used:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Used"}, "json_string": "{\"text\":\"Light Gray Terracotta Used\"}"}}, "u.strippedBirchWood": {"CriteriaName": "minecraft.used:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Used"}, "json_string": "{\"text\":\"Stripped Birch Wood Used\"}"}}, "b.cutSandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Broken"}, "json_string": "{\"text\":\"Cut Sandstone Slab Broken\"}"}}, "u.brownBanner": {"CriteriaName": "minecraft.used:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Used"}, "json_string": "{\"text\":\"Brown Banner Used\"}"}}, "q.acaciaLeaves": {"CriteriaName": "minecraft.dropped:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Dropped"}, "json_string": "{\"text\":\"Acacia Leaves Dropped\"}"}}, "c.whiteConcrete": {"CriteriaName": "minecraft.crafted:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Crafted"}, "json_string": "{\"text\":\"White Concrete Crafted\"}"}}, "m.pottedLilyOfTheValley": {"CriteriaName": "minecraft.mined:minecraft.potted_lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Lily Of The Valley Mined"}, "json_string": "{\"text\":\"Potted Lily Of The Valley Mined\"}"}}, "c.magentaWool": {"CriteriaName": "minecraft.crafted:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Crafted"}, "json_string": "{\"text\":\"Magenta Wool Crafted\"}"}}, "c.musicDiscFar": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_far", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Far Crafted"}, "json_string": "{\"text\":\"Music Disc Far Crafted\"}"}}, "q.pinkBed": {"CriteriaName": "minecraft.dropped:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Dropped"}, "json_string": "{\"text\":\"Pink Bed Dropped\"}"}}, "b.cutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Cut Copper Stairs Broken\"}"}}, "d.smallFireball": {"CriteriaName": "minecraft.killed_by:minecraft.small_fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Small Fireball"}, "json_string": "{\"text\":\"Killed by Small Fireball\"}"}}, "p.air": {"CriteriaName": "minecraft.picked_up:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Picked Up"}, "json_string": "{\"text\":\"Air Picked Up\"}"}}, "p.oxidizedCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Picked Up"}, "json_string": "{\"text\":\"Oxidized Cut Copper Picked Up\"}"}}, "p.diamondBlock": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Picked Up"}, "json_string": "{\"text\":\"Diamond Block Picked Up\"}"}}, "b.cod": {"CriteriaName": "minecraft.broken:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Broken"}, "json_string": "{\"text\":\"Cod Broken\"}"}}, "d.potion": {"CriteriaName": "minecraft.killed_by:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Potion"}, "json_string": "{\"text\":\"Killed by Potion\"}"}}, "u.purpleStainedGlass": {"CriteriaName": "minecraft.used:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Used"}, "json_string": "{\"text\":\"Purple Stained Glass Used\"}"}}, "b.lead": {"CriteriaName": "minecraft.broken:minecraft.lead", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lead Broken"}, "json_string": "{\"text\":\"Lead Broken\"}"}}, "b.waxedExposedCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Broken"}, "json_string": "{\"text\":\"Waxed Exposed Copper Broken\"}"}}, "c.lightGrayWool": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Crafted"}, "json_string": "{\"text\":\"Light Gray Wool Crafted\"}"}}, "b.hoglinSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.hoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin Spawn Egg Broken"}, "json_string": "{\"text\":\"Hoglin Spawn Egg Broken\"}"}}, "c.lightGrayBed": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Crafted"}, "json_string": "{\"text\":\"Light Gray Bed Crafted\"}"}}, "p.deepslateBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Picked Up"}, "json_string": "{\"text\":\"Deepslate Brick Slab Picked Up\"}"}}, "c.lightGrayConcrete": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Crafted"}, "json_string": "{\"text\":\"Light Gray Concrete Crafted\"}"}}, "q.brainCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Block Dropped"}, "json_string": "{\"text\":\"Brain Coral Block Dropped\"}"}}, "k.chicken": {"CriteriaName": "minecraft.killed:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Killed"}, "json_string": "{\"text\":\"Chicken Killed\"}"}}, "q.magentaStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.magenta_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Dropped"}, "json_string": "{\"text\":\"Magenta Stained Glass Dropped\"}"}}, "q.cutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Cut Copper Stairs Dropped\"}"}}, "c.redMushroom": {"CriteriaName": "minecraft.crafted:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Crafted"}, "json_string": "{\"text\":\"Red Mushroom Crafted\"}"}}, "u.cobblestoneSlab": {"CriteriaName": "minecraft.used:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Used"}, "json_string": "{\"text\":\"Cobblestone Slab Used\"}"}}, "u.warpedSign": {"CriteriaName": "minecraft.used:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Used"}, "json_string": "{\"text\":\"Warped Sign Used\"}"}}, "u.honeycomb": {"CriteriaName": "minecraft.used:minecraft.honeycomb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Used"}, "json_string": "{\"text\":\"Honeycomb Used\"}"}}, "u.redBanner": {"CriteriaName": "minecraft.used:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Used"}, "json_string": "{\"text\":\"Red Banner Used\"}"}}, "q.purpurPillar": {"CriteriaName": "minecraft.dropped:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Dropped"}, "json_string": "{\"text\":\"Purpur Pillar Dropped\"}"}}, "b.blackstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Slab Broken"}, "json_string": "{\"text\":\"Blackstone Slab Broken\"}"}}, "p.ironLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.iron_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Leggings Picked Up"}, "json_string": "{\"text\":\"Iron Leggings Picked Up\"}"}}, "q.nautilusShell": {"CriteriaName": "minecraft.dropped:minecraft.nautilus_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nautilus Shell Dropped"}, "json_string": "{\"text\":\"Nautilus Shell Dropped\"}"}}, "u.magmaBlock": {"CriteriaName": "minecraft.used:minecraft.magma_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Block Used"}, "json_string": "{\"text\":\"Magma Block Used\"}"}}, "q.lilyPad": {"CriteriaName": "minecraft.dropped:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Dropped"}, "json_string": "{\"text\":\"Lily Pad Dropped\"}"}}, "q.deepslateEmeraldOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Emerald Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Emerald Ore Dropped\"}"}}, "c.dioriteSlab": {"CriteriaName": "minecraft.crafted:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Crafted"}, "json_string": "{\"text\":\"Diorite Slab Crafted\"}"}}, "p.polishedDeepslate": {"CriteriaName": "minecraft.picked_up:minecraft.polished_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Picked Up"}, "json_string": "{\"text\":\"Polished Deepslate Picked Up\"}"}}, "b.tnt": {"CriteriaName": "minecraft.broken:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Broken"}, "json_string": "{\"text\":\"Tnt Broken\"}"}}, "p.deadTubeCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Picked Up"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Picked Up\"}"}}, "q.birchLog": {"CriteriaName": "minecraft.dropped:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Dropped"}, "json_string": "{\"text\":\"Birch Log Dropped\"}"}}, "m.strippedBirchLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Mined"}, "json_string": "{\"text\":\"Stripped Birch Log Mined\"}"}}, "q.zombifiedPiglinSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.zombified_piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Spawn Egg Dropped"}, "json_string": "{\"text\":\"Zombified Piglin Spawn Egg Dropped\"}"}}, "c.blueConcrete": {"CriteriaName": "minecraft.crafted:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Crafted"}, "json_string": "{\"text\":\"Blue Concrete Crafted\"}"}}, "m.blackShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Mined"}, "json_string": "{\"text\":\"Black Shulker Box Mined\"}"}}, "p.wetSponge": {"CriteriaName": "minecraft.picked_up:minecraft.wet_sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wet Sponge Picked Up"}, "json_string": "{\"text\":\"Wet Sponge Picked Up\"}"}}, "c.warpedButton": {"CriteriaName": "minecraft.crafted:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Crafted"}, "json_string": "{\"text\":\"Warped Button Crafted\"}"}}, "p.pandaSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.panda_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Panda Spawn Egg Picked Up\"}"}}, "m.infestedStone": {"CriteriaName": "minecraft.mined:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Mined"}, "json_string": "{\"text\":\"Infested Stone Mined\"}"}}, "q.conduit": {"CriteriaName": "minecraft.dropped:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Dropped"}, "json_string": "{\"text\":\"Conduit Dropped\"}"}}, "p.stonecutter": {"CriteriaName": "minecraft.picked_up:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Picked Up"}, "json_string": "{\"text\":\"Stonecutter Picked Up\"}"}}, "c.melon": {"CriteriaName": "minecraft.crafted:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Crafted"}, "json_string": "{\"text\":\"Melon Crafted\"}"}}, "b.brownShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Broken"}, "json_string": "{\"text\":\"Brown Shulker Box Broken\"}"}}, "m.netherGoldOre": {"CriteriaName": "minecraft.mined:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Mined"}, "json_string": "{\"text\":\"Nether Gold Ore Mined\"}"}}, "u.diamondHorseArmor": {"CriteriaName": "minecraft.used:minecraft.diamond_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Horse Armor Used"}, "json_string": "{\"text\":\"Diamond Horse Armor Used\"}"}}, "u.blueConcretePowder": {"CriteriaName": "minecraft.used:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Used"}, "json_string": "{\"text\":\"Blue Concrete Powder Used\"}"}}, "q.calcite": {"CriteriaName": "minecraft.dropped:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Dropped"}, "json_string": "{\"text\":\"Calcite Dropped\"}"}}, "c.zombieHorseSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.zombie_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Spawn Egg Crafted"}, "json_string": "{\"text\":\"Zombie Horse Spawn Egg Crafted\"}"}}, "p.netherWart": {"CriteriaName": "minecraft.picked_up:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Picked Up"}, "json_string": "{\"text\":\"Nether Wart Picked Up\"}"}}, "q.suspiciousStew": {"CriteriaName": "minecraft.dropped:minecraft.suspicious_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Suspicious Stew Dropped"}, "json_string": "{\"text\":\"Suspicious Stew Dropped\"}"}}, "q.pandaSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.panda_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Panda Spawn Egg Dropped"}, "json_string": "{\"text\":\"Panda Spawn Egg Dropped\"}"}}, "m.deadHornCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Mined"}, "json_string": "{\"text\":\"Dead Horn Coral Block Mined\"}"}}, "m.jungleLeaves": {"CriteriaName": "minecraft.mined:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Mined"}, "json_string": "{\"text\":\"Jungle Leaves Mined\"}"}}, "b.trappedChest": {"CriteriaName": "minecraft.broken:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Broken"}, "json_string": "{\"text\":\"Trapped Chest Broken\"}"}}, "u.comparator": {"CriteriaName": "minecraft.used:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Used"}, "json_string": "{\"text\":\"Comparator Used\"}"}}, "b.lingeringPotion": {"CriteriaName": "minecraft.broken:minecraft.lingering_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lingering Potion Broken"}, "json_string": "{\"text\":\"Lingering Potion Broken\"}"}}, "q.deadBrainCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Dropped"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Dropped\"}"}}, "u.furnaceMinecart": {"CriteriaName": "minecraft.used:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Used"}, "json_string": "{\"text\":\"Furnace Minecart Used\"}"}}, "c.netheriteChestplate": {"CriteriaName": "minecraft.crafted:minecraft.netherite_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Chestplate Crafted"}, "json_string": "{\"text\":\"Netherite Chestplate Crafted\"}"}}, "c.pointedDripstone": {"CriteriaName": "minecraft.crafted:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Crafted"}, "json_string": "{\"text\":\"Pointed Dripstone Crafted\"}"}}, "p.spruceSapling": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Picked Up"}, "json_string": "{\"text\":\"Spruce Sapling Picked Up\"}"}}, "p.pumpkin": {"CriteriaName": "minecraft.picked_up:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Picked Up"}, "json_string": "{\"text\":\"Pumpkin Picked Up\"}"}}, "m.warpedWartBlock": {"CriteriaName": "minecraft.mined:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Mined"}, "json_string": "{\"text\":\"Warped Wart Block Mined\"}"}}, "q.candle": {"CriteriaName": "minecraft.dropped:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Dropped"}, "json_string": "{\"text\":\"Candle Dropped\"}"}}, "b.acaciaPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Broken"}, "json_string": "{\"text\":\"Acacia Pressure Plate Broken\"}"}}, "b.blackConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Broken"}, "json_string": "{\"text\":\"Black Concrete Powder Broken\"}"}}, "m.chiseledQuartzBlock": {"CriteriaName": "minecraft.mined:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Mined"}, "json_string": "{\"text\":\"Chiseled Quartz Block Mined\"}"}}, "u.coal": {"CriteriaName": "minecraft.used:minecraft.coal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Used"}, "json_string": "{\"text\":\"Coal Used\"}"}}, "c.cobblestoneWall": {"CriteriaName": "minecraft.crafted:minecraft.cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Wall Crafted"}, "json_string": "{\"text\":\"Cobblestone Wall Crafted\"}"}}, "p.crimsonFungus": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Picked Up"}, "json_string": "{\"text\":\"Crimson Fungus Picked Up\"}"}}, "p.soulTorch": {"CriteriaName": "minecraft.picked_up:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Picked Up"}, "json_string": "{\"text\":\"Soul Torch Picked Up\"}"}}, "p.rabbitStew": {"CriteriaName": "minecraft.picked_up:minecraft.rabbit_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Stew Picked Up"}, "json_string": "{\"text\":\"Rabbit Stew Picked Up\"}"}}, "q.oakBoat": {"CriteriaName": "minecraft.dropped:minecraft.oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Boat Dropped"}, "json_string": "{\"text\":\"Oak Boat Dropped\"}"}}, "b.limeGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Broken\"}"}}, "c.smoothStone": {"CriteriaName": "minecraft.crafted:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Crafted"}, "json_string": "{\"text\":\"Smooth Stone Crafted\"}"}}, "m.oakButton": {"CriteriaName": "minecraft.mined:minecraft.oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Button Mined"}, "json_string": "{\"text\":\"Oak Button Mined\"}"}}, "u.spawner": {"CriteriaName": "minecraft.used:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Used"}, "json_string": "{\"text\":\"Spawner Used\"}"}}, "q.jackOLantern": {"CriteriaName": "minecraft.dropped:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Dropped"}, "json_string": "{\"text\":\"Jack O Lantern Dropped\"}"}}, "q.bundle": {"CriteriaName": "minecraft.dropped:minecraft.bundle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bundle Dropped"}, "json_string": "{\"text\":\"Bundle Dropped\"}"}}, "b.exposedCutCopperSlab": {"CriteriaName": "minecraft.broken:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Broken"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Broken\"}"}}, "c.campfire": {"CriteriaName": "minecraft.crafted:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Crafted"}, "json_string": "{\"text\":\"Campfire Crafted\"}"}}, "u.redStainedGlass": {"CriteriaName": "minecraft.used:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Used"}, "json_string": "{\"text\":\"Red Stained Glass Used\"}"}}, "q.pinkWool": {"CriteriaName": "minecraft.dropped:minecraft.pink_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Wool Dropped"}, "json_string": "{\"text\":\"Pink Wool Dropped\"}"}}, "p.lilyOfTheValley": {"CriteriaName": "minecraft.picked_up:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Picked Up"}, "json_string": "{\"text\":\"Lily Of The Valley Picked Up\"}"}}, "m.orangeConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Mined"}, "json_string": "{\"text\":\"Orange Concrete Powder Mined\"}"}}, "c.magentaBanner": {"CriteriaName": "minecraft.crafted:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Crafted"}, "json_string": "{\"text\":\"Magenta Banner Crafted\"}"}}, "c.flint": {"CriteriaName": "minecraft.crafted:minecraft.flint", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint Crafted"}, "json_string": "{\"text\":\"Flint Crafted\"}"}}, "c.goldenShovel": {"CriteriaName": "minecraft.crafted:minecraft.golden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Shovel Crafted"}, "json_string": "{\"text\":\"Golden Shovel Crafted\"}"}}, "q.purpleConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Dropped"}, "json_string": "{\"text\":\"Purple Concrete Powder Dropped\"}"}}, "b.musicDiscBlocks": {"CriteriaName": "minecraft.broken:minecraft.music_disc_blocks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Blocks Broken"}, "json_string": "{\"text\":\"Music Disc Blocks Broken\"}"}}, "m.waxedCutCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Mined"}, "json_string": "{\"text\":\"Waxed Cut Copper Mined\"}"}}, "p.glowItemFrame": {"CriteriaName": "minecraft.picked_up:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Picked Up"}, "json_string": "{\"text\":\"Glow Item Frame Picked Up\"}"}}, "c.infestedMossyStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Crafted"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Crafted\"}"}}, "p.woodenSword": {"CriteriaName": "minecraft.picked_up:minecraft.wooden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Sword Picked Up"}, "json_string": "{\"text\":\"Wooden Sword Picked Up\"}"}}, "u.brickStairs": {"CriteriaName": "minecraft.used:minecraft.brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Stairs Used"}, "json_string": "{\"text\":\"Brick Stairs Used\"}"}}, "q.lightGrayStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Light Gray Stained Glass Pane Dropped\"}"}}, "u.cutSandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.cut_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Slab Used"}, "json_string": "{\"text\":\"Cut Sandstone Slab Used\"}"}}, "b.skullBannerPattern": {"CriteriaName": "minecraft.broken:minecraft.skull_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skull Banner Pattern Broken"}, "json_string": "{\"text\":\"Skull Banner Pattern Broken\"}"}}, "q.lapisLazuli": {"CriteriaName": "minecraft.dropped:minecraft.lapis_lazuli", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Lazuli Dropped"}, "json_string": "{\"text\":\"Lapis Lazuli Dropped\"}"}}, "b.quartzBricks": {"CriteriaName": "minecraft.broken:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Broken"}, "json_string": "{\"text\":\"Quartz Bricks Broken\"}"}}, "b.netheriteScrap": {"CriteriaName": "minecraft.broken:minecraft.netherite_scrap", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Scrap Broken"}, "json_string": "{\"text\":\"Netherite Scrap Broken\"}"}}, "p.beeSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.bee_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Bee Spawn Egg Picked Up\"}"}}, "q.lingeringPotion": {"CriteriaName": "minecraft.dropped:minecraft.lingering_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lingering Potion Dropped"}, "json_string": "{\"text\":\"Lingering Potion Dropped\"}"}}, "q.redBanner": {"CriteriaName": "minecraft.dropped:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Dropped"}, "json_string": "{\"text\":\"Red Banner Dropped\"}"}}, "q.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Dropped\"}"}}, "b.smoothQuartz": {"CriteriaName": "minecraft.broken:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Broken"}, "json_string": "{\"text\":\"Smooth Quartz Broken\"}"}}, "k.caveSpider": {"CriteriaName": "minecraft.killed:minecraft.cave_spider", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Killed"}, "json_string": "{\"text\":\"Cave Spider Killed\"}"}}, "b.deepslateLapisOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Broken"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Broken\"}"}}, "b.ironHelmet": {"CriteriaName": "minecraft.broken:minecraft.iron_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Helmet Broken"}, "json_string": "{\"text\":\"Iron Helmet Broken\"}"}}, "p.coal": {"CriteriaName": "minecraft.picked_up:minecraft.coal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Picked Up"}, "json_string": "{\"text\":\"Coal Picked Up\"}"}}, "u.jukebox": {"CriteriaName": "minecraft.used:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Used"}, "json_string": "{\"text\":\"Jukebox Used\"}"}}, "q.whiteStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Dropped"}, "json_string": "{\"text\":\"White Stained Glass Dropped\"}"}}, "k.witherSkeleton": {"CriteriaName": "minecraft.killed:minecraft.wither_skeleton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Killed"}, "json_string": "{\"text\":\"Wither Skeleton Killed\"}"}}, "p.purpleCandle": {"CriteriaName": "minecraft.picked_up:minecraft.purple_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Candle Picked Up"}, "json_string": "{\"text\":\"Purple Candle Picked Up\"}"}}, "g.interactWithBeacon": {"CriteriaName": "minecraft.custom:minecraft.interact_with_beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Beacon"}, "json_string": "{\"text\":\"Interact with Beacon\"}"}}, "u.sculkSensor": {"CriteriaName": "minecraft.used:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Used"}, "json_string": "{\"text\":\"Sculk Sensor Used\"}"}}, "u.greenStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Used"}, "json_string": "{\"text\":\"Green Stained Glass Pane Used\"}"}}, "k.mule": {"CriteriaName": "minecraft.killed:minecraft.mule", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Killed"}, "json_string": "{\"text\":\"Mule Killed\"}"}}, "p.totemOfUndying": {"CriteriaName": "minecraft.picked_up:minecraft.totem_of_undying", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Totem Of Undying Picked Up"}, "json_string": "{\"text\":\"Totem Of Undying Picked Up\"}"}}, "b.crimsonRoots": {"CriteriaName": "minecraft.broken:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Broken"}, "json_string": "{\"text\":\"Crimson Roots Broken\"}"}}, "b.honeycombBlock": {"CriteriaName": "minecraft.broken:minecraft.honeycomb_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Block Broken"}, "json_string": "{\"text\":\"Honeycomb Block Broken\"}"}}, "u.magentaCandle": {"CriteriaName": "minecraft.used:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Used"}, "json_string": "{\"text\":\"Magenta Candle Used\"}"}}, "m.whiteShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.white_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Shulker Box Mined"}, "json_string": "{\"text\":\"White Shulker Box Mined\"}"}}, "q.soulSoil": {"CriteriaName": "minecraft.dropped:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Dropped"}, "json_string": "{\"text\":\"Soul Soil Dropped\"}"}}, "b.honeyBlock": {"CriteriaName": "minecraft.broken:minecraft.honey_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Block Broken"}, "json_string": "{\"text\":\"Honey Block Broken\"}"}}, "m.skeletonSkull": {"CriteriaName": "minecraft.mined:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Mined"}, "json_string": "{\"text\":\"Skeleton Skull Mined\"}"}}, "q.jungleSlab": {"CriteriaName": "minecraft.dropped:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Dropped"}, "json_string": "{\"text\":\"Jungle Slab Dropped\"}"}}, "q.spruceDoor": {"CriteriaName": "minecraft.dropped:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Dropped"}, "json_string": "{\"text\":\"Spruce Door Dropped\"}"}}, "c.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Crafted"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Crafted\"}"}}, "q.grayGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Dropped\"}"}}, "u.ironAxe": {"CriteriaName": "minecraft.used:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Axe Used"}, "json_string": "{\"text\":\"Iron Axe Used\"}"}}, "q.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Dropped\"}"}}, "m.blueTerracotta": {"CriteriaName": "minecraft.mined:minecraft.blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Terracotta Mined"}, "json_string": "{\"text\":\"Blue Terracotta Mined\"}"}}, "c.rawGold": {"CriteriaName": "minecraft.crafted:minecraft.raw_gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Crafted"}, "json_string": "{\"text\":\"Raw Gold Crafted\"}"}}, "tc.break_crimson": {"CriteriaName": "minecraft.mined:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_crimson"}, "json_string": "{\"text\":\"tc.break_crimson\"}"}}, "u.deepslateTileSlab": {"CriteriaName": "minecraft.used:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Used"}, "json_string": "{\"text\":\"Deepslate Tile Slab Used\"}"}}, "b.spruceDoor": {"CriteriaName": "minecraft.broken:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Broken"}, "json_string": "{\"text\":\"Spruce Door Broken\"}"}}, "u.prismarineBrickSlab": {"CriteriaName": "minecraft.used:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Used"}, "json_string": "{\"text\":\"Prismarine Brick Slab Used\"}"}}, "b.brickWall": {"CriteriaName": "minecraft.broken:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Broken"}, "json_string": "{\"text\":\"Brick Wall Broken\"}"}}, "m.prismarineSlab": {"CriteriaName": "minecraft.mined:minecraft.prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Slab Mined"}, "json_string": "{\"text\":\"Prismarine Slab Mined\"}"}}, "p.pinkCandle": {"CriteriaName": "minecraft.picked_up:minecraft.pink_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Candle Picked Up"}, "json_string": "{\"text\":\"Pink Candle Picked Up\"}"}}, "u.smoothSandstoneStairs": {"CriteriaName": "minecraft.used:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Used"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Used\"}"}}, "p.parrotSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.parrot_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Parrot Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Parrot Spawn Egg Picked Up\"}"}}, "m.blackConcrete": {"CriteriaName": "minecraft.mined:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Mined"}, "json_string": "{\"text\":\"Black Concrete Mined\"}"}}, "q.honeycomb": {"CriteriaName": "minecraft.dropped:minecraft.honeycomb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Dropped"}, "json_string": "{\"text\":\"Honeycomb Dropped\"}"}}, "b.tropicalFishSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.tropical_fish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Spawn Egg Broken"}, "json_string": "{\"text\":\"Tropical Fish Spawn Egg Broken\"}"}}, "m.acaciaDoor": {"CriteriaName": "minecraft.mined:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Mined"}, "json_string": "{\"text\":\"Acacia Door Mined\"}"}}, "m.fireCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Mined"}, "json_string": "{\"text\":\"Fire Coral Block Mined\"}"}}, "m.stonecutter": {"CriteriaName": "minecraft.mined:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Mined"}, "json_string": "{\"text\":\"Stonecutter Mined\"}"}}, "q.brownConcrete": {"CriteriaName": "minecraft.dropped:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Dropped"}, "json_string": "{\"text\":\"Brown Concrete Dropped\"}"}}, "b.beacon": {"CriteriaName": "minecraft.broken:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Broken"}, "json_string": "{\"text\":\"Beacon Broken\"}"}}, "b.enchantingTable": {"CriteriaName": "minecraft.broken:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Broken"}, "json_string": "{\"text\":\"Enchanting Table Broken\"}"}}, "b.trident": {"CriteriaName": "minecraft.broken:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Broken"}, "json_string": "{\"text\":\"Trident Broken\"}"}}, "c.netheriteBlock": {"CriteriaName": "minecraft.crafted:minecraft.netherite_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Block Crafted"}, "json_string": "{\"text\":\"Netherite Block Crafted\"}"}}, "m.brownMushroomBlock": {"CriteriaName": "minecraft.mined:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Mined"}, "json_string": "{\"text\":\"Brown Mushroom Block Mined\"}"}}, "q.junglePlanks": {"CriteriaName": "minecraft.dropped:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Dropped"}, "json_string": "{\"text\":\"Jungle Planks Dropped\"}"}}, "m.darkPrismarineSlab": {"CriteriaName": "minecraft.mined:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Mined"}, "json_string": "{\"text\":\"Dark Prismarine Slab Mined\"}"}}, "u.squidSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Spawn Egg Used"}, "json_string": "{\"text\":\"Squid Spawn Egg Used\"}"}}, "q.crimsonDoor": {"CriteriaName": "minecraft.dropped:minecraft.crimson_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Door Dropped"}, "json_string": "{\"text\":\"Crimson Door Dropped\"}"}}, "d.leashKnot": {"CriteriaName": "minecraft.killed_by:minecraft.leash_knot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Leash Knot"}, "json_string": "{\"text\":\"Killed by Leash Knot\"}"}}, "p.cyanStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Picked Up"}, "json_string": "{\"text\":\"Cyan Stained Glass Picked Up\"}"}}, "q.witchSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.witch_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Witch Spawn Egg Dropped"}, "json_string": "{\"text\":\"Witch Spawn Egg Dropped\"}"}}, "q.yellowTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Dropped"}, "json_string": "{\"text\":\"Yellow Terracotta Dropped\"}"}}, "c.cyanConcrete": {"CriteriaName": "minecraft.crafted:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Crafted"}, "json_string": "{\"text\":\"Cyan Concrete Crafted\"}"}}, "u.waxedCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.waxed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Waxed Cut Copper Stairs Used\"}"}}, "u.acaciaPlanks": {"CriteriaName": "minecraft.used:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Used"}, "json_string": "{\"text\":\"Acacia Planks Used\"}"}}, "q.grayShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Dropped"}, "json_string": "{\"text\":\"Gray Shulker Box Dropped\"}"}}, "d.guardian": {"CriteriaName": "minecraft.killed_by:minecraft.guardian", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Guardian"}, "json_string": "{\"text\":\"Killed by Guardian\"}"}}, "b.coarseDirt": {"CriteriaName": "minecraft.broken:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Broken"}, "json_string": "{\"text\":\"Coarse Dirt Broken\"}"}}, "c.warpedFungus": {"CriteriaName": "minecraft.crafted:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Crafted"}, "json_string": "{\"text\":\"Warped Fungus Crafted\"}"}}, "m.lapisOre": {"CriteriaName": "minecraft.mined:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Mined"}, "json_string": "{\"text\":\"Lapis Ore Mined\"}"}}, "m.deepslateIronOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Mined"}, "json_string": "{\"text\":\"Deepslate Iron Ore Mined\"}"}}, "c.trident": {"CriteriaName": "minecraft.crafted:minecraft.trident", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trident Crafted"}, "json_string": "{\"text\":\"Trident Crafted\"}"}}, "d.skeletonHorse": {"CriteriaName": "minecraft.killed_by:minecraft.skeleton_horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Skeleton Horse"}, "json_string": "{\"text\":\"Killed by Skeleton Horse\"}"}}, "u.strippedCrimsonStem": {"CriteriaName": "minecraft.used:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Used"}, "json_string": "{\"text\":\"Stripped Crimson Stem Used\"}"}}, "q.jungleButton": {"CriteriaName": "minecraft.dropped:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Dropped"}, "json_string": "{\"text\":\"Jungle Button Dropped\"}"}}, "m.lightGrayConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Mined"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Mined\"}"}}, "q.musicDiscWait": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_wait", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Wait Dropped"}, "json_string": "{\"text\":\"Music Disc Wait Dropped\"}"}}, "c.soulSand": {"CriteriaName": "minecraft.crafted:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Crafted"}, "json_string": "{\"text\":\"Soul Sand Crafted\"}"}}, "p.coalOre": {"CriteriaName": "minecraft.picked_up:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Picked Up"}, "json_string": "{\"text\":\"Coal Ore Picked Up\"}"}}, "q.cobbledDeepslateWall": {"CriteriaName": "minecraft.dropped:minecraft.cobbled_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Wall Dropped"}, "json_string": "{\"text\":\"Cobbled Deepslate Wall Dropped\"}"}}, "p.beetrootSoup": {"CriteriaName": "minecraft.picked_up:minecraft.beetroot_soup", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Soup Picked Up"}, "json_string": "{\"text\":\"Beetroot Soup Picked Up\"}"}}, "k.fishingBobber": {"CriteriaName": "minecraft.killed:minecraft.fishing_bobber", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Bobber Killed"}, "json_string": "{\"text\":\"Fishing Bobber Killed\"}"}}, "p.redGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Red Glazed Terracotta Picked Up\"}"}}, "b.lightBlueStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Broken"}, "json_string": "{\"text\":\"Light Blue Stained Glass Broken\"}"}}, "m.strippedOakWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Oak Wood Mined"}, "json_string": "{\"text\":\"Stripped Oak Wood Mined\"}"}}, "p.grayShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Picked Up"}, "json_string": "{\"text\":\"Gray Shulker Box Picked Up\"}"}}, "u.shulkerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.shulker_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Spawn Egg Used"}, "json_string": "{\"text\":\"Shulker Spawn Egg Used\"}"}}, "u.junglePressurePlate": {"CriteriaName": "minecraft.used:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Used"}, "json_string": "{\"text\":\"Jungle Pressure Plate Used\"}"}}, "c.purpleStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Crafted\"}"}}, "b.blackstone": {"CriteriaName": "minecraft.broken:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Broken"}, "json_string": "{\"text\":\"Blackstone Broken\"}"}}, "b.rabbitHide": {"CriteriaName": "minecraft.broken:minecraft.rabbit_hide", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Hide Broken"}, "json_string": "{\"text\":\"Rabbit Hide Broken\"}"}}, "d.slime": {"CriteriaName": "minecraft.killed_by:minecraft.slime", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Slime"}, "json_string": "{\"text\":\"Killed by Slime\"}"}}, "p.polishedDioriteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Picked Up"}, "json_string": "{\"text\":\"Polished Diorite Slab Picked Up\"}"}}, "u.limeBanner": {"CriteriaName": "minecraft.used:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Used"}, "json_string": "{\"text\":\"Lime Banner Used\"}"}}, "p.ironBlock": {"CriteriaName": "minecraft.picked_up:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Picked Up"}, "json_string": "{\"text\":\"Iron Block Picked Up\"}"}}, "b.powderSnowBucket": {"CriteriaName": "minecraft.broken:minecraft.powder_snow_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powder Snow Bucket Broken"}, "json_string": "{\"text\":\"Powder Snow Bucket Broken\"}"}}, "c.exposedCutCopper": {"CriteriaName": "minecraft.crafted:minecraft.exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Crafted"}, "json_string": "{\"text\":\"Exposed Cut Copper Crafted\"}"}}, "b.nautilusShell": {"CriteriaName": "minecraft.broken:minecraft.nautilus_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nautilus Shell Broken"}, "json_string": "{\"text\":\"Nautilus Shell Broken\"}"}}, "p.waxedExposedCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Exposed Copper Picked Up\"}"}}, "u.spruceStairs": {"CriteriaName": "minecraft.used:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Used"}, "json_string": "{\"text\":\"Spruce Stairs Used\"}"}}, "b.pigSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.pig_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pig Spawn Egg Broken"}, "json_string": "{\"text\":\"Pig Spawn Egg Broken\"}"}}, "c.prismarine": {"CriteriaName": "minecraft.crafted:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crafted"}, "json_string": "{\"text\":\"Prismarine Crafted\"}"}}, "u.goldenAxe": {"CriteriaName": "minecraft.used:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Axe Used"}, "json_string": "{\"text\":\"Golden Axe Used\"}"}}, "q.cyanConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Dropped"}, "json_string": "{\"text\":\"Cyan Concrete Powder Dropped\"}"}}, "b.weepingVines": {"CriteriaName": "minecraft.broken:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Broken"}, "json_string": "{\"text\":\"Weeping Vines Broken\"}"}}, "q.zombieHorseSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.zombie_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Horse Spawn Egg Dropped"}, "json_string": "{\"text\":\"Zombie Horse Spawn Egg Dropped\"}"}}, "q.limeStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.lime_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Lime Stained Glass Pane Dropped\"}"}}, "p.prismarineBricks": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Picked Up"}, "json_string": "{\"text\":\"Prismarine Bricks Picked Up\"}"}}, "p.acaciaStairs": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Picked Up"}, "json_string": "{\"text\":\"Acacia Stairs Picked Up\"}"}}, "c.exposedCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Crafted\"}"}}, "q.cactus": {"CriteriaName": "minecraft.dropped:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Dropped"}, "json_string": "{\"text\":\"Cactus Dropped\"}"}}, "u.grayCarpet": {"CriteriaName": "minecraft.used:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Used"}, "json_string": "{\"text\":\"Gray Carpet Used\"}"}}, "p.goldOre": {"CriteriaName": "minecraft.picked_up:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Picked Up"}, "json_string": "{\"text\":\"Gold Ore Picked Up\"}"}}, "m.seaLantern": {"CriteriaName": "minecraft.mined:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Mined"}, "json_string": "{\"text\":\"Sea Lantern Mined\"}"}}, "c.oakSlab": {"CriteriaName": "minecraft.crafted:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Crafted"}, "json_string": "{\"text\":\"Oak Slab Crafted\"}"}}, "b.redSandstoneSlab": {"CriteriaName": "minecraft.broken:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Broken"}, "json_string": "{\"text\":\"Red Sandstone Slab Broken\"}"}}, "p.limeWool": {"CriteriaName": "minecraft.picked_up:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Picked Up"}, "json_string": "{\"text\":\"Lime Wool Picked Up\"}"}}, "cu.killedByGoldTeam": {"CriteriaName": "killedByTeam.gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Gold Team"}, "json_string": "{\"text\":\"Killed by Gold Team\"}"}}, "u.darkOakPressurePlate": {"CriteriaName": "minecraft.used:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Used"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Used\"}"}}, "u.bamboo": {"CriteriaName": "minecraft.used:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Used"}, "json_string": "{\"text\":\"Bamboo Used\"}"}}, "u.darkOakPlanks": {"CriteriaName": "minecraft.used:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Used"}, "json_string": "{\"text\":\"Dark Oak Planks Used\"}"}}, "u.warpedNylium": {"CriteriaName": "minecraft.used:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Used"}, "json_string": "{\"text\":\"Warped Nylium Used\"}"}}, "c.blackWool": {"CriteriaName": "minecraft.crafted:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Crafted"}, "json_string": "{\"text\":\"Black Wool Crafted\"}"}}, "c.pinkBanner": {"CriteriaName": "minecraft.crafted:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Crafted"}, "json_string": "{\"text\":\"Pink Banner Crafted\"}"}}, "p.orangeBed": {"CriteriaName": "minecraft.picked_up:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Picked Up"}, "json_string": "{\"text\":\"Orange Bed Picked Up\"}"}}, "c.redSandstone": {"CriteriaName": "minecraft.crafted:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Crafted"}, "json_string": "{\"text\":\"Red Sandstone Crafted\"}"}}, "q.andesiteStairs": {"CriteriaName": "minecraft.dropped:minecraft.andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Stairs Dropped"}, "json_string": "{\"text\":\"Andesite Stairs Dropped\"}"}}, "p.cobbledDeepslate": {"CriteriaName": "minecraft.picked_up:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Picked Up"}, "json_string": "{\"text\":\"Cobbled Deepslate Picked Up\"}"}}, "q.diamondHoe": {"CriteriaName": "minecraft.dropped:minecraft.diamond_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Hoe Dropped"}, "json_string": "{\"text\":\"Diamond Hoe Dropped\"}"}}, "q.lightBlueBanner": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Dropped"}, "json_string": "{\"text\":\"Light Blue Banner Dropped\"}"}}, "c.tubeCoral": {"CriteriaName": "minecraft.crafted:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Crafted"}, "json_string": "{\"text\":\"Tube Coral Crafted\"}"}}, "u.blackBanner": {"CriteriaName": "minecraft.used:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Used"}, "json_string": "{\"text\":\"Black Banner Used\"}"}}, "p.rawIron": {"CriteriaName": "minecraft.picked_up:minecraft.raw_iron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Picked Up"}, "json_string": "{\"text\":\"Raw Iron Picked Up\"}"}}, "p.redNetherBricks": {"CriteriaName": "minecraft.picked_up:minecraft.red_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Bricks Picked Up"}, "json_string": "{\"text\":\"Red Nether Bricks Picked Up\"}"}}, "m.magentaCandle": {"CriteriaName": "minecraft.mined:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Mined"}, "json_string": "{\"text\":\"Magenta Candle Mined\"}"}}, "p.deadFireCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Picked Up"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Picked Up\"}"}}, "u.tnt": {"CriteriaName": "minecraft.used:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Used"}, "json_string": "{\"text\":\"Tnt Used\"}"}}, "u.darkOakButton": {"CriteriaName": "minecraft.used:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Used"}, "json_string": "{\"text\":\"Dark Oak Button Used\"}"}}, "u.jungleLeaves": {"CriteriaName": "minecraft.used:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Used"}, "json_string": "{\"text\":\"Jungle Leaves Used\"}"}}, "b.compass": {"CriteriaName": "minecraft.broken:minecraft.compass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Compass Broken"}, "json_string": "{\"text\":\"Compass Broken\"}"}}, "b.vindicatorSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.vindicator_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Spawn Egg Broken"}, "json_string": "{\"text\":\"Vindicator Spawn Egg Broken\"}"}}, "m.oakSlab": {"CriteriaName": "minecraft.mined:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Mined"}, "json_string": "{\"text\":\"Oak Slab Mined\"}"}}, "q.darkOakDoor": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Dropped"}, "json_string": "{\"text\":\"Dark Oak Door Dropped\"}"}}, "c.prismarineBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Crafted"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Crafted\"}"}}, "p.floweringAzalea": {"CriteriaName": "minecraft.picked_up:minecraft.flowering_azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Picked Up"}, "json_string": "{\"text\":\"Flowering Azalea Picked Up\"}"}}, "b.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Broken"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Broken\"}"}}, "m.smoothQuartz": {"CriteriaName": "minecraft.mined:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Mined"}, "json_string": "{\"text\":\"Smooth Quartz Mined\"}"}}, "b.grayDye": {"CriteriaName": "minecraft.broken:minecraft.gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Dye Broken"}, "json_string": "{\"text\":\"Gray Dye Broken\"}"}}, "b.whiteConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.white_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Powder Broken"}, "json_string": "{\"text\":\"White Concrete Powder Broken\"}"}}, "u.grayDye": {"CriteriaName": "minecraft.used:minecraft.gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Dye Used"}, "json_string": "{\"text\":\"Gray Dye Used\"}"}}, "m.cocoa": {"CriteriaName": "minecraft.mined:minecraft.cocoa", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Mined"}, "json_string": "{\"text\":\"Cocoa Mined\"}"}}, "c.loom": {"CriteriaName": "minecraft.crafted:minecraft.loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Loom Crafted"}, "json_string": "{\"text\":\"Loom Crafted\"}"}}, "q.goldenBoots": {"CriteriaName": "minecraft.dropped:minecraft.golden_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Boots Dropped"}, "json_string": "{\"text\":\"Golden Boots Dropped\"}"}}, "m.jungleSign": {"CriteriaName": "minecraft.mined:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Mined"}, "json_string": "{\"text\":\"Jungle Sign Mined\"}"}}, "c.birchTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Crafted"}, "json_string": "{\"text\":\"Birch Trapdoor Crafted\"}"}}, "q.fermentedSpiderEye": {"CriteriaName": "minecraft.dropped:minecraft.fermented_spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fermented Spider Eye Dropped"}, "json_string": "{\"text\":\"Fermented Spider Eye Dropped\"}"}}, "b.redCarpet": {"CriteriaName": "minecraft.broken:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Broken"}, "json_string": "{\"text\":\"Red Carpet Broken\"}"}}, "b.fermentedSpiderEye": {"CriteriaName": "minecraft.broken:minecraft.fermented_spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fermented Spider Eye Broken"}, "json_string": "{\"text\":\"Fermented Spider Eye Broken\"}"}}, "m.brownStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Mined"}, "json_string": "{\"text\":\"Brown Stained Glass Mined\"}"}}, "b.seaPickle": {"CriteriaName": "minecraft.broken:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Broken"}, "json_string": "{\"text\":\"Sea Pickle Broken\"}"}}, "u.cod": {"CriteriaName": "minecraft.used:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Used"}, "json_string": "{\"text\":\"Cod Used\"}"}}, "u.compass": {"CriteriaName": "minecraft.used:minecraft.compass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Compass Used"}, "json_string": "{\"text\":\"Compass Used\"}"}}, "u.blackBed": {"CriteriaName": "minecraft.used:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Used"}, "json_string": "{\"text\":\"Black Bed Used\"}"}}, "q.brainCoral": {"CriteriaName": "minecraft.dropped:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Dropped"}, "json_string": "{\"text\":\"Brain Coral Dropped\"}"}}, "u.bricks": {"CriteriaName": "minecraft.used:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Used"}, "json_string": "{\"text\":\"Bricks Used\"}"}}, "m.cornflower": {"CriteriaName": "minecraft.mined:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Mined"}, "json_string": "{\"text\":\"Cornflower Mined\"}"}}, "q.grayConcretePowder": {"CriteriaName": "minecraft.dropped:minecraft.gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Powder Dropped"}, "json_string": "{\"text\":\"Gray Concrete Powder Dropped\"}"}}, "d.shulker": {"CriteriaName": "minecraft.killed_by:minecraft.shulker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Shulker"}, "json_string": "{\"text\":\"Killed by Shulker\"}"}}, "q.chainmailLeggings": {"CriteriaName": "minecraft.dropped:minecraft.chainmail_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Leggings Dropped"}, "json_string": "{\"text\":\"Chainmail Leggings Dropped\"}"}}, "b.spawner": {"CriteriaName": "minecraft.broken:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Broken"}, "json_string": "{\"text\":\"Spawner Broken\"}"}}, "b.cyanGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.cyan_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Cyan Glazed Terracotta Broken\"}"}}, "m.pottedDandelion": {"CriteriaName": "minecraft.mined:minecraft.potted_dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Dandelion Mined"}, "json_string": "{\"text\":\"Potted Dandelion Mined\"}"}}, "b.peony": {"CriteriaName": "minecraft.broken:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Broken"}, "json_string": "{\"text\":\"Peony Broken\"}"}}, "p.warpedFungusOnAStick": {"CriteriaName": "minecraft.picked_up:minecraft.warped_fungus_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus On A Stick Picked Up"}, "json_string": "{\"text\":\"Warped Fungus On A Stick Picked Up\"}"}}, "q.polishedDioriteStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Dropped"}, "json_string": "{\"text\":\"Polished Diorite Stairs Dropped\"}"}}, "m.oakPlanks": {"CriteriaName": "minecraft.mined:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Mined"}, "json_string": "{\"text\":\"Oak Planks Mined\"}"}}, "q.warpedFence": {"CriteriaName": "minecraft.dropped:minecraft.warped_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fence Dropped"}, "json_string": "{\"text\":\"Warped Fence Dropped\"}"}}, "c.goldBlock": {"CriteriaName": "minecraft.crafted:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Crafted"}, "json_string": "{\"text\":\"Gold Block Crafted\"}"}}, "q.musicDiscChirp": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_chirp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Chirp Dropped"}, "json_string": "{\"text\":\"Music Disc Chirp Dropped\"}"}}, "u.barrel": {"CriteriaName": "minecraft.used:minecraft.barrel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrel Used"}, "json_string": "{\"text\":\"Barrel Used\"}"}}, "u.stoneBricks": {"CriteriaName": "minecraft.used:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Used"}, "json_string": "{\"text\":\"Stone Bricks Used\"}"}}, "m.cutSandstone": {"CriteriaName": "minecraft.mined:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Mined"}, "json_string": "{\"text\":\"Cut Sandstone Mined\"}"}}, "b.goatSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.goat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat Spawn Egg Broken"}, "json_string": "{\"text\":\"Goat Spawn Egg Broken\"}"}}, "b.sandstoneWall": {"CriteriaName": "minecraft.broken:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Broken"}, "json_string": "{\"text\":\"Sandstone Wall Broken\"}"}}, "u.daylightDetector": {"CriteriaName": "minecraft.used:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Used"}, "json_string": "{\"text\":\"Daylight Detector Used\"}"}}, "q.ironDoor": {"CriteriaName": "minecraft.dropped:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Dropped"}, "json_string": "{\"text\":\"Iron Door Dropped\"}"}}, "p.splashPotion": {"CriteriaName": "minecraft.picked_up:minecraft.splash_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Splash Potion Picked Up"}, "json_string": "{\"text\":\"Splash Potion Picked Up\"}"}}, "m.melon": {"CriteriaName": "minecraft.mined:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Mined"}, "json_string": "{\"text\":\"Melon Mined\"}"}}, "b.daylightDetector": {"CriteriaName": "minecraft.broken:minecraft.daylight_detector", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Daylight Detector Broken"}, "json_string": "{\"text\":\"Daylight Detector Broken\"}"}}, "c.ladder": {"CriteriaName": "minecraft.crafted:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Crafted"}, "json_string": "{\"text\":\"Ladder Crafted\"}"}}, "p.blueDye": {"CriteriaName": "minecraft.picked_up:minecraft.blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Dye Picked Up"}, "json_string": "{\"text\":\"Blue Dye Picked Up\"}"}}, "p.purpleCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.purple_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Carpet Picked Up"}, "json_string": "{\"text\":\"Purple Carpet Picked Up\"}"}}, "k.commandBlockMinecart": {"CriteriaName": "minecraft.killed:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Killed"}, "json_string": "{\"text\":\"Command Block Minecart Killed\"}"}}, "u.repeatingCommandBlock": {"CriteriaName": "minecraft.used:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Used"}, "json_string": "{\"text\":\"Repeating Command Block Used\"}"}}, "c.amethystBlock": {"CriteriaName": "minecraft.crafted:minecraft.amethyst_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Block Crafted"}, "json_string": "{\"text\":\"Amethyst Block Crafted\"}"}}, "m.whiteStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Mined"}, "json_string": "{\"text\":\"White Stained Glass Mined\"}"}}, "c.chorusFlower": {"CriteriaName": "minecraft.crafted:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Crafted"}, "json_string": "{\"text\":\"Chorus Flower Crafted\"}"}}, "b.whiteConcrete": {"CriteriaName": "minecraft.broken:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Broken"}, "json_string": "{\"text\":\"White Concrete Broken\"}"}}, "c.cyanTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Crafted"}, "json_string": "{\"text\":\"Cyan Terracotta Crafted\"}"}}, "p.waterBucket": {"CriteriaName": "minecraft.picked_up:minecraft.water_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Bucket Picked Up"}, "json_string": "{\"text\":\"Water Bucket Picked Up\"}"}}, "c.exposedCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Exposed Cut Copper Slab Crafted\"}"}}, "b.pinkConcrete": {"CriteriaName": "minecraft.broken:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Broken"}, "json_string": "{\"text\":\"Pink Concrete Broken\"}"}}, "p.cyanConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Cyan Concrete Powder Picked Up\"}"}}, "c.redNetherBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Crafted"}, "json_string": "{\"text\":\"Red Nether Brick Slab Crafted\"}"}}, "m.darkOakPlanks": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Planks Mined"}, "json_string": "{\"text\":\"Dark Oak Planks Mined\"}"}}, "b.polishedGraniteStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Broken"}, "json_string": "{\"text\":\"Polished Granite Stairs Broken\"}"}}, "q.netherBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Dropped"}, "json_string": "{\"text\":\"Nether Brick Wall Dropped\"}"}}, "b.wolfSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.wolf_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Spawn Egg Broken"}, "json_string": "{\"text\":\"Wolf Spawn Egg Broken\"}"}}, "b.greenConcrete": {"CriteriaName": "minecraft.broken:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Broken"}, "json_string": "{\"text\":\"Green Concrete Broken\"}"}}, "c.fireCharge": {"CriteriaName": "minecraft.crafted:minecraft.fire_charge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Charge Crafted"}, "json_string": "{\"text\":\"Fire Charge Crafted\"}"}}, "b.blackGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Black Glazed Terracotta Broken\"}"}}, "q.blackCandle": {"CriteriaName": "minecraft.dropped:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Dropped"}, "json_string": "{\"text\":\"Black Candle Dropped\"}"}}, "q.dolphinSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.dolphin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Spawn Egg Dropped"}, "json_string": "{\"text\":\"Dolphin Spawn Egg Dropped\"}"}}, "m.mossyStoneBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Mined"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Mined\"}"}}, "c.deepslateBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Crafted"}, "json_string": "{\"text\":\"Deepslate Brick Wall Crafted\"}"}}, "c.cutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Cut Copper Slab Crafted\"}"}}, "c.beetroot": {"CriteriaName": "minecraft.crafted:minecraft.beetroot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Crafted"}, "json_string": "{\"text\":\"Beetroot Crafted\"}"}}, "b.bucket": {"CriteriaName": "minecraft.broken:minecraft.bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bucket Broken"}, "json_string": "{\"text\":\"Bucket Broken\"}"}}, "d.ravager": {"CriteriaName": "minecraft.killed_by:minecraft.ravager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Ravager"}, "json_string": "{\"text\":\"Killed by Ravager\"}"}}, "u.spiderSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Spawn Egg Used"}, "json_string": "{\"text\":\"Spider Spawn Egg Used\"}"}}, "p.limeShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.lime_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Shulker Box Picked Up"}, "json_string": "{\"text\":\"Lime Shulker Box Picked Up\"}"}}, "c.endermiteSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.endermite_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Spawn Egg Crafted"}, "json_string": "{\"text\":\"Endermite Spawn Egg Crafted\"}"}}, "u.redSandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Slab Used"}, "json_string": "{\"text\":\"Red Sandstone Slab Used\"}"}}, "b.orangeDye": {"CriteriaName": "minecraft.broken:minecraft.orange_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Dye Broken"}, "json_string": "{\"text\":\"Orange Dye Broken\"}"}}, "q.guardianSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Guardian Spawn Egg Dropped"}, "json_string": "{\"text\":\"Guardian Spawn Egg Dropped\"}"}}, "b.snowball": {"CriteriaName": "minecraft.broken:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Broken"}, "json_string": "{\"text\":\"Snowball Broken\"}"}}, "p.lightBlueShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Picked Up"}, "json_string": "{\"text\":\"Light Blue Shulker Box Picked Up\"}"}}, "d.traderLlama": {"CriteriaName": "minecraft.killed_by:minecraft.trader_llama", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Trader Llama"}, "json_string": "{\"text\":\"Killed by Trader Llama\"}"}}, "c.warpedSlab": {"CriteriaName": "minecraft.crafted:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Crafted"}, "json_string": "{\"text\":\"Warped Slab Crafted\"}"}}, "m.trappedChest": {"CriteriaName": "minecraft.mined:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Mined"}, "json_string": "{\"text\":\"Trapped Chest Mined\"}"}}, "p.blackConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Black Concrete Powder Picked Up\"}"}}, "p.crossbow": {"CriteriaName": "minecraft.picked_up:minecraft.crossbow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crossbow Picked Up"}, "json_string": "{\"text\":\"Crossbow Picked Up\"}"}}, "u.stoneSlab": {"CriteriaName": "minecraft.used:minecraft.stone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Slab Used"}, "json_string": "{\"text\":\"Stone Slab Used\"}"}}, "p.pinkConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Picked Up"}, "json_string": "{\"text\":\"Pink Concrete Picked Up\"}"}}, "u.spectralArrow": {"CriteriaName": "minecraft.used:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Used"}, "json_string": "{\"text\":\"Spectral Arrow Used\"}"}}, "q.cyanConcrete": {"CriteriaName": "minecraft.dropped:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Dropped"}, "json_string": "{\"text\":\"Cyan Concrete Dropped\"}"}}, "q.endStone": {"CriteriaName": "minecraft.dropped:minecraft.end_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Dropped"}, "json_string": "{\"text\":\"End Stone Dropped\"}"}}, "m.deepslateDiamondOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Mined"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Mined\"}"}}, "c.grayBanner": {"CriteriaName": "minecraft.crafted:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Crafted"}, "json_string": "{\"text\":\"Gray Banner Crafted\"}"}}, "p.purpleBed": {"CriteriaName": "minecraft.picked_up:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Picked Up"}, "json_string": "{\"text\":\"Purple Bed Picked Up\"}"}}, "c.grayWool": {"CriteriaName": "minecraft.crafted:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Crafted"}, "json_string": "{\"text\":\"Gray Wool Crafted\"}"}}, "k.smallFireball": {"CriteriaName": "minecraft.killed:minecraft.small_fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Fireball Killed"}, "json_string": "{\"text\":\"Small Fireball Killed\"}"}}, "p.elderGuardianSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.elder_guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Elder Guardian Spawn Egg Picked Up\"}"}}, "b.observer": {"CriteriaName": "minecraft.broken:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Broken"}, "json_string": "{\"text\":\"Observer Broken\"}"}}, "c.brickSlab": {"CriteriaName": "minecraft.crafted:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Crafted"}, "json_string": "{\"text\":\"Brick Slab Crafted\"}"}}, "p.waxedCopperBlock": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Copper Block Picked Up"}, "json_string": "{\"text\":\"Waxed Copper Block Picked Up\"}"}}, "b.strippedJungleWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Wood Broken"}, "json_string": "{\"text\":\"Stripped Jungle Wood Broken\"}"}}, "u.magentaCarpet": {"CriteriaName": "minecraft.used:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Used"}, "json_string": "{\"text\":\"Magenta Carpet Used\"}"}}, "b.rawCopper": {"CriteriaName": "minecraft.broken:minecraft.raw_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Broken"}, "json_string": "{\"text\":\"Raw Copper Broken\"}"}}, "g.targetHit": {"CriteriaName": "minecraft.custom:minecraft.target_hit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Hits"}, "json_string": "{\"text\":\"Target Hits\"}"}}, "p.bigDripleaf": {"CriteriaName": "minecraft.picked_up:minecraft.big_dripleaf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Picked Up"}, "json_string": "{\"text\":\"Big Dripleaf Picked Up\"}"}}, "u.soulSand": {"CriteriaName": "minecraft.used:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Used"}, "json_string": "{\"text\":\"Soul Sand Used\"}"}}, "q.bell": {"CriteriaName": "minecraft.dropped:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Dropped"}, "json_string": "{\"text\":\"Bell Dropped\"}"}}, "b.cyanTerracotta": {"CriteriaName": "minecraft.broken:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Broken"}, "json_string": "{\"text\":\"Cyan Terracotta Broken\"}"}}, "b.ironLeggings": {"CriteriaName": "minecraft.broken:minecraft.iron_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Leggings Broken"}, "json_string": "{\"text\":\"Iron Leggings Broken\"}"}}, "u.jungleFence": {"CriteriaName": "minecraft.used:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Used"}, "json_string": "{\"text\":\"Jungle Fence Used\"}"}}, "u.warpedRoots": {"CriteriaName": "minecraft.used:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Used"}, "json_string": "{\"text\":\"Warped Roots Used\"}"}}, "q.enchantedBook": {"CriteriaName": "minecraft.dropped:minecraft.enchanted_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanted Book Dropped"}, "json_string": "{\"text\":\"Enchanted Book Dropped\"}"}}, "q.limeCandle": {"CriteriaName": "minecraft.dropped:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Dropped"}, "json_string": "{\"text\":\"Lime Candle Dropped\"}"}}, "q.stoneShovel": {"CriteriaName": "minecraft.dropped:minecraft.stone_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Shovel Dropped"}, "json_string": "{\"text\":\"Stone Shovel Dropped\"}"}}, "u.infestedStone": {"CriteriaName": "minecraft.used:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Used"}, "json_string": "{\"text\":\"Infested Stone Used\"}"}}, "m.pottedAzaleaBush": {"CriteriaName": "minecraft.mined:minecraft.potted_azalea_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Azalea Bush Mined"}, "json_string": "{\"text\":\"Potted Azalea Bush Mined\"}"}}, "b.redstoneLamp": {"CriteriaName": "minecraft.broken:minecraft.redstone_lamp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Lamp Broken"}, "json_string": "{\"text\":\"Redstone Lamp Broken\"}"}}, "c.quartzBlock": {"CriteriaName": "minecraft.crafted:minecraft.quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Block Crafted"}, "json_string": "{\"text\":\"Quartz Block Crafted\"}"}}, "c.respawnAnchor": {"CriteriaName": "minecraft.crafted:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Crafted"}, "json_string": "{\"text\":\"Respawn Anchor Crafted\"}"}}, "u.purpleGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Used"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Used\"}"}}, "m.cartographyTable": {"CriteriaName": "minecraft.mined:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Mined"}, "json_string": "{\"text\":\"Cartography Table Mined\"}"}}, "u.redStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Used"}, "json_string": "{\"text\":\"Red Stained Glass Pane Used\"}"}}, "u.dragonBreath": {"CriteriaName": "minecraft.used:minecraft.dragon_breath", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dragon Breath Used"}, "json_string": "{\"text\":\"Dragon Breath Used\"}"}}, "u.diamondOre": {"CriteriaName": "minecraft.used:minecraft.diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Ore Used"}, "json_string": "{\"text\":\"Diamond Ore Used\"}"}}, "c.greenGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.green_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Green Glazed Terracotta Crafted\"}"}}, "u.endStoneBrickWall": {"CriteriaName": "minecraft.used:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Used"}, "json_string": "{\"text\":\"End Stone Brick Wall Used\"}"}}, "c.crackedNetherBricks": {"CriteriaName": "minecraft.crafted:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Crafted"}, "json_string": "{\"text\":\"Cracked Nether Bricks Crafted\"}"}}, "q.redstoneTorch": {"CriteriaName": "minecraft.dropped:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Dropped"}, "json_string": "{\"text\":\"Redstone Torch Dropped\"}"}}, "c.birchLog": {"CriteriaName": "minecraft.crafted:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Crafted"}, "json_string": "{\"text\":\"Birch Log Crafted\"}"}}, "d.zombifiedPiglin": {"CriteriaName": "minecraft.killed_by:minecraft.zombified_piglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Zombified Piglin"}, "json_string": "{\"text\":\"Killed by Zombified Piglin\"}"}}, "q.jungleSign": {"CriteriaName": "minecraft.dropped:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Dropped"}, "json_string": "{\"text\":\"Jungle Sign Dropped\"}"}}, "p.redConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.red_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Red Concrete Powder Picked Up\"}"}}, "b.lectern": {"CriteriaName": "minecraft.broken:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Broken"}, "json_string": "{\"text\":\"Lectern Broken\"}"}}, "u.strippedDarkOakLog": {"CriteriaName": "minecraft.used:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Used"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Used\"}"}}, "p.azaleaLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Picked Up"}, "json_string": "{\"text\":\"Azalea Leaves Picked Up\"}"}}, "c.cornflower": {"CriteriaName": "minecraft.crafted:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Crafted"}, "json_string": "{\"text\":\"Cornflower Crafted\"}"}}, "q.magentaStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Dropped\"}"}}, "d.villager": {"CriteriaName": "minecraft.killed_by:minecraft.villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Villager"}, "json_string": "{\"text\":\"Killed by Villager\"}"}}, "p.oakLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Picked Up"}, "json_string": "{\"text\":\"Oak Leaves Picked Up\"}"}}, "b.packedIce": {"CriteriaName": "minecraft.broken:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Broken"}, "json_string": "{\"text\":\"Packed Ice Broken\"}"}}, "u.sand": {"CriteriaName": "minecraft.used:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Used"}, "json_string": "{\"text\":\"Sand Used\"}"}}, "q.azureBluet": {"CriteriaName": "minecraft.dropped:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Dropped"}, "json_string": "{\"text\":\"Azure Bluet Dropped\"}"}}, "c.acaciaLog": {"CriteriaName": "minecraft.crafted:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Crafted"}, "json_string": "{\"text\":\"Acacia Log Crafted\"}"}}, "u.graniteStairs": {"CriteriaName": "minecraft.used:minecraft.granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Stairs Used"}, "json_string": "{\"text\":\"Granite Stairs Used\"}"}}, "k.experienceOrb": {"CriteriaName": "minecraft.killed:minecraft.experience_orb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Orb Killed"}, "json_string": "{\"text\":\"Experience Orb Killed\"}"}}, "q.tintedGlass": {"CriteriaName": "minecraft.dropped:minecraft.tinted_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tinted Glass Dropped"}, "json_string": "{\"text\":\"Tinted Glass Dropped\"}"}}, "u.stoneSword": {"CriteriaName": "minecraft.used:minecraft.stone_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Sword Used"}, "json_string": "{\"text\":\"Stone Sword Used\"}"}}, "u.birchSlab": {"CriteriaName": "minecraft.used:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Used"}, "json_string": "{\"text\":\"Birch Slab Used\"}"}}, "b.deepslateBrickWall": {"CriteriaName": "minecraft.broken:minecraft.deepslate_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Wall Broken"}, "json_string": "{\"text\":\"Deepslate Brick Wall Broken\"}"}}, "g.tradedWithVillager": {"CriteriaName": "minecraft.custom:minecraft.traded_with_villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Traded with Villager"}, "json_string": "{\"text\":\"Traded with Villager\"}"}}, "q.yellowBanner": {"CriteriaName": "minecraft.dropped:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Dropped"}, "json_string": "{\"text\":\"Yellow Banner Dropped\"}"}}, "c.greenWool": {"CriteriaName": "minecraft.crafted:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Crafted"}, "json_string": "{\"text\":\"Green Wool Crafted\"}"}}, "q.cornflower": {"CriteriaName": "minecraft.dropped:minecraft.cornflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cornflower Dropped"}, "json_string": "{\"text\":\"Cornflower Dropped\"}"}}, "u.dispenser": {"CriteriaName": "minecraft.used:minecraft.dispenser", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dispenser Used"}, "json_string": "{\"text\":\"Dispenser Used\"}"}}, "b.phantomMembrane": {"CriteriaName": "minecraft.broken:minecraft.phantom_membrane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Membrane Broken"}, "json_string": "{\"text\":\"Phantom Membrane Broken\"}"}}, "b.oakPlanks": {"CriteriaName": "minecraft.broken:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Broken"}, "json_string": "{\"text\":\"Oak Planks Broken\"}"}}, "g.interactWithBlastFurnace": {"CriteriaName": "minecraft.custom:minecraft.interact_with_blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Blast Furnace"}, "json_string": "{\"text\":\"Interact with Blast Furnace\"}"}}, "u.netherBrick": {"CriteriaName": "minecraft.used:minecraft.nether_brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Used"}, "json_string": "{\"text\":\"Nether Brick Used\"}"}}, "m.acaciaPlanks": {"CriteriaName": "minecraft.mined:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Mined"}, "json_string": "{\"text\":\"Acacia Planks Mined\"}"}}, "m.polishedAndesite": {"CriteriaName": "minecraft.mined:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Mined"}, "json_string": "{\"text\":\"Polished Andesite Mined\"}"}}, "u.cyanStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Used"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Used\"}"}}, "b.purpurPillar": {"CriteriaName": "minecraft.broken:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Broken"}, "json_string": "{\"text\":\"Purpur Pillar Broken\"}"}}, "g.damageDealt": {"CriteriaName": "minecraft.custom:minecraft.damage_dealt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Dealt"}, "json_string": "{\"text\":\"Damage Dealt\"}"}}, "p.pinkTulip": {"CriteriaName": "minecraft.picked_up:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Picked Up"}, "json_string": "{\"text\":\"Pink Tulip Picked Up\"}"}}, "k.player": {"CriteriaName": "minecraft.killed:minecraft.player", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Killed"}, "json_string": "{\"text\":\"Player Killed\"}"}}, "p.woodenPickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.wooden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Pickaxe Picked Up"}, "json_string": "{\"text\":\"Wooden Pickaxe Picked Up\"}"}}, "c.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Crafted\"}"}}, "p.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Picked Up\"}"}}, "p.deepslateTileStairs": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Picked Up"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Picked Up\"}"}}, "b.chorusPlant": {"CriteriaName": "minecraft.broken:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Broken"}, "json_string": "{\"text\":\"Chorus Plant Broken\"}"}}, "b.lightBlueCandle": {"CriteriaName": "minecraft.broken:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Broken"}, "json_string": "{\"text\":\"Light Blue Candle Broken\"}"}}, "p.lightBlueDye": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Dye Picked Up"}, "json_string": "{\"text\":\"Light Blue Dye Picked Up\"}"}}, "g.inspectHopper": {"CriteriaName": "minecraft.custom:minecraft.inspect_hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Inspect Hopper"}, "json_string": "{\"text\":\"Inspect Hopper\"}"}}, "c.crimsonStem": {"CriteriaName": "minecraft.crafted:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Crafted"}, "json_string": "{\"text\":\"Crimson Stem Crafted\"}"}}, "q.largeFern": {"CriteriaName": "minecraft.dropped:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Dropped"}, "json_string": "{\"text\":\"Large Fern Dropped\"}"}}, "p.grayGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Picked Up\"}"}}, "m.birchLog": {"CriteriaName": "minecraft.mined:minecraft.birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Log Mined"}, "json_string": "{\"text\":\"Birch Log Mined\"}"}}, "p.poppy": {"CriteriaName": "minecraft.picked_up:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Picked Up"}, "json_string": "{\"text\":\"Poppy Picked Up\"}"}}, "u.yellowBed": {"CriteriaName": "minecraft.used:minecraft.yellow_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Bed Used"}, "json_string": "{\"text\":\"Yellow Bed Used\"}"}}, "m.rawCopperBlock": {"CriteriaName": "minecraft.mined:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Mined"}, "json_string": "{\"text\":\"Raw Copper Block Mined\"}"}}, "p.chestMinecart": {"CriteriaName": "minecraft.picked_up:minecraft.chest_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Minecart Picked Up"}, "json_string": "{\"text\":\"Chest Minecart Picked Up\"}"}}, "p.bucket": {"CriteriaName": "minecraft.picked_up:minecraft.bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bucket Picked Up"}, "json_string": "{\"text\":\"Bucket Picked Up\"}"}}, "q.woodenShovel": {"CriteriaName": "minecraft.dropped:minecraft.wooden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Shovel Dropped"}, "json_string": "{\"text\":\"Wooden Shovel Dropped\"}"}}, "u.brownGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Used"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Used\"}"}}, "q.enderChest": {"CriteriaName": "minecraft.dropped:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Dropped"}, "json_string": "{\"text\":\"Ender Chest Dropped\"}"}}, "q.stoneHoe": {"CriteriaName": "minecraft.dropped:minecraft.stone_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Hoe Dropped"}, "json_string": "{\"text\":\"Stone Hoe Dropped\"}"}}, "b.whiteGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Broken"}, "json_string": "{\"text\":\"White Glazed Terracotta Broken\"}"}}, "k.wolf": {"CriteriaName": "minecraft.killed:minecraft.wolf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Killed"}, "json_string": "{\"text\":\"Wolf Killed\"}"}}, "p.graniteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Picked Up"}, "json_string": "{\"text\":\"Granite Slab Picked Up\"}"}}, "c.suspiciousStew": {"CriteriaName": "minecraft.crafted:minecraft.suspicious_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Suspicious Stew Crafted"}, "json_string": "{\"text\":\"Suspicious Stew Crafted\"}"}}, "q.pointedDripstone": {"CriteriaName": "minecraft.dropped:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Dropped"}, "json_string": "{\"text\":\"Pointed Dripstone Dropped\"}"}}, "b.oakSign": {"CriteriaName": "minecraft.broken:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Broken"}, "json_string": "{\"text\":\"Oak Sign Broken\"}"}}, "p.pinkBanner": {"CriteriaName": "minecraft.picked_up:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Picked Up"}, "json_string": "{\"text\":\"Pink Banner Picked Up\"}"}}, "b.heartOfTheSea": {"CriteriaName": "minecraft.broken:minecraft.heart_of_the_sea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heart Of The Sea Broken"}, "json_string": "{\"text\":\"Heart Of The Sea Broken\"}"}}, "p.barrier": {"CriteriaName": "minecraft.picked_up:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Picked Up"}, "json_string": "{\"text\":\"Barrier Picked Up\"}"}}, "p.magentaConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Concrete Picked Up"}, "json_string": "{\"text\":\"Magenta Concrete Picked Up\"}"}}, "u.codBucket": {"CriteriaName": "minecraft.used:minecraft.cod_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Bucket Used"}, "json_string": "{\"text\":\"Cod Bucket Used\"}"}}, "u.phantomSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.phantom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Spawn Egg Used"}, "json_string": "{\"text\":\"Phantom Spawn Egg Used\"}"}}, "u.drownedSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.drowned_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Spawn Egg Used"}, "json_string": "{\"text\":\"Drowned Spawn Egg Used\"}"}}, "d.llama": {"CriteriaName": "minecraft.killed_by:minecraft.llama", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Llama"}, "json_string": "{\"text\":\"Killed by Llama\"}"}}, "m.craftingTable": {"CriteriaName": "minecraft.mined:minecraft.crafting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crafting Table Mined"}, "json_string": "{\"text\":\"Crafting Table Mined\"}"}}, "c.witherSkeletonSkull": {"CriteriaName": "minecraft.crafted:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Crafted"}, "json_string": "{\"text\":\"Wither Skeleton Skull Crafted\"}"}}, "q.limeBed": {"CriteriaName": "minecraft.dropped:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Dropped"}, "json_string": "{\"text\":\"Lime Bed Dropped\"}"}}, "c.waxedCutCopperSlab": {"CriteriaName": "minecraft.crafted:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Crafted"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Crafted\"}"}}, "u.prismarineCrystals": {"CriteriaName": "minecraft.used:minecraft.prismarine_crystals", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crystals Used"}, "json_string": "{\"text\":\"Prismarine Crystals Used\"}"}}, "m.blackstone": {"CriteriaName": "minecraft.mined:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Mined"}, "json_string": "{\"text\":\"Blackstone Mined\"}"}}, "u.acaciaSlab": {"CriteriaName": "minecraft.used:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Used"}, "json_string": "{\"text\":\"Acacia Slab Used\"}"}}, "p.acaciaSign": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Picked Up"}, "json_string": "{\"text\":\"Acacia Sign Picked Up\"}"}}, "c.acaciaStairs": {"CriteriaName": "minecraft.crafted:minecraft.acacia_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Stairs Crafted"}, "json_string": "{\"text\":\"Acacia Stairs Crafted\"}"}}, "c.pinkConcrete": {"CriteriaName": "minecraft.crafted:minecraft.pink_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Crafted"}, "json_string": "{\"text\":\"Pink Concrete Crafted\"}"}}, "b.blueShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Broken"}, "json_string": "{\"text\":\"Blue Shulker Box Broken\"}"}}, "p.slimeBlock": {"CriteriaName": "minecraft.picked_up:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Picked Up"}, "json_string": "{\"text\":\"Slime Block Picked Up\"}"}}, "p.oakPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Oak Pressure Plate Picked Up\"}"}}, "m.wallTorch": {"CriteriaName": "minecraft.mined:minecraft.wall_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wall Torch Mined"}, "json_string": "{\"text\":\"Wall Torch Mined\"}"}}, "p.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Picked Up\"}"}}, "u.deadTubeCoralBlock": {"CriteriaName": "minecraft.used:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Used"}, "json_string": "{\"text\":\"Dead Tube Coral Block Used\"}"}}, "c.jackOLantern": {"CriteriaName": "minecraft.crafted:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Crafted"}, "json_string": "{\"text\":\"Jack O Lantern Crafted\"}"}}, "q.lightBlueWool": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Dropped"}, "json_string": "{\"text\":\"Light Blue Wool Dropped\"}"}}, "p.beeNest": {"CriteriaName": "minecraft.picked_up:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Picked Up"}, "json_string": "{\"text\":\"Bee Nest Picked Up\"}"}}, "m.brownWool": {"CriteriaName": "minecraft.mined:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Mined"}, "json_string": "{\"text\":\"Brown Wool Mined\"}"}}, "u.rawIron": {"CriteriaName": "minecraft.used:minecraft.raw_iron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Used"}, "json_string": "{\"text\":\"Raw Iron Used\"}"}}, "q.crimsonNylium": {"CriteriaName": "minecraft.dropped:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Dropped"}, "json_string": "{\"text\":\"Crimson Nylium Dropped\"}"}}, "b.quartzSlab": {"CriteriaName": "minecraft.broken:minecraft.quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Slab Broken"}, "json_string": "{\"text\":\"Quartz Slab Broken\"}"}}, "c.lilyOfTheValley": {"CriteriaName": "minecraft.crafted:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Crafted"}, "json_string": "{\"text\":\"Lily Of The Valley Crafted\"}"}}, "u.diamondLeggings": {"CriteriaName": "minecraft.used:minecraft.diamond_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Leggings Used"}, "json_string": "{\"text\":\"Diamond Leggings Used\"}"}}, "u.batSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.bat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Spawn Egg Used"}, "json_string": "{\"text\":\"Bat Spawn Egg Used\"}"}}, "p.woodenAxe": {"CriteriaName": "minecraft.picked_up:minecraft.wooden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Axe Picked Up"}, "json_string": "{\"text\":\"Wooden Axe Picked Up\"}"}}, "d.wolf": {"CriteriaName": "minecraft.killed_by:minecraft.wolf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Wolf"}, "json_string": "{\"text\":\"Killed by Wolf\"}"}}, "p.soulSoil": {"CriteriaName": "minecraft.picked_up:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Picked Up"}, "json_string": "{\"text\":\"Soul Soil Picked Up\"}"}}, "b.bundle": {"CriteriaName": "minecraft.broken:minecraft.bundle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bundle Broken"}, "json_string": "{\"text\":\"Bundle Broken\"}"}}, "c.blueStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Crafted"}, "json_string": "{\"text\":\"Blue Stained Glass Crafted\"}"}}, "b.floweringAzaleaLeaves": {"CriteriaName": "minecraft.broken:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Broken"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Broken\"}"}}, "q.villagerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Spawn Egg Dropped"}, "json_string": "{\"text\":\"Villager Spawn Egg Dropped\"}"}}, "p.chainmailBoots": {"CriteriaName": "minecraft.picked_up:minecraft.chainmail_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Boots Picked Up"}, "json_string": "{\"text\":\"Chainmail Boots Picked Up\"}"}}, "p.anvil": {"CriteriaName": "minecraft.picked_up:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Picked Up"}, "json_string": "{\"text\":\"Anvil Picked Up\"}"}}, "p.orangeConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Picked Up"}, "json_string": "{\"text\":\"Orange Concrete Picked Up\"}"}}, "u.redMushroomBlock": {"CriteriaName": "minecraft.used:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Used"}, "json_string": "{\"text\":\"Red Mushroom Block Used\"}"}}, "q.driedKelpBlock": {"CriteriaName": "minecraft.dropped:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Dropped"}, "json_string": "{\"text\":\"Dried Kelp Block Dropped\"}"}}, "m.polishedBlackstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Mined"}, "json_string": "{\"text\":\"Polished Blackstone Slab Mined\"}"}}, "p.painting": {"CriteriaName": "minecraft.picked_up:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Painting Picked Up"}, "json_string": "{\"text\":\"Painting Picked Up\"}"}}, "c.chainmailChestplate": {"CriteriaName": "minecraft.crafted:minecraft.chainmail_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Chestplate Crafted"}, "json_string": "{\"text\":\"Chainmail Chestplate Crafted\"}"}}, "c.warpedStem": {"CriteriaName": "minecraft.crafted:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Crafted"}, "json_string": "{\"text\":\"Warped Stem Crafted\"}"}}, "p.redstoneBlock": {"CriteriaName": "minecraft.picked_up:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Picked Up"}, "json_string": "{\"text\":\"Redstone Block Picked Up\"}"}}, "u.beetrootSoup": {"CriteriaName": "minecraft.used:minecraft.beetroot_soup", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Soup Used"}, "json_string": "{\"text\":\"Beetroot Soup Used\"}"}}, "duraPing.dummy": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "duraPing.dummy"}, "json_string": "{\"text\":\"duraPing.dummy\"}"}}, "c.rawIron": {"CriteriaName": "minecraft.crafted:minecraft.raw_iron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Crafted"}, "json_string": "{\"text\":\"Raw Iron Crafted\"}"}}, "q.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Dropped\"}"}}, "c.orangeCandle": {"CriteriaName": "minecraft.crafted:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Crafted"}, "json_string": "{\"text\":\"Orange Candle Crafted\"}"}}, "p.blueStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Picked Up"}, "json_string": "{\"text\":\"Blue Stained Glass Picked Up\"}"}}, "p.waxedCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Waxed Cut Copper Slab Picked Up\"}"}}, "b.slimeBlock": {"CriteriaName": "minecraft.broken:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Broken"}, "json_string": "{\"text\":\"Slime Block Broken\"}"}}, "q.dandelion": {"CriteriaName": "minecraft.dropped:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Dropped"}, "json_string": "{\"text\":\"Dandelion Dropped\"}"}}, "q.crimsonHyphae": {"CriteriaName": "minecraft.dropped:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Dropped"}, "json_string": "{\"text\":\"Crimson Hyphae Dropped\"}"}}, "u.musicDiscFar": {"CriteriaName": "minecraft.used:minecraft.music_disc_far", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Far Used"}, "json_string": "{\"text\":\"Music Disc Far Used\"}"}}, "b.pinkBanner": {"CriteriaName": "minecraft.broken:minecraft.pink_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Banner Broken"}, "json_string": "{\"text\":\"Pink Banner Broken\"}"}}, "u.bundle": {"CriteriaName": "minecraft.used:minecraft.bundle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bundle Used"}, "json_string": "{\"text\":\"Bundle Used\"}"}}, "m.sunflower": {"CriteriaName": "minecraft.mined:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Mined"}, "json_string": "{\"text\":\"Sunflower Mined\"}"}}, "c.acaciaSign": {"CriteriaName": "minecraft.crafted:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Crafted"}, "json_string": "{\"text\":\"Acacia Sign Crafted\"}"}}, "p.lightGrayBed": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Picked Up"}, "json_string": "{\"text\":\"Light Gray Bed Picked Up\"}"}}, "u.chainmailLeggings": {"CriteriaName": "minecraft.used:minecraft.chainmail_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Leggings Used"}, "json_string": "{\"text\":\"Chainmail Leggings Used\"}"}}, "b.activatorRail": {"CriteriaName": "minecraft.broken:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Broken"}, "json_string": "{\"text\":\"Activator Rail Broken\"}"}}, "m.rootedDirt": {"CriteriaName": "minecraft.mined:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Mined"}, "json_string": "{\"text\":\"Rooted Dirt Mined\"}"}}, "p.darkOakButton": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Picked Up"}, "json_string": "{\"text\":\"Dark Oak Button Picked Up\"}"}}, "c.rottenFlesh": {"CriteriaName": "minecraft.crafted:minecraft.rotten_flesh", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rotten Flesh Crafted"}, "json_string": "{\"text\":\"Rotten Flesh Crafted\"}"}}, "m.darkOakSlab": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Mined"}, "json_string": "{\"text\":\"Dark Oak Slab Mined\"}"}}, "q.deadBubbleCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Dropped"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Dropped\"}"}}, "p.polishedDeepslateSlab": {"CriteriaName": "minecraft.picked_up:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Picked Up"}, "json_string": "{\"text\":\"Polished Deepslate Slab Picked Up\"}"}}, "p.weatheredCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Picked Up\"}"}}, "u.fireCoralBlock": {"CriteriaName": "minecraft.used:minecraft.fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Block Used"}, "json_string": "{\"text\":\"Fire Coral Block Used\"}"}}, "b.lightBlueTerracotta": {"CriteriaName": "minecraft.broken:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Broken"}, "json_string": "{\"text\":\"Light Blue Terracotta Broken\"}"}}, "p.andesiteSlab": {"CriteriaName": "minecraft.picked_up:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Picked Up"}, "json_string": "{\"text\":\"Andesite Slab Picked Up\"}"}}, "u.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.used:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Used"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Used\"}"}}, "u.pinkShulkerBox": {"CriteriaName": "minecraft.used:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Used"}, "json_string": "{\"text\":\"Pink Shulker Box Used\"}"}}, "u.writableBook": {"CriteriaName": "minecraft.used:minecraft.writable_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Writable Book Used"}, "json_string": "{\"text\":\"Writable Book Used\"}"}}, "c.rabbitFoot": {"CriteriaName": "minecraft.crafted:minecraft.rabbit_foot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Foot Crafted"}, "json_string": "{\"text\":\"Rabbit Foot Crafted\"}"}}, "b.axolotlBucket": {"CriteriaName": "minecraft.broken:minecraft.axolotl_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Bucket Broken"}, "json_string": "{\"text\":\"Axolotl Bucket Broken\"}"}}, "p.honeycomb": {"CriteriaName": "minecraft.picked_up:minecraft.honeycomb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honeycomb Picked Up"}, "json_string": "{\"text\":\"Honeycomb Picked Up\"}"}}, "q.blackConcrete": {"CriteriaName": "minecraft.dropped:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Dropped"}, "json_string": "{\"text\":\"Black Concrete Dropped\"}"}}, "p.ironHoe": {"CriteriaName": "minecraft.picked_up:minecraft.iron_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Hoe Picked Up"}, "json_string": "{\"text\":\"Iron Hoe Picked Up\"}"}}, "b.blackTerracotta": {"CriteriaName": "minecraft.broken:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Broken"}, "json_string": "{\"text\":\"Black Terracotta Broken\"}"}}, "u.terracotta": {"CriteriaName": "minecraft.used:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Used"}, "json_string": "{\"text\":\"Terracotta Used\"}"}}, "p.netheriteChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Chestplate Picked Up"}, "json_string": "{\"text\":\"Netherite Chestplate Picked Up\"}"}}, "c.podzol": {"CriteriaName": "minecraft.crafted:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Crafted"}, "json_string": "{\"text\":\"Podzol Crafted\"}"}}, "u.polishedBlackstoneWall": {"CriteriaName": "minecraft.used:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Used"}, "json_string": "{\"text\":\"Polished Blackstone Wall Used\"}"}}, "q.chiseledQuartzBlock": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Dropped"}, "json_string": "{\"text\":\"Chiseled Quartz Block Dropped\"}"}}, "p.warpedHyphae": {"CriteriaName": "minecraft.picked_up:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Picked Up"}, "json_string": "{\"text\":\"Warped Hyphae Picked Up\"}"}}, "q.blackStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Dropped"}, "json_string": "{\"text\":\"Black Stained Glass Dropped\"}"}}, "u.exposedCopper": {"CriteriaName": "minecraft.used:minecraft.exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Copper Used"}, "json_string": "{\"text\":\"Exposed Copper Used\"}"}}, "u.deadFireCoralFan": {"CriteriaName": "minecraft.used:minecraft.dead_fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Fan Used"}, "json_string": "{\"text\":\"Dead Fire Coral Fan Used\"}"}}, "b.smoothBasalt": {"CriteriaName": "minecraft.broken:minecraft.smooth_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Basalt Broken"}, "json_string": "{\"text\":\"Smooth Basalt Broken\"}"}}, "c.chickenSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.chicken_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Spawn Egg Crafted"}, "json_string": "{\"text\":\"Chicken Spawn Egg Crafted\"}"}}, "u.copperIngot": {"CriteriaName": "minecraft.used:minecraft.copper_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ingot Used"}, "json_string": "{\"text\":\"Copper Ingot Used\"}"}}, "u.potion": {"CriteriaName": "minecraft.used:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Used"}, "json_string": "{\"text\":\"Potion Used\"}"}}, "c.deepslateLapisOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Lapis Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Lapis Ore Crafted\"}"}}, "b.magmaCubeSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.magma_cube_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Spawn Egg Broken"}, "json_string": "{\"text\":\"Magma Cube Spawn Egg Broken\"}"}}, "p.snow": {"CriteriaName": "minecraft.picked_up:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Picked Up"}, "json_string": "{\"text\":\"Snow Picked Up\"}"}}, "m.cyanStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Mined\"}"}}, "m.sponge": {"CriteriaName": "minecraft.mined:minecraft.sponge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sponge Mined"}, "json_string": "{\"text\":\"Sponge Mined\"}"}}, "q.copperIngot": {"CriteriaName": "minecraft.dropped:minecraft.copper_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ingot Dropped"}, "json_string": "{\"text\":\"Copper Ingot Dropped\"}"}}, "q.slimeBlock": {"CriteriaName": "minecraft.dropped:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Dropped"}, "json_string": "{\"text\":\"Slime Block Dropped\"}"}}, "c.blackShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Crafted"}, "json_string": "{\"text\":\"Black Shulker Box Crafted\"}"}}, "p.goldenAxe": {"CriteriaName": "minecraft.picked_up:minecraft.golden_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Axe Picked Up"}, "json_string": "{\"text\":\"Golden Axe Picked Up\"}"}}, "q.warpedStem": {"CriteriaName": "minecraft.dropped:minecraft.warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stem Dropped"}, "json_string": "{\"text\":\"Warped Stem Dropped\"}"}}, "u.blueCandle": {"CriteriaName": "minecraft.used:minecraft.blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Used"}, "json_string": "{\"text\":\"Blue Candle Used\"}"}}, "c.diamondSword": {"CriteriaName": "minecraft.crafted:minecraft.diamond_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Sword Crafted"}, "json_string": "{\"text\":\"Diamond Sword Crafted\"}"}}, "q.warpedButton": {"CriteriaName": "minecraft.dropped:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Dropped"}, "json_string": "{\"text\":\"Warped Button Dropped\"}"}}, "q.lightGrayBanner": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Dropped"}, "json_string": "{\"text\":\"Light Gray Banner Dropped\"}"}}, "u.coarseDirt": {"CriteriaName": "minecraft.used:minecraft.coarse_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coarse Dirt Used"}, "json_string": "{\"text\":\"Coarse Dirt Used\"}"}}, "c.glowstoneDust": {"CriteriaName": "minecraft.crafted:minecraft.glowstone_dust", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dust Crafted"}, "json_string": "{\"text\":\"Glowstone Dust Crafted\"}"}}, "q.trappedChest": {"CriteriaName": "minecraft.dropped:minecraft.trapped_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trapped Chest Dropped"}, "json_string": "{\"text\":\"Trapped Chest Dropped\"}"}}, "c.oakDoor": {"CriteriaName": "minecraft.crafted:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Crafted"}, "json_string": "{\"text\":\"Oak Door Crafted\"}"}}, "q.prismarineBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Dropped"}, "json_string": "{\"text\":\"Prismarine Brick Slab Dropped\"}"}}, "u.bakedPotato": {"CriteriaName": "minecraft.used:minecraft.baked_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Baked Potato Used"}, "json_string": "{\"text\":\"Baked Potato Used\"}"}}, "c.cobbledDeepslate": {"CriteriaName": "minecraft.crafted:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Crafted"}, "json_string": "{\"text\":\"Cobbled Deepslate Crafted\"}"}}, "c.enderChest": {"CriteriaName": "minecraft.crafted:minecraft.ender_chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Chest Crafted"}, "json_string": "{\"text\":\"Ender Chest Crafted\"}"}}, "q.cobblestoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Slab Dropped"}, "json_string": "{\"text\":\"Cobblestone Slab Dropped\"}"}}, "b.cutRedSandstone": {"CriteriaName": "minecraft.broken:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Broken"}, "json_string": "{\"text\":\"Cut Red Sandstone Broken\"}"}}, "p.deadBrainCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Picked Up"}, "json_string": "{\"text\":\"Dead Brain Coral Block Picked Up\"}"}}, "b.polishedBlackstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Broken"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Broken\"}"}}, "q.ghastTear": {"CriteriaName": "minecraft.dropped:minecraft.ghast_tear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Tear Dropped"}, "json_string": "{\"text\":\"Ghast Tear Dropped\"}"}}, "u.allium": {"CriteriaName": "minecraft.used:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Used"}, "json_string": "{\"text\":\"Allium Used\"}"}}, "m.cyanTerracotta": {"CriteriaName": "minecraft.mined:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Mined"}, "json_string": "{\"text\":\"Cyan Terracotta Mined\"}"}}, "u.jungleSlab": {"CriteriaName": "minecraft.used:minecraft.jungle_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Slab Used"}, "json_string": "{\"text\":\"Jungle Slab Used\"}"}}, "b.smoothSandstone": {"CriteriaName": "minecraft.broken:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Broken"}, "json_string": "{\"text\":\"Smooth Sandstone Broken\"}"}}, "g.health": {"CriteriaName": "health", "RenderType": "hearts", "DisplayName": {"json_dict": {"text": "Health"}, "json_string": "{\"text\":\"Health\"}"}}, "m.redstoneTorch": {"CriteriaName": "minecraft.mined:minecraft.redstone_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Torch Mined"}, "json_string": "{\"text\":\"Redstone Torch Mined\"}"}}, "q.leatherHelmet": {"CriteriaName": "minecraft.dropped:minecraft.leather_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Helmet Dropped"}, "json_string": "{\"text\":\"Leather Helmet Dropped\"}"}}, "q.porkchop": {"CriteriaName": "minecraft.dropped:minecraft.porkchop", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Porkchop Dropped"}, "json_string": "{\"text\":\"Porkchop Dropped\"}"}}, "b.repeater": {"CriteriaName": "minecraft.broken:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Broken"}, "json_string": "{\"text\":\"Repeater Broken\"}"}}, "b.ancientDebris": {"CriteriaName": "minecraft.broken:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Broken"}, "json_string": "{\"text\":\"Ancient Debris Broken\"}"}}, "q.itemFrame": {"CriteriaName": "minecraft.dropped:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Dropped"}, "json_string": "{\"text\":\"Item Frame Dropped\"}"}}, "u.lightBlueWool": {"CriteriaName": "minecraft.used:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Used"}, "json_string": "{\"text\":\"Light Blue Wool Used\"}"}}, "d.enderDragon": {"CriteriaName": "minecraft.killed_by:minecraft.ender_dragon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Ender Dragon"}, "json_string": "{\"text\":\"Killed by Ender Dragon\"}"}}, "q.skeletonSkull": {"CriteriaName": "minecraft.dropped:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Dropped"}, "json_string": "{\"text\":\"Skeleton Skull Dropped\"}"}}, "u.deadBush": {"CriteriaName": "minecraft.used:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Used"}, "json_string": "{\"text\":\"Dead Bush Used\"}"}}, "d.pillager": {"CriteriaName": "minecraft.killed_by:minecraft.pillager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Pillager"}, "json_string": "{\"text\":\"Killed by Pillager\"}"}}, "m.potatoes": {"CriteriaName": "minecraft.mined:minecraft.potatoes", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potatoes Mined"}, "json_string": "{\"text\":\"Potatoes Mined\"}"}}, "c.spruceStairs": {"CriteriaName": "minecraft.crafted:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Crafted"}, "json_string": "{\"text\":\"Spruce Stairs Crafted\"}"}}, "m.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Mined\"}"}}, "b.candle": {"CriteriaName": "minecraft.broken:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Broken"}, "json_string": "{\"text\":\"Candle Broken\"}"}}, "c.repeater": {"CriteriaName": "minecraft.crafted:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Crafted"}, "json_string": "{\"text\":\"Repeater Crafted\"}"}}, "q.ironPickaxe": {"CriteriaName": "minecraft.dropped:minecraft.iron_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Pickaxe Dropped"}, "json_string": "{\"text\":\"Iron Pickaxe Dropped\"}"}}, "m.pottedCrimsonRoots": {"CriteriaName": "minecraft.mined:minecraft.potted_crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Crimson Roots Mined"}, "json_string": "{\"text\":\"Potted Crimson Roots Mined\"}"}}, "p.itemFrame": {"CriteriaName": "minecraft.picked_up:minecraft.item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Item Frame Picked Up"}, "json_string": "{\"text\":\"Item Frame Picked Up\"}"}}, "p.brownStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.brown_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Picked Up"}, "json_string": "{\"text\":\"Brown Stained Glass Picked Up\"}"}}, "b.oakLeaves": {"CriteriaName": "minecraft.broken:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Broken"}, "json_string": "{\"text\":\"Oak Leaves Broken\"}"}}, "c.pufferfishSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.pufferfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Spawn Egg Crafted"}, "json_string": "{\"text\":\"Pufferfish Spawn Egg Crafted\"}"}}, "c.birchDoor": {"CriteriaName": "minecraft.crafted:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Crafted"}, "json_string": "{\"text\":\"Birch Door Crafted\"}"}}, "m.strippedAcaciaLog": {"CriteriaName": "minecraft.mined:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Mined"}, "json_string": "{\"text\":\"Stripped Acacia Log Mined\"}"}}, "u.phantomMembrane": {"CriteriaName": "minecraft.used:minecraft.phantom_membrane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Membrane Used"}, "json_string": "{\"text\":\"Phantom Membrane Used\"}"}}, "q.deadBubbleCoral": {"CriteriaName": "minecraft.dropped:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Dropped"}, "json_string": "{\"text\":\"Dead Bubble Coral Dropped\"}"}}, "u.blueCarpet": {"CriteriaName": "minecraft.used:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Used"}, "json_string": "{\"text\":\"Blue Carpet Used\"}"}}, "u.diamondHelmet": {"CriteriaName": "minecraft.used:minecraft.diamond_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Helmet Used"}, "json_string": "{\"text\":\"Diamond Helmet Used\"}"}}, "u.magmaCubeSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.magma_cube_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cube Spawn Egg Used"}, "json_string": "{\"text\":\"Magma Cube Spawn Egg Used\"}"}}, "b.lightningRod": {"CriteriaName": "minecraft.broken:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Broken"}, "json_string": "{\"text\":\"Lightning Rod Broken\"}"}}, "p.turtleHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.turtle_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Helmet Picked Up"}, "json_string": "{\"text\":\"Turtle Helmet Picked Up\"}"}}, "k.phantom": {"CriteriaName": "minecraft.killed:minecraft.phantom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Killed"}, "json_string": "{\"text\":\"Phantom Killed\"}"}}, "p.brownDye": {"CriteriaName": "minecraft.picked_up:minecraft.brown_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Dye Picked Up"}, "json_string": "{\"text\":\"Brown Dye Picked Up\"}"}}, "m.structureBlock": {"CriteriaName": "minecraft.mined:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Mined"}, "json_string": "{\"text\":\"Structure Block Mined\"}"}}, "leafDec.jungleS": {"CriteriaName": "minecraft.mined:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.jungleS"}, "json_string": "{\"text\":\"leafDec.jungleS\"}"}}, "q.oakLeaves": {"CriteriaName": "minecraft.dropped:minecraft.oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Leaves Dropped"}, "json_string": "{\"text\":\"Oak Leaves Dropped\"}"}}, "m.redBed": {"CriteriaName": "minecraft.mined:minecraft.red_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Bed Mined"}, "json_string": "{\"text\":\"Red Bed Mined\"}"}}, "q.slimeBall": {"CriteriaName": "minecraft.dropped:minecraft.slime_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Ball Dropped"}, "json_string": "{\"text\":\"Slime Ball Dropped\"}"}}, "m.polishedGraniteStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Mined"}, "json_string": "{\"text\":\"Polished Granite Stairs Mined\"}"}}, "b.waxedOxidizedCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Broken"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Broken\"}"}}, "leafDec.jungleL": {"CriteriaName": "minecraft.mined:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.jungleL"}, "json_string": "{\"text\":\"leafDec.jungleL\"}"}}, "q.purpurBlock": {"CriteriaName": "minecraft.dropped:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Dropped"}, "json_string": "{\"text\":\"Purpur Block Dropped\"}"}}, "b.hornCoralFan": {"CriteriaName": "minecraft.broken:minecraft.horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Fan Broken"}, "json_string": "{\"text\":\"Horn Coral Fan Broken\"}"}}, "u.spruceSlab": {"CriteriaName": "minecraft.used:minecraft.spruce_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Slab Used"}, "json_string": "{\"text\":\"Spruce Slab Used\"}"}}, "c.redGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Red Glazed Terracotta Crafted\"}"}}, "c.ironLeggings": {"CriteriaName": "minecraft.crafted:minecraft.iron_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Leggings Crafted"}, "json_string": "{\"text\":\"Iron Leggings Crafted\"}"}}, "p.warpedDoor": {"CriteriaName": "minecraft.picked_up:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Picked Up"}, "json_string": "{\"text\":\"Warped Door Picked Up\"}"}}, "q.rabbitFoot": {"CriteriaName": "minecraft.dropped:minecraft.rabbit_foot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Foot Dropped"}, "json_string": "{\"text\":\"Rabbit Foot Dropped\"}"}}, "b.dolphinSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.dolphin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Spawn Egg Broken"}, "json_string": "{\"text\":\"Dolphin Spawn Egg Broken\"}"}}, "m.cyanCarpet": {"CriteriaName": "minecraft.mined:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Mined"}, "json_string": "{\"text\":\"Cyan Carpet Mined\"}"}}, "m.acaciaWallSign": {"CriteriaName": "minecraft.mined:minecraft.acacia_wall_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wall Sign Mined"}, "json_string": "{\"text\":\"Acacia Wall Sign Mined\"}"}}, "b.whiteBanner": {"CriteriaName": "minecraft.broken:minecraft.white_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Banner Broken"}, "json_string": "{\"text\":\"White Banner Broken\"}"}}, "u.lavaBucket": {"CriteriaName": "minecraft.used:minecraft.lava_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Bucket Used"}, "json_string": "{\"text\":\"Lava Bucket Used\"}"}}, "m.crimsonNylium": {"CriteriaName": "minecraft.mined:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Mined"}, "json_string": "{\"text\":\"Crimson Nylium Mined\"}"}}, "c.bookshelf": {"CriteriaName": "minecraft.crafted:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Crafted"}, "json_string": "{\"text\":\"Bookshelf Crafted\"}"}}, "p.cookie": {"CriteriaName": "minecraft.picked_up:minecraft.cookie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cookie Picked Up"}, "json_string": "{\"text\":\"Cookie Picked Up\"}"}}, "p.tubeCoral": {"CriteriaName": "minecraft.picked_up:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Picked Up"}, "json_string": "{\"text\":\"Tube Coral Picked Up\"}"}}, "c.polishedDeepslateSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Slab Crafted"}, "json_string": "{\"text\":\"Polished Deepslate Slab Crafted\"}"}}, "m.pinkShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Mined"}, "json_string": "{\"text\":\"Pink Shulker Box Mined\"}"}}, "q.whiteGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"White Glazed Terracotta Dropped\"}"}}, "b.jungleBoat": {"CriteriaName": "minecraft.broken:minecraft.jungle_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Boat Broken"}, "json_string": "{\"text\":\"Jungle Boat Broken\"}"}}, "q.greenTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Dropped"}, "json_string": "{\"text\":\"Green Terracotta Dropped\"}"}}, "u.catSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.cat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Spawn Egg Used"}, "json_string": "{\"text\":\"Cat Spawn Egg Used\"}"}}, "m.grass": {"CriteriaName": "minecraft.mined:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Mined"}, "json_string": "{\"text\":\"Grass Mined\"}"}}, "p.greenBed": {"CriteriaName": "minecraft.picked_up:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Picked Up"}, "json_string": "{\"text\":\"Green Bed Picked Up\"}"}}, "q.polishedGraniteStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_granite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Stairs Dropped"}, "json_string": "{\"text\":\"Polished Granite Stairs Dropped\"}"}}, "p.nameTag": {"CriteriaName": "minecraft.picked_up:minecraft.name_tag", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Name Tag Picked Up"}, "json_string": "{\"text\":\"Name Tag Picked Up\"}"}}, "q.oxeyeDaisy": {"CriteriaName": "minecraft.dropped:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Dropped"}, "json_string": "{\"text\":\"Oxeye Daisy Dropped\"}"}}, "b.emeraldBlock": {"CriteriaName": "minecraft.broken:minecraft.emerald_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Block Broken"}, "json_string": "{\"text\":\"Emerald Block Broken\"}"}}, "c.flowerPot": {"CriteriaName": "minecraft.crafted:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Crafted"}, "json_string": "{\"text\":\"Flower Pot Crafted\"}"}}, "b.purpurStairs": {"CriteriaName": "minecraft.broken:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Broken"}, "json_string": "{\"text\":\"Purpur Stairs Broken\"}"}}, "p.cobblestoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Stairs Picked Up"}, "json_string": "{\"text\":\"Cobblestone Stairs Picked Up\"}"}}, "u.netherBricks": {"CriteriaName": "minecraft.used:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Used"}, "json_string": "{\"text\":\"Nether Bricks Used\"}"}}, "c.diamondChestplate": {"CriteriaName": "minecraft.crafted:minecraft.diamond_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Chestplate Crafted"}, "json_string": "{\"text\":\"Diamond Chestplate Crafted\"}"}}, "u.crimsonHyphae": {"CriteriaName": "minecraft.used:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Used"}, "json_string": "{\"text\":\"Crimson Hyphae Used\"}"}}, "u.oakDoor": {"CriteriaName": "minecraft.used:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Used"}, "json_string": "{\"text\":\"Oak Door Used\"}"}}, "p.goldenSword": {"CriteriaName": "minecraft.picked_up:minecraft.golden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Sword Picked Up"}, "json_string": "{\"text\":\"Golden Sword Picked Up\"}"}}, "q.string": {"CriteriaName": "minecraft.dropped:minecraft.string", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "String Dropped"}, "json_string": "{\"text\":\"String Dropped\"}"}}, "c.lilyPad": {"CriteriaName": "minecraft.crafted:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Crafted"}, "json_string": "{\"text\":\"Lily Pad Crafted\"}"}}, "c.mossyCobblestoneWall": {"CriteriaName": "minecraft.crafted:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Crafted"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Crafted\"}"}}, "q.ironChestplate": {"CriteriaName": "minecraft.dropped:minecraft.iron_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Chestplate Dropped"}, "json_string": "{\"text\":\"Iron Chestplate Dropped\"}"}}, "u.tuff": {"CriteriaName": "minecraft.used:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Used"}, "json_string": "{\"text\":\"Tuff Used\"}"}}, "q.blackBanner": {"CriteriaName": "minecraft.dropped:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Dropped"}, "json_string": "{\"text\":\"Black Banner Dropped\"}"}}, "c.oakPlanks": {"CriteriaName": "minecraft.crafted:minecraft.oak_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Planks Crafted"}, "json_string": "{\"text\":\"Oak Planks Crafted\"}"}}, "p.farmland": {"CriteriaName": "minecraft.picked_up:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Picked Up"}, "json_string": "{\"text\":\"Farmland Picked Up\"}"}}, "c.tippedArrow": {"CriteriaName": "minecraft.crafted:minecraft.tipped_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tipped Arrow Crafted"}, "json_string": "{\"text\":\"Tipped Arrow Crafted\"}"}}, "m.grindstone": {"CriteriaName": "minecraft.mined:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Mined"}, "json_string": "{\"text\":\"Grindstone Mined\"}"}}, "u.ironBoots": {"CriteriaName": "minecraft.used:minecraft.iron_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Boots Used"}, "json_string": "{\"text\":\"Iron Boots Used\"}"}}, "u.grayStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Used"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Used\"}"}}, "m.deepslateBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Mined"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Mined\"}"}}, "u.purpleStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Used"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Used\"}"}}, "u.vindicatorSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.vindicator_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Spawn Egg Used"}, "json_string": "{\"text\":\"Vindicator Spawn Egg Used\"}"}}, "c.netherBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Wall Crafted"}, "json_string": "{\"text\":\"Nether Brick Wall Crafted\"}"}}, "cu.interactWithSmithingTable": {"CriteriaName": "minecraft.custom:minecraft.interact_with_smithing_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Smithing Table"}, "json_string": "{\"text\":\"Interact With Smithing Table\"}"}}, "u.prismarineStairs": {"CriteriaName": "minecraft.used:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Used"}, "json_string": "{\"text\":\"Prismarine Stairs Used\"}"}}, "p.blueStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Picked Up\"}"}}, "q.brickSlab": {"CriteriaName": "minecraft.dropped:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Dropped"}, "json_string": "{\"text\":\"Brick Slab Dropped\"}"}}, "u.soulTorch": {"CriteriaName": "minecraft.used:minecraft.soul_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Torch Used"}, "json_string": "{\"text\":\"Soul Torch Used\"}"}}, "m.polishedDeepslateStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Mined"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Mined\"}"}}, "b.polishedDiorite": {"CriteriaName": "minecraft.broken:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Broken"}, "json_string": "{\"text\":\"Polished Diorite Broken\"}"}}, "u.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Used\"}"}}, "k.traderLlama": {"CriteriaName": "minecraft.killed:minecraft.trader_llama", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Killed"}, "json_string": "{\"text\":\"Trader Llama Killed\"}"}}, "m.structureVoid": {"CriteriaName": "minecraft.mined:minecraft.structure_void", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Void Mined"}, "json_string": "{\"text\":\"Structure Void Mined\"}"}}, "c.sporeBlossom": {"CriteriaName": "minecraft.crafted:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Crafted"}, "json_string": "{\"text\":\"Spore Blossom Crafted\"}"}}, "p.infestedDeepslate": {"CriteriaName": "minecraft.picked_up:minecraft.infested_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Deepslate Picked Up"}, "json_string": "{\"text\":\"Infested Deepslate Picked Up\"}"}}, "p.straySpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.stray_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Stray Spawn Egg Picked Up\"}"}}, "c.horseSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Spawn Egg Crafted"}, "json_string": "{\"text\":\"Horse Spawn Egg Crafted\"}"}}, "c.blackConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.black_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Powder Crafted"}, "json_string": "{\"text\":\"Black Concrete Powder Crafted\"}"}}, "m.lightGrayCandle": {"CriteriaName": "minecraft.mined:minecraft.light_gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Mined"}, "json_string": "{\"text\":\"Light Gray Candle Mined\"}"}}, "u.netheriteBoots": {"CriteriaName": "minecraft.used:minecraft.netherite_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Boots Used"}, "json_string": "{\"text\":\"Netherite Boots Used\"}"}}, "m.spruceLeaves": {"CriteriaName": "minecraft.mined:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Mined"}, "json_string": "{\"text\":\"Spruce Leaves Mined\"}"}}, "m.brownCandleCake": {"CriteriaName": "minecraft.mined:minecraft.brown_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Cake Mined"}, "json_string": "{\"text\":\"Brown Candle Cake Mined\"}"}}, "b.whiteBed": {"CriteriaName": "minecraft.broken:minecraft.white_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Bed Broken"}, "json_string": "{\"text\":\"White Bed Broken\"}"}}, "b.polishedDioriteStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Broken"}, "json_string": "{\"text\":\"Polished Diorite Stairs Broken\"}"}}, "p.sheepSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.sheep_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Sheep Spawn Egg Picked Up\"}"}}, "m.twistingVinesPlant": {"CriteriaName": "minecraft.mined:minecraft.twisting_vines_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Twisting Vines Plant Mined"}, "json_string": "{\"text\":\"Twisting Vines Plant Mined\"}"}}, "p.purpleStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.purple_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Purple Stained Glass Pane Picked Up\"}"}}, "c.lightBlueStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Crafted"}, "json_string": "{\"text\":\"Light Blue Stained Glass Crafted\"}"}}, "b.acaciaFence": {"CriteriaName": "minecraft.broken:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Broken"}, "json_string": "{\"text\":\"Acacia Fence Broken\"}"}}, "b.strippedAcaciaLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Broken"}, "json_string": "{\"text\":\"Stripped Acacia Log Broken\"}"}}, "q.deepslateBricks": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Dropped"}, "json_string": "{\"text\":\"Deepslate Bricks Dropped\"}"}}, "m.lightGrayTerracotta": {"CriteriaName": "minecraft.mined:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Mined"}, "json_string": "{\"text\":\"Light Gray Terracotta Mined\"}"}}, "m.pinkBed": {"CriteriaName": "minecraft.mined:minecraft.pink_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Bed Mined"}, "json_string": "{\"text\":\"Pink Bed Mined\"}"}}, "q.netherGoldOre": {"CriteriaName": "minecraft.dropped:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Dropped"}, "json_string": "{\"text\":\"Nether Gold Ore Dropped\"}"}}, "c.clayBall": {"CriteriaName": "minecraft.crafted:minecraft.clay_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Ball Crafted"}, "json_string": "{\"text\":\"Clay Ball Crafted\"}"}}, "u.shroomlight": {"CriteriaName": "minecraft.used:minecraft.shroomlight", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shroomlight Used"}, "json_string": "{\"text\":\"Shroomlight Used\"}"}}, "c.deepslateTileSlab": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_tile_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Slab Crafted"}, "json_string": "{\"text\":\"Deepslate Tile Slab Crafted\"}"}}, "b.warpedSlab": {"CriteriaName": "minecraft.broken:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Broken"}, "json_string": "{\"text\":\"Warped Slab Broken\"}"}}, "u.deepslateGoldOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Used"}, "json_string": "{\"text\":\"Deepslate Gold Ore Used\"}"}}, "c.slimeBlock": {"CriteriaName": "minecraft.crafted:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Crafted"}, "json_string": "{\"text\":\"Slime Block Crafted\"}"}}, "b.acaciaBoat": {"CriteriaName": "minecraft.broken:minecraft.acacia_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Boat Broken"}, "json_string": "{\"text\":\"Acacia Boat Broken\"}"}}, "u.strippedBirchLog": {"CriteriaName": "minecraft.used:minecraft.stripped_birch_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Log Used"}, "json_string": "{\"text\":\"Stripped Birch Log Used\"}"}}, "k.blaze": {"CriteriaName": "minecraft.killed:minecraft.blaze", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Killed"}, "json_string": "{\"text\":\"Blaze Killed\"}"}}, "u.cyanBed": {"CriteriaName": "minecraft.used:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Used"}, "json_string": "{\"text\":\"Cyan Bed Used\"}"}}, "b.stoneShovel": {"CriteriaName": "minecraft.broken:minecraft.stone_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Shovel Broken"}, "json_string": "{\"text\":\"Stone Shovel Broken\"}"}}, "u.polishedDiorite": {"CriteriaName": "minecraft.used:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Used"}, "json_string": "{\"text\":\"Polished Diorite Used\"}"}}, "m.purpleShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Mined"}, "json_string": "{\"text\":\"Purple Shulker Box Mined\"}"}}, "m.brownTerracotta": {"CriteriaName": "minecraft.mined:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Mined"}, "json_string": "{\"text\":\"Brown Terracotta Mined\"}"}}, "q.deepslateRedstoneOre": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Dropped"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Dropped\"}"}}, "m.piston": {"CriteriaName": "minecraft.mined:minecraft.piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piston Mined"}, "json_string": "{\"text\":\"Piston Mined\"}"}}, "b.shulkerBox": {"CriteriaName": "minecraft.broken:minecraft.shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Box Broken"}, "json_string": "{\"text\":\"Shulker Box Broken\"}"}}, "q.redNetherBrickSlab": {"CriteriaName": "minecraft.dropped:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Dropped"}, "json_string": "{\"text\":\"Red Nether Brick Slab Dropped\"}"}}, "m.endStoneBrickWall": {"CriteriaName": "minecraft.mined:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Mined"}, "json_string": "{\"text\":\"End Stone Brick Wall Mined\"}"}}, "u.cyanStainedGlass": {"CriteriaName": "minecraft.used:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Used"}, "json_string": "{\"text\":\"Cyan Stained Glass Used\"}"}}, "u.anvil": {"CriteriaName": "minecraft.used:minecraft.anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Anvil Used"}, "json_string": "{\"text\":\"Anvil Used\"}"}}, "p.commandBlock": {"CriteriaName": "minecraft.picked_up:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Picked Up"}, "json_string": "{\"text\":\"Command Block Picked Up\"}"}}, "m.spawner": {"CriteriaName": "minecraft.mined:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Mined"}, "json_string": "{\"text\":\"Spawner Mined\"}"}}, "u.diamondShovel": {"CriteriaName": "minecraft.used:minecraft.diamond_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Shovel Used"}, "json_string": "{\"text\":\"Diamond Shovel Used\"}"}}, "p.beacon": {"CriteriaName": "minecraft.picked_up:minecraft.beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beacon Picked Up"}, "json_string": "{\"text\":\"Beacon Picked Up\"}"}}, "c.jungleSign": {"CriteriaName": "minecraft.crafted:minecraft.jungle_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Sign Crafted"}, "json_string": "{\"text\":\"Jungle Sign Crafted\"}"}}, "c.gunpowder": {"CriteriaName": "minecraft.crafted:minecraft.gunpowder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gunpowder Crafted"}, "json_string": "{\"text\":\"Gunpowder Crafted\"}"}}, "q.cutRedSandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Dropped\"}"}}, "m.strippedDarkOakWood": {"CriteriaName": "minecraft.mined:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Mined"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Mined\"}"}}, "u.writtenBook": {"CriteriaName": "minecraft.used:minecraft.written_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Written Book Used"}, "json_string": "{\"text\":\"Written Book Used\"}"}}, "m.sugarCane": {"CriteriaName": "minecraft.mined:minecraft.sugar_cane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Cane Mined"}, "json_string": "{\"text\":\"Sugar Cane Mined\"}"}}, "p.deadBrainCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Picked Up"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Picked Up\"}"}}, "u.candle": {"CriteriaName": "minecraft.used:minecraft.candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Candle Used"}, "json_string": "{\"text\":\"Candle Used\"}"}}, "q.beeSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.bee_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Spawn Egg Dropped"}, "json_string": "{\"text\":\"Bee Spawn Egg Dropped\"}"}}, "u.netherSprouts": {"CriteriaName": "minecraft.used:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Used"}, "json_string": "{\"text\":\"Nether Sprouts Used\"}"}}, "c.deadFireCoral": {"CriteriaName": "minecraft.crafted:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Crafted"}, "json_string": "{\"text\":\"Dead Fire Coral Crafted\"}"}}, "d.phantom": {"CriteriaName": "minecraft.killed_by:minecraft.phantom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Phantom"}, "json_string": "{\"text\":\"Killed by Phantom\"}"}}, "p.oakDoor": {"CriteriaName": "minecraft.picked_up:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Picked Up"}, "json_string": "{\"text\":\"Oak Door Picked Up\"}"}}, "p.infestedStone": {"CriteriaName": "minecraft.picked_up:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Picked Up"}, "json_string": "{\"text\":\"Infested Stone Picked Up\"}"}}, "u.poppy": {"CriteriaName": "minecraft.used:minecraft.poppy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poppy Used"}, "json_string": "{\"text\":\"Poppy Used\"}"}}, "m.attachedPumpkinStem": {"CriteriaName": "minecraft.mined:minecraft.attached_pumpkin_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Attached Pumpkin Stem Mined"}, "json_string": "{\"text\":\"Attached Pumpkin Stem Mined\"}"}}, "p.dropper": {"CriteriaName": "minecraft.picked_up:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Picked Up"}, "json_string": "{\"text\":\"Dropper Picked Up\"}"}}, "m.grayStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Mined\"}"}}, "d.piglinBrute": {"CriteriaName": "minecraft.killed_by:minecraft.piglin_brute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Piglin Brute"}, "json_string": "{\"text\":\"Killed by Piglin Brute\"}"}}, "m.mossyCobblestoneStairs": {"CriteriaName": "minecraft.mined:minecraft.mossy_cobblestone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Stairs Mined"}, "json_string": "{\"text\":\"Mossy Cobblestone Stairs Mined\"}"}}, "q.diamondHelmet": {"CriteriaName": "minecraft.dropped:minecraft.diamond_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Helmet Dropped"}, "json_string": "{\"text\":\"Diamond Helmet Dropped\"}"}}, "u.weatheredCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Slab Used"}, "json_string": "{\"text\":\"Weathered Cut Copper Slab Used\"}"}}, "q.acaciaSign": {"CriteriaName": "minecraft.dropped:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Dropped"}, "json_string": "{\"text\":\"Acacia Sign Dropped\"}"}}, "m.lodestone": {"CriteriaName": "minecraft.mined:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Mined"}, "json_string": "{\"text\":\"Lodestone Mined\"}"}}, "d.horse": {"CriteriaName": "minecraft.killed_by:minecraft.horse", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Horse"}, "json_string": "{\"text\":\"Killed by Horse\"}"}}, "b.goldenBoots": {"CriteriaName": "minecraft.broken:minecraft.golden_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Boots Broken"}, "json_string": "{\"text\":\"Golden Boots Broken\"}"}}, "leafDec.spruceS": {"CriteriaName": "minecraft.mined:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.spruceS"}, "json_string": "{\"text\":\"leafDec.spruceS\"}"}}, "q.stoneBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Dropped"}, "json_string": "{\"text\":\"Stone Brick Stairs Dropped\"}"}}, "b.jukebox": {"CriteriaName": "minecraft.broken:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Broken"}, "json_string": "{\"text\":\"Jukebox Broken\"}"}}, "q.acaciaFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Dropped"}, "json_string": "{\"text\":\"Acacia Fence Gate Dropped\"}"}}, "leafDec.spruceL": {"CriteriaName": "minecraft.mined:minecraft.spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "leafDec.spruceL"}, "json_string": "{\"text\":\"leafDec.spruceL\"}"}}, "p.goldenLeggings": {"CriteriaName": "minecraft.picked_up:minecraft.golden_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Leggings Picked Up"}, "json_string": "{\"text\":\"Golden Leggings Picked Up\"}"}}, "q.chiseledRedSandstone": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Dropped"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Dropped\"}"}}, "p.filledMap": {"CriteriaName": "minecraft.picked_up:minecraft.filled_map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Filled Map Picked Up"}, "json_string": "{\"text\":\"Filled Map Picked Up\"}"}}, "u.driedKelp": {"CriteriaName": "minecraft.used:minecraft.dried_kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Used"}, "json_string": "{\"text\":\"Dried Kelp Used\"}"}}, "q.granite": {"CriteriaName": "minecraft.dropped:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Dropped"}, "json_string": "{\"text\":\"Granite Dropped\"}"}}, "p.goldIngot": {"CriteriaName": "minecraft.picked_up:minecraft.gold_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ingot Picked Up"}, "json_string": "{\"text\":\"Gold Ingot Picked Up\"}"}}, "p.orangeGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Picked Up\"}"}}, "p.spectralArrow": {"CriteriaName": "minecraft.picked_up:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Picked Up"}, "json_string": "{\"text\":\"Spectral Arrow Picked Up\"}"}}, "q.skullBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.skull_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skull Banner Pattern Dropped"}, "json_string": "{\"text\":\"Skull Banner Pattern Dropped\"}"}}, "b.creeperSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.creeper_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Spawn Egg Broken"}, "json_string": "{\"text\":\"Creeper Spawn Egg Broken\"}"}}, "c.coalOre": {"CriteriaName": "minecraft.crafted:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Crafted"}, "json_string": "{\"text\":\"Coal Ore Crafted\"}"}}, "q.spruceSign": {"CriteriaName": "minecraft.dropped:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Dropped"}, "json_string": "{\"text\":\"Spruce Sign Dropped\"}"}}, "u.polishedDioriteSlab": {"CriteriaName": "minecraft.used:minecraft.polished_diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Slab Used"}, "json_string": "{\"text\":\"Polished Diorite Slab Used\"}"}}, "b.allium": {"CriteriaName": "minecraft.broken:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Broken"}, "json_string": "{\"text\":\"Allium Broken\"}"}}, "p.purpleBanner": {"CriteriaName": "minecraft.picked_up:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Picked Up"}, "json_string": "{\"text\":\"Purple Banner Picked Up\"}"}}, "q.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Dropped\"}"}}, "b.redBanner": {"CriteriaName": "minecraft.broken:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Broken"}, "json_string": "{\"text\":\"Red Banner Broken\"}"}}, "c.shulkerShell": {"CriteriaName": "minecraft.crafted:minecraft.shulker_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Shell Crafted"}, "json_string": "{\"text\":\"Shulker Shell Crafted\"}"}}, "c.diorite": {"CriteriaName": "minecraft.crafted:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Crafted"}, "json_string": "{\"text\":\"Diorite Crafted\"}"}}, "b.musicDiscCat": {"CriteriaName": "minecraft.broken:minecraft.music_disc_cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Cat Broken"}, "json_string": "{\"text\":\"Music Disc Cat Broken\"}"}}, "q.strippedDarkOakWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Wood Dropped"}, "json_string": "{\"text\":\"Stripped Dark Oak Wood Dropped\"}"}}, "b.darkPrismarineSlab": {"CriteriaName": "minecraft.broken:minecraft.dark_prismarine_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Slab Broken"}, "json_string": "{\"text\":\"Dark Prismarine Slab Broken\"}"}}, "b.phantomSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.phantom_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Spawn Egg Broken"}, "json_string": "{\"text\":\"Phantom Spawn Egg Broken\"}"}}, "m.sprucePlanks": {"CriteriaName": "minecraft.mined:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Mined"}, "json_string": "{\"text\":\"Spruce Planks Mined\"}"}}, "q.lightGrayTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Dropped"}, "json_string": "{\"text\":\"Light Gray Terracotta Dropped\"}"}}, "c.squidSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Spawn Egg Crafted"}, "json_string": "{\"text\":\"Squid Spawn Egg Crafted\"}"}}, "c.oakPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Crafted"}, "json_string": "{\"text\":\"Oak Pressure Plate Crafted\"}"}}, "m.smoothStone": {"CriteriaName": "minecraft.mined:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Mined"}, "json_string": "{\"text\":\"Smooth Stone Mined\"}"}}, "q.yellowStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Dropped"}, "json_string": "{\"text\":\"Yellow Stained Glass Dropped\"}"}}, "b.cobbledDeepslateSlab": {"CriteriaName": "minecraft.broken:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Broken"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Broken\"}"}}, "q.crackedStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Dropped"}, "json_string": "{\"text\":\"Cracked Stone Bricks Dropped\"}"}}, "q.limeGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Dropped\"}"}}, "c.greenStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Green Stained Glass Pane Crafted\"}"}}, "m.crackedStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Mined"}, "json_string": "{\"text\":\"Cracked Stone Bricks Mined\"}"}}, "b.acaciaLog": {"CriteriaName": "minecraft.broken:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Broken"}, "json_string": "{\"text\":\"Acacia Log Broken\"}"}}, "q.cowSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.cow_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Spawn Egg Dropped"}, "json_string": "{\"text\":\"Cow Spawn Egg Dropped\"}"}}, "m.cutRedSandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.cut_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Slab Mined"}, "json_string": "{\"text\":\"Cut Red Sandstone Slab Mined\"}"}}, "u.milkBucket": {"CriteriaName": "minecraft.used:minecraft.milk_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Milk Bucket Used"}, "json_string": "{\"text\":\"Milk Bucket Used\"}"}}, "cu.aviateOneCm": {"CriteriaName": "minecraft.custom:minecraft.aviate_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Aviate One Cm"}, "json_string": "{\"text\":\"Aviate One Cm\"}"}}, "u.deepslateBrickStairs": {"CriteriaName": "minecraft.used:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Used"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Used\"}"}}, "u.warpedStairs": {"CriteriaName": "minecraft.used:minecraft.warped_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Stairs Used"}, "json_string": "{\"text\":\"Warped Stairs Used\"}"}}, "k.snowGolem": {"CriteriaName": "minecraft.killed:minecraft.snow_golem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Golem Killed"}, "json_string": "{\"text\":\"Snow Golem Killed\"}"}}, "b.netheriteLeggings": {"CriteriaName": "minecraft.broken:minecraft.netherite_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Leggings Broken"}, "json_string": "{\"text\":\"Netherite Leggings Broken\"}"}}, "q.darkOakWood": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Dropped"}, "json_string": "{\"text\":\"Dark Oak Wood Dropped\"}"}}, "q.infestedCobblestone": {"CriteriaName": "minecraft.dropped:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Dropped"}, "json_string": "{\"text\":\"Infested Cobblestone Dropped\"}"}}, "c.ironHoe": {"CriteriaName": "minecraft.crafted:minecraft.iron_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Hoe Crafted"}, "json_string": "{\"text\":\"Iron Hoe Crafted\"}"}}, "q.netheriteShovel": {"CriteriaName": "minecraft.dropped:minecraft.netherite_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Shovel Dropped"}, "json_string": "{\"text\":\"Netherite Shovel Dropped\"}"}}, "p.podzol": {"CriteriaName": "minecraft.picked_up:minecraft.podzol", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Podzol Picked Up"}, "json_string": "{\"text\":\"Podzol Picked Up\"}"}}, "b.gunpowder": {"CriteriaName": "minecraft.broken:minecraft.gunpowder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gunpowder Broken"}, "json_string": "{\"text\":\"Gunpowder Broken\"}"}}, "c.orangeCarpet": {"CriteriaName": "minecraft.crafted:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Crafted"}, "json_string": "{\"text\":\"Orange Carpet Crafted\"}"}}, "m.warpedButton": {"CriteriaName": "minecraft.mined:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Mined"}, "json_string": "{\"text\":\"Warped Button Mined\"}"}}, "q.warpedRoots": {"CriteriaName": "minecraft.dropped:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Dropped"}, "json_string": "{\"text\":\"Warped Roots Dropped\"}"}}, "b.polishedBlackstoneBrickWall": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Wall Broken"}, "json_string": "{\"text\":\"Polished Blackstone Brick Wall Broken\"}"}}, "cu.crouchOneCm": {"CriteriaName": "minecraft.custom:minecraft.crouch_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crouch One Cm"}, "json_string": "{\"text\":\"Crouch One Cm\"}"}}, "m.acaciaSapling": {"CriteriaName": "minecraft.mined:minecraft.acacia_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sapling Mined"}, "json_string": "{\"text\":\"Acacia Sapling Mined\"}"}}, "u.brownBed": {"CriteriaName": "minecraft.used:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Used"}, "json_string": "{\"text\":\"Brown Bed Used\"}"}}, "b.leatherBoots": {"CriteriaName": "minecraft.broken:minecraft.leather_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Boots Broken"}, "json_string": "{\"text\":\"Leather Boots Broken\"}"}}, "c.purpleDye": {"CriteriaName": "minecraft.crafted:minecraft.purple_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Dye Crafted"}, "json_string": "{\"text\":\"Purple Dye Crafted\"}"}}, "p.tubeCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Picked Up"}, "json_string": "{\"text\":\"Tube Coral Fan Picked Up\"}"}}, "p.birchBoat": {"CriteriaName": "minecraft.picked_up:minecraft.birch_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Boat Picked Up"}, "json_string": "{\"text\":\"Birch Boat Picked Up\"}"}}, "q.cyanWool": {"CriteriaName": "minecraft.dropped:minecraft.cyan_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Wool Dropped"}, "json_string": "{\"text\":\"Cyan Wool Dropped\"}"}}, "b.detectorRail": {"CriteriaName": "minecraft.broken:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Broken"}, "json_string": "{\"text\":\"Detector Rail Broken\"}"}}, "c.stoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Crafted"}, "json_string": "{\"text\":\"Stone Stairs Crafted\"}"}}, "u.arrow": {"CriteriaName": "minecraft.used:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Used"}, "json_string": "{\"text\":\"Arrow Used\"}"}}, "p.blueOrchid": {"CriteriaName": "minecraft.picked_up:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Picked Up"}, "json_string": "{\"text\":\"Blue Orchid Picked Up\"}"}}, "q.oxidizedCopper": {"CriteriaName": "minecraft.dropped:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Dropped"}, "json_string": "{\"text\":\"Oxidized Copper Dropped\"}"}}, "q.chicken": {"CriteriaName": "minecraft.dropped:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Dropped"}, "json_string": "{\"text\":\"Chicken Dropped\"}"}}, "c.emerald": {"CriteriaName": "minecraft.crafted:minecraft.emerald", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Crafted"}, "json_string": "{\"text\":\"Emerald Crafted\"}"}}, "c.traderLlamaSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.trader_llama_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Trader Llama Spawn Egg Crafted"}, "json_string": "{\"text\":\"Trader Llama Spawn Egg Crafted\"}"}}, "b.crimsonButton": {"CriteriaName": "minecraft.broken:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Broken"}, "json_string": "{\"text\":\"Crimson Button Broken\"}"}}, "q.mossyCobblestoneWall": {"CriteriaName": "minecraft.dropped:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Dropped"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Dropped\"}"}}, "p.whiteWool": {"CriteriaName": "minecraft.picked_up:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Picked Up"}, "json_string": "{\"text\":\"White Wool Picked Up\"}"}}, "k.areaEffectCloud": {"CriteriaName": "minecraft.killed:minecraft.area_effect_cloud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Area Effect Cloud Killed"}, "json_string": "{\"text\":\"Area Effect Cloud Killed\"}"}}, "b.potato": {"CriteriaName": "minecraft.broken:minecraft.potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potato Broken"}, "json_string": "{\"text\":\"Potato Broken\"}"}}, "m.lightGrayCarpet": {"CriteriaName": "minecraft.mined:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Mined"}, "json_string": "{\"text\":\"Light Gray Carpet Mined\"}"}}, "b.silverfishSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.silverfish_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Silverfish Spawn Egg Broken"}, "json_string": "{\"text\":\"Silverfish Spawn Egg Broken\"}"}}, "p.lightGrayCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Picked Up"}, "json_string": "{\"text\":\"Light Gray Carpet Picked Up\"}"}}, "p.chiseledDeepslate": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Picked Up"}, "json_string": "{\"text\":\"Chiseled Deepslate Picked Up\"}"}}, "c.grassBlock": {"CriteriaName": "minecraft.crafted:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Crafted"}, "json_string": "{\"text\":\"Grass Block Crafted\"}"}}, "b.ironShovel": {"CriteriaName": "minecraft.broken:minecraft.iron_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Shovel Broken"}, "json_string": "{\"text\":\"Iron Shovel Broken\"}"}}, "c.fireworkStar": {"CriteriaName": "minecraft.crafted:minecraft.firework_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Star Crafted"}, "json_string": "{\"text\":\"Firework Star Crafted\"}"}}, "m.strippedCrimsonHyphae": {"CriteriaName": "minecraft.mined:minecraft.stripped_crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Hyphae Mined"}, "json_string": "{\"text\":\"Stripped Crimson Hyphae Mined\"}"}}, "c.birchSign": {"CriteriaName": "minecraft.crafted:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Crafted"}, "json_string": "{\"text\":\"Birch Sign Crafted\"}"}}, "c.purpleShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.purple_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Shulker Box Crafted"}, "json_string": "{\"text\":\"Purple Shulker Box Crafted\"}"}}, "b.suspiciousStew": {"CriteriaName": "minecraft.broken:minecraft.suspicious_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Suspicious Stew Broken"}, "json_string": "{\"text\":\"Suspicious Stew Broken\"}"}}, "b.wheatSeeds": {"CriteriaName": "minecraft.broken:minecraft.wheat_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Seeds Broken"}, "json_string": "{\"text\":\"Wheat Seeds Broken\"}"}}, "u.fireCharge": {"CriteriaName": "minecraft.used:minecraft.fire_charge", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Charge Used"}, "json_string": "{\"text\":\"Fire Charge Used\"}"}}, "c.vexSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.vex_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Spawn Egg Crafted"}, "json_string": "{\"text\":\"Vex Spawn Egg Crafted\"}"}}, "c.netherQuartzOre": {"CriteriaName": "minecraft.crafted:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Crafted"}, "json_string": "{\"text\":\"Nether Quartz Ore Crafted\"}"}}, "q.waxedExposedCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.waxed_exposed_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Slab Dropped\"}"}}, "c.blueGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Blue Glazed Terracotta Crafted\"}"}}, "p.deepslate": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Picked Up"}, "json_string": "{\"text\":\"Deepslate Picked Up\"}"}}, "m.polishedBlackstoneBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Slab Mined"}, "json_string": "{\"text\":\"Polished Blackstone Brick Slab Mined\"}"}}, "c.brownCarpet": {"CriteriaName": "minecraft.crafted:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Crafted"}, "json_string": "{\"text\":\"Brown Carpet Crafted\"}"}}, "u.rabbitSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.rabbit_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Spawn Egg Used"}, "json_string": "{\"text\":\"Rabbit Spawn Egg Used\"}"}}, "q.musicDiscPigstep": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_pigstep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Pigstep Dropped"}, "json_string": "{\"text\":\"Music Disc Pigstep Dropped\"}"}}, "b.warpedPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Broken"}, "json_string": "{\"text\":\"Warped Pressure Plate Broken\"}"}}, "m.blackBed": {"CriteriaName": "minecraft.mined:minecraft.black_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Bed Mined"}, "json_string": "{\"text\":\"Black Bed Mined\"}"}}, "p.cobbledDeepslateStairs": {"CriteriaName": "minecraft.picked_up:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Picked Up"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Picked Up\"}"}}, "c.polishedAndesiteSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Slab Crafted"}, "json_string": "{\"text\":\"Polished Andesite Slab Crafted\"}"}}, "q.brownBanner": {"CriteriaName": "minecraft.dropped:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Dropped"}, "json_string": "{\"text\":\"Brown Banner Dropped\"}"}}, "p.polishedGranite": {"CriteriaName": "minecraft.picked_up:minecraft.polished_granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Picked Up"}, "json_string": "{\"text\":\"Polished Granite Picked Up\"}"}}, "q.polishedBlackstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Stairs Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Stairs Dropped\"}"}}, "m.respawnAnchor": {"CriteriaName": "minecraft.mined:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Mined"}, "json_string": "{\"text\":\"Respawn Anchor Mined\"}"}}, "b.caveSpiderSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.cave_spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Spider Spawn Egg Broken"}, "json_string": "{\"text\":\"Cave Spider Spawn Egg Broken\"}"}}, "c.purpleBanner": {"CriteriaName": "minecraft.crafted:minecraft.purple_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Banner Crafted"}, "json_string": "{\"text\":\"Purple Banner Crafted\"}"}}, "c.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Crafted\"}"}}, "c.darkOakPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Crafted"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Crafted\"}"}}, "p.redstone": {"CriteriaName": "minecraft.picked_up:minecraft.redstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Picked Up"}, "json_string": "{\"text\":\"Redstone Picked Up\"}"}}, "p.blackCandle": {"CriteriaName": "minecraft.picked_up:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Picked Up"}, "json_string": "{\"text\":\"Black Candle Picked Up\"}"}}, "m.redGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.red_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Red Glazed Terracotta Mined\"}"}}, "m.lilac": {"CriteriaName": "minecraft.mined:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Mined"}, "json_string": "{\"text\":\"Lilac Mined\"}"}}, "m.polishedBlackstoneButton": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Button Mined"}, "json_string": "{\"text\":\"Polished Blackstone Button Mined\"}"}}, "c.chest": {"CriteriaName": "minecraft.crafted:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Crafted"}, "json_string": "{\"text\":\"Chest Crafted\"}"}}, "u.waxedExposedCopper": {"CriteriaName": "minecraft.used:minecraft.waxed_exposed_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Copper Used"}, "json_string": "{\"text\":\"Waxed Exposed Copper Used\"}"}}, "c.redNetherBrickWall": {"CriteriaName": "minecraft.crafted:minecraft.red_nether_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Wall Crafted"}, "json_string": "{\"text\":\"Red Nether Brick Wall Crafted\"}"}}, "c.polishedBlackstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.polished_blackstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Slab Crafted"}, "json_string": "{\"text\":\"Polished Blackstone Slab Crafted\"}"}}, "m.deadBrainCoralFan": {"CriteriaName": "minecraft.mined:minecraft.dead_brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Fan Mined"}, "json_string": "{\"text\":\"Dead Brain Coral Fan Mined\"}"}}, "g.openShulkerBox": {"CriteriaName": "minecraft.custom:minecraft.open_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Open Shulker Box"}, "json_string": "{\"text\":\"Open Shulker Box\"}"}}, "u.crimsonButton": {"CriteriaName": "minecraft.used:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Used"}, "json_string": "{\"text\":\"Crimson Button Used\"}"}}, "p.pinkConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Pink Concrete Powder Picked Up\"}"}}, "p.greenCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Picked Up"}, "json_string": "{\"text\":\"Green Carpet Picked Up\"}"}}, "c.brownMushroom": {"CriteriaName": "minecraft.crafted:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Crafted"}, "json_string": "{\"text\":\"Brown Mushroom Crafted\"}"}}, "c.dioriteStairs": {"CriteriaName": "minecraft.crafted:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Crafted"}, "json_string": "{\"text\":\"Diorite Stairs Crafted\"}"}}, "q.netherBricks": {"CriteriaName": "minecraft.dropped:minecraft.nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Bricks Dropped"}, "json_string": "{\"text\":\"Nether Bricks Dropped\"}"}}, "k.piglin": {"CriteriaName": "minecraft.killed:minecraft.piglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Killed"}, "json_string": "{\"text\":\"Piglin Killed\"}"}}, "c.crimsonHyphae": {"CriteriaName": "minecraft.crafted:minecraft.crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Hyphae Crafted"}, "json_string": "{\"text\":\"Crimson Hyphae Crafted\"}"}}, "p.cod": {"CriteriaName": "minecraft.picked_up:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Picked Up"}, "json_string": "{\"text\":\"Cod Picked Up\"}"}}, "c.rawCopperBlock": {"CriteriaName": "minecraft.crafted:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Crafted"}, "json_string": "{\"text\":\"Raw Copper Block Crafted\"}"}}, "q.yellowConcrete": {"CriteriaName": "minecraft.dropped:minecraft.yellow_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Concrete Dropped"}, "json_string": "{\"text\":\"Yellow Concrete Dropped\"}"}}, "k.ravager": {"CriteriaName": "minecraft.killed:minecraft.ravager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Killed"}, "json_string": "{\"text\":\"Ravager Killed\"}"}}, "c.jukebox": {"CriteriaName": "minecraft.crafted:minecraft.jukebox", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jukebox Crafted"}, "json_string": "{\"text\":\"Jukebox Crafted\"}"}}, "cu.fallOneCm": {"CriteriaName": "minecraft.custom:minecraft.fall_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fall One Cm"}, "json_string": "{\"text\":\"Fall One Cm\"}"}}, "u.netheriteLeggings": {"CriteriaName": "minecraft.used:minecraft.netherite_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Leggings Used"}, "json_string": "{\"text\":\"Netherite Leggings Used\"}"}}, "m.pumpkin": {"CriteriaName": "minecraft.mined:minecraft.pumpkin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Mined"}, "json_string": "{\"text\":\"Pumpkin Mined\"}"}}, "p.ghastSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.ghast_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Ghast Spawn Egg Picked Up\"}"}}, "p.sandstoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Picked Up"}, "json_string": "{\"text\":\"Sandstone Wall Picked Up\"}"}}, "c.deadFireCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.dead_fire_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Block Crafted"}, "json_string": "{\"text\":\"Dead Fire Coral Block Crafted\"}"}}, "u.birchDoor": {"CriteriaName": "minecraft.used:minecraft.birch_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Door Used"}, "json_string": "{\"text\":\"Birch Door Used\"}"}}, "u.diorite": {"CriteriaName": "minecraft.used:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Used"}, "json_string": "{\"text\":\"Diorite Used\"}"}}, "g.damageBlockedByShield": {"CriteriaName": "minecraft.custom:minecraft.damage_blocked_by_shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damage Blocked by Shield"}, "json_string": "{\"text\":\"Damage Blocked by Shield\"}"}}, "q.deadTubeCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Dropped"}, "json_string": "{\"text\":\"Dead Tube Coral Block Dropped\"}"}}, "q.orangeBed": {"CriteriaName": "minecraft.dropped:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Dropped"}, "json_string": "{\"text\":\"Orange Bed Dropped\"}"}}, "m.purpleBed": {"CriteriaName": "minecraft.mined:minecraft.purple_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Bed Mined"}, "json_string": "{\"text\":\"Purple Bed Mined\"}"}}, "m.pinkStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Mined"}, "json_string": "{\"text\":\"Pink Stained Glass Mined\"}"}}, "q.grayBanner": {"CriteriaName": "minecraft.dropped:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Dropped"}, "json_string": "{\"text\":\"Gray Banner Dropped\"}"}}, "m.grayGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Mined"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Mined\"}"}}, "u.blueStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Used"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Used\"}"}}, "u.ironHoe": {"CriteriaName": "minecraft.used:minecraft.iron_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Hoe Used"}, "json_string": "{\"text\":\"Iron Hoe Used\"}"}}, "m.glass": {"CriteriaName": "minecraft.mined:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Mined"}, "json_string": "{\"text\":\"Glass Mined\"}"}}, "d.enderPearl": {"CriteriaName": "minecraft.killed_by:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Ender Pearl"}, "json_string": "{\"text\":\"Killed by Ender Pearl\"}"}}, "p.scaffolding": {"CriteriaName": "minecraft.picked_up:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Picked Up"}, "json_string": "{\"text\":\"Scaffolding Picked Up\"}"}}, "u.enderPearl": {"CriteriaName": "minecraft.used:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Used"}, "json_string": "{\"text\":\"Ender Pearl Used\"}"}}, "b.spyglass": {"CriteriaName": "minecraft.broken:minecraft.spyglass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spyglass Broken"}, "json_string": "{\"text\":\"Spyglass Broken\"}"}}, "c.yellowCarpet": {"CriteriaName": "minecraft.crafted:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Crafted"}, "json_string": "{\"text\":\"Yellow Carpet Crafted\"}"}}, "q.strippedAcaciaWood": {"CriteriaName": "minecraft.dropped:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Dropped"}, "json_string": "{\"text\":\"Stripped Acacia Wood Dropped\"}"}}, "u.magentaStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Used"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Used\"}"}}, "b.grayBed": {"CriteriaName": "minecraft.broken:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Broken"}, "json_string": "{\"text\":\"Gray Bed Broken\"}"}}, "u.whiteTulip": {"CriteriaName": "minecraft.used:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Used"}, "json_string": "{\"text\":\"White Tulip Used\"}"}}, "p.blazeSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.blaze_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Blaze Spawn Egg Picked Up\"}"}}, "c.azaleaLeaves": {"CriteriaName": "minecraft.crafted:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Crafted"}, "json_string": "{\"text\":\"Azalea Leaves Crafted\"}"}}, "p.tnt": {"CriteriaName": "minecraft.picked_up:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Picked Up"}, "json_string": "{\"text\":\"Tnt Picked Up\"}"}}, "q.deadFireCoral": {"CriteriaName": "minecraft.dropped:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Dropped"}, "json_string": "{\"text\":\"Dead Fire Coral Dropped\"}"}}, "u.goatSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.goat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat Spawn Egg Used"}, "json_string": "{\"text\":\"Goat Spawn Egg Used\"}"}}, "b.blueConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.blue_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Powder Broken"}, "json_string": "{\"text\":\"Blue Concrete Powder Broken\"}"}}, "c.deadTubeCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.dead_tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Fan Crafted"}, "json_string": "{\"text\":\"Dead Tube Coral Fan Crafted\"}"}}, "u.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.used:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Used"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Used\"}"}}, "b.egg": {"CriteriaName": "minecraft.broken:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Broken"}, "json_string": "{\"text\":\"Egg Broken\"}"}}, "q.cutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Cut Copper Slab Dropped\"}"}}, "c.deadBubbleCoral": {"CriteriaName": "minecraft.crafted:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Crafted"}, "json_string": "{\"text\":\"Dead Bubble Coral Crafted\"}"}}, "p.brownConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Brown Concrete Powder Picked Up\"}"}}, "u.whiteTerracotta": {"CriteriaName": "minecraft.used:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Used"}, "json_string": "{\"text\":\"White Terracotta Used\"}"}}, "u.mossyStoneBricks": {"CriteriaName": "minecraft.used:minecraft.mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Bricks Used"}, "json_string": "{\"text\":\"Mossy Stone Bricks Used\"}"}}, "c.brainCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Crafted"}, "json_string": "{\"text\":\"Brain Coral Fan Crafted\"}"}}, "cu.killedByYellowTeam": {"CriteriaName": "killedByTeam.yellow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Yellow Team"}, "json_string": "{\"text\":\"Killed by Yellow Team\"}"}}, "q.copperOre": {"CriteriaName": "minecraft.dropped:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Dropped"}, "json_string": "{\"text\":\"Copper Ore Dropped\"}"}}, "c.warpedPressurePlate": {"CriteriaName": "minecraft.crafted:minecraft.warped_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Pressure Plate Crafted"}, "json_string": "{\"text\":\"Warped Pressure Plate Crafted\"}"}}, "u.inkSac": {"CriteriaName": "minecraft.used:minecraft.ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ink Sac Used"}, "json_string": "{\"text\":\"Ink Sac Used\"}"}}, "c.redStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.red_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Crafted"}, "json_string": "{\"text\":\"Red Stained Glass Crafted\"}"}}, "d.painting": {"CriteriaName": "minecraft.killed_by:minecraft.painting", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Painting"}, "json_string": "{\"text\":\"Killed by Painting\"}"}}, "b.grayWool": {"CriteriaName": "minecraft.broken:minecraft.gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Wool Broken"}, "json_string": "{\"text\":\"Gray Wool Broken\"}"}}, "b.orangeWool": {"CriteriaName": "minecraft.broken:minecraft.orange_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wool Broken"}, "json_string": "{\"text\":\"Orange Wool Broken\"}"}}, "u.lightBlueShulkerBox": {"CriteriaName": "minecraft.used:minecraft.light_blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Shulker Box Used"}, "json_string": "{\"text\":\"Light Blue Shulker Box Used\"}"}}, "p.waxedOxidizedCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Slab Picked Up\"}"}}, "c.sandstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Stairs Crafted"}, "json_string": "{\"text\":\"Sandstone Stairs Crafted\"}"}}, "u.pumpkinSeeds": {"CriteriaName": "minecraft.used:minecraft.pumpkin_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Seeds Used"}, "json_string": "{\"text\":\"Pumpkin Seeds Used\"}"}}, "m.deadFireCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.dead_fire_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Dead Fire Coral Wall Fan Mined\"}"}}, "q.lead": {"CriteriaName": "minecraft.dropped:minecraft.lead", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lead Dropped"}, "json_string": "{\"text\":\"Lead Dropped\"}"}}, "c.deepslateBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Slab Crafted"}, "json_string": "{\"text\":\"Deepslate Brick Slab Crafted\"}"}}, "u.lightGrayStainedGlass": {"CriteriaName": "minecraft.used:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Used"}, "json_string": "{\"text\":\"Light Gray Stained Glass Used\"}"}}, "m.beetroots": {"CriteriaName": "minecraft.mined:minecraft.beetroots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroots Mined"}, "json_string": "{\"text\":\"Beetroots Mined\"}"}}, "b.spiderSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Spawn Egg Broken"}, "json_string": "{\"text\":\"Spider Spawn Egg Broken\"}"}}, "q.chainmailBoots": {"CriteriaName": "minecraft.dropped:minecraft.chainmail_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Boots Dropped"}, "json_string": "{\"text\":\"Chainmail Boots Dropped\"}"}}, "b.stonecutter": {"CriteriaName": "minecraft.broken:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Broken"}, "json_string": "{\"text\":\"Stonecutter Broken\"}"}}, "p.driedKelpBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dried_kelp_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dried Kelp Block Picked Up"}, "json_string": "{\"text\":\"Dried Kelp Block Picked Up\"}"}}, "u.lapisLazuli": {"CriteriaName": "minecraft.used:minecraft.lapis_lazuli", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Lazuli Used"}, "json_string": "{\"text\":\"Lapis Lazuli Used\"}"}}, "q.endRod": {"CriteriaName": "minecraft.dropped:minecraft.end_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Rod Dropped"}, "json_string": "{\"text\":\"End Rod Dropped\"}"}}, "u.acaciaDoor": {"CriteriaName": "minecraft.used:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Used"}, "json_string": "{\"text\":\"Acacia Door Used\"}"}}, "m.bell": {"CriteriaName": "minecraft.mined:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Mined"}, "json_string": "{\"text\":\"Bell Mined\"}"}}, "u.musicDiscBlocks": {"CriteriaName": "minecraft.used:minecraft.music_disc_blocks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Blocks Used"}, "json_string": "{\"text\":\"Music Disc Blocks Used\"}"}}, "q.woodenSword": {"CriteriaName": "minecraft.dropped:minecraft.wooden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Sword Dropped"}, "json_string": "{\"text\":\"Wooden Sword Dropped\"}"}}, "u.playerHead": {"CriteriaName": "minecraft.used:minecraft.player_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Player Head Used"}, "json_string": "{\"text\":\"Player Head Used\"}"}}, "m.lightGrayCandleCake": {"CriteriaName": "minecraft.mined:minecraft.light_gray_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Cake Mined"}, "json_string": "{\"text\":\"Light Gray Candle Cake Mined\"}"}}, "c.waxedOxidizedCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.waxed_oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Stairs Crafted\"}"}}, "b.lightBlueCarpet": {"CriteriaName": "minecraft.broken:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Broken"}, "json_string": "{\"text\":\"Light Blue Carpet Broken\"}"}}, "b.deepslateBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Broken"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Broken\"}"}}, "u.cyanConcretePowder": {"CriteriaName": "minecraft.used:minecraft.cyan_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Powder Used"}, "json_string": "{\"text\":\"Cyan Concrete Powder Used\"}"}}, "m.lilyOfTheValley": {"CriteriaName": "minecraft.mined:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Mined"}, "json_string": "{\"text\":\"Lily Of The Valley Mined\"}"}}, "c.netheriteShovel": {"CriteriaName": "minecraft.crafted:minecraft.netherite_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Shovel Crafted"}, "json_string": "{\"text\":\"Netherite Shovel Crafted\"}"}}, "u.creeperSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.creeper_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Spawn Egg Used"}, "json_string": "{\"text\":\"Creeper Spawn Egg Used\"}"}}, "c.darkOakLeaves": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Crafted"}, "json_string": "{\"text\":\"Dark Oak Leaves Crafted\"}"}}, "b.pointedDripstone": {"CriteriaName": "minecraft.broken:minecraft.pointed_dripstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pointed Dripstone Broken"}, "json_string": "{\"text\":\"Pointed Dripstone Broken\"}"}}, "q.cyanBanner": {"CriteriaName": "minecraft.dropped:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Dropped"}, "json_string": "{\"text\":\"Cyan Banner Dropped\"}"}}, "u.whiteStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Used"}, "json_string": "{\"text\":\"White Stained Glass Pane Used\"}"}}, "p.quartzPillar": {"CriteriaName": "minecraft.picked_up:minecraft.quartz_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Pillar Picked Up"}, "json_string": "{\"text\":\"Quartz Pillar Picked Up\"}"}}, "u.cyanTerracotta": {"CriteriaName": "minecraft.used:minecraft.cyan_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Terracotta Used"}, "json_string": "{\"text\":\"Cyan Terracotta Used\"}"}}, "q.cauldron": {"CriteriaName": "minecraft.dropped:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Dropped"}, "json_string": "{\"text\":\"Cauldron Dropped\"}"}}, "q.lapisOre": {"CriteriaName": "minecraft.dropped:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Dropped"}, "json_string": "{\"text\":\"Lapis Ore Dropped\"}"}}, "q.lilac": {"CriteriaName": "minecraft.dropped:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Dropped"}, "json_string": "{\"text\":\"Lilac Dropped\"}"}}, "c.observer": {"CriteriaName": "minecraft.crafted:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Crafted"}, "json_string": "{\"text\":\"Observer Crafted\"}"}}, "m.deepslateTileStairs": {"CriteriaName": "minecraft.mined:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Mined"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Mined\"}"}}, "b.straySpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.stray_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stray Spawn Egg Broken"}, "json_string": "{\"text\":\"Stray Spawn Egg Broken\"}"}}, "k.zombifiedPiglin": {"CriteriaName": "minecraft.killed:minecraft.zombified_piglin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Killed"}, "json_string": "{\"text\":\"Zombified Piglin Killed\"}"}}, "u.oakLog": {"CriteriaName": "minecraft.used:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Used"}, "json_string": "{\"text\":\"Oak Log Used\"}"}}, "q.cookie": {"CriteriaName": "minecraft.dropped:minecraft.cookie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cookie Dropped"}, "json_string": "{\"text\":\"Cookie Dropped\"}"}}, "cu.killedByAquaTeam": {"CriteriaName": "killedByTeam.aqua", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Aqua Team"}, "json_string": "{\"text\":\"Killed by Aqua Team\"}"}}, "m.darkOakPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Mined"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Mined\"}"}}, "c.ironNugget": {"CriteriaName": "minecraft.crafted:minecraft.iron_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Nugget Crafted"}, "json_string": "{\"text\":\"Iron Nugget Crafted\"}"}}, "b.armorStand": {"CriteriaName": "minecraft.broken:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Broken"}, "json_string": "{\"text\":\"Armor Stand Broken\"}"}}, "b.fireworkStar": {"CriteriaName": "minecraft.broken:minecraft.firework_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Firework Star Broken"}, "json_string": "{\"text\":\"Firework Star Broken\"}"}}, "b.stonePickaxe": {"CriteriaName": "minecraft.broken:minecraft.stone_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pickaxe Broken"}, "json_string": "{\"text\":\"Stone Pickaxe Broken\"}"}}, "m.target": {"CriteriaName": "minecraft.mined:minecraft.target", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Target Mined"}, "json_string": "{\"text\":\"Target Mined\"}"}}, "p.netheritePickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Pickaxe Picked Up"}, "json_string": "{\"text\":\"Netherite Pickaxe Picked Up\"}"}}, "b.soulLantern": {"CriteriaName": "minecraft.broken:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Broken"}, "json_string": "{\"text\":\"Soul Lantern Broken\"}"}}, "u.purpurSlab": {"CriteriaName": "minecraft.used:minecraft.purpur_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Slab Used"}, "json_string": "{\"text\":\"Purpur Slab Used\"}"}}, "b.blazeRod": {"CriteriaName": "minecraft.broken:minecraft.blaze_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Rod Broken"}, "json_string": "{\"text\":\"Blaze Rod Broken\"}"}}, "b.netheriteHoe": {"CriteriaName": "minecraft.broken:minecraft.netherite_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Hoe Broken"}, "json_string": "{\"text\":\"Netherite Hoe Broken\"}"}}, "b.orangeBed": {"CriteriaName": "minecraft.broken:minecraft.orange_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Bed Broken"}, "json_string": "{\"text\":\"Orange Bed Broken\"}"}}, "q.tubeCoral": {"CriteriaName": "minecraft.dropped:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Dropped"}, "json_string": "{\"text\":\"Tube Coral Dropped\"}"}}, "b.diamondLeggings": {"CriteriaName": "minecraft.broken:minecraft.diamond_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Leggings Broken"}, "json_string": "{\"text\":\"Diamond Leggings Broken\"}"}}, "b.polishedDeepslateStairs": {"CriteriaName": "minecraft.broken:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Broken"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Broken\"}"}}, "c.lead": {"CriteriaName": "minecraft.crafted:minecraft.lead", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lead Crafted"}, "json_string": "{\"text\":\"Lead Crafted\"}"}}, "c.redDye": {"CriteriaName": "minecraft.crafted:minecraft.red_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Dye Crafted"}, "json_string": "{\"text\":\"Red Dye Crafted\"}"}}, "u.structureBlock": {"CriteriaName": "minecraft.used:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Used"}, "json_string": "{\"text\":\"Structure Block Used\"}"}}, "b.cyanStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Broken\"}"}}, "u.heavyWeightedPressurePlate": {"CriteriaName": "minecraft.used:minecraft.heavy_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heavy Weighted Pressure Plate Used"}, "json_string": "{\"text\":\"Heavy Weighted Pressure Plate Used\"}"}}, "m.brownBed": {"CriteriaName": "minecraft.mined:minecraft.brown_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Bed Mined"}, "json_string": "{\"text\":\"Brown Bed Mined\"}"}}, "p.cyanDye": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Dye Picked Up"}, "json_string": "{\"text\":\"Cyan Dye Picked Up\"}"}}, "p.redstoneOre": {"CriteriaName": "minecraft.picked_up:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Picked Up"}, "json_string": "{\"text\":\"Redstone Ore Picked Up\"}"}}, "p.spruceBoat": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Boat Picked Up"}, "json_string": "{\"text\":\"Spruce Boat Picked Up\"}"}}, "c.goldenChestplate": {"CriteriaName": "minecraft.crafted:minecraft.golden_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Chestplate Crafted"}, "json_string": "{\"text\":\"Golden Chestplate Crafted\"}"}}, "c.whiteStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.white_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Crafted"}, "json_string": "{\"text\":\"White Stained Glass Crafted\"}"}}, "p.cyanStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Picked Up\"}"}}, "u.cobbledDeepslateSlab": {"CriteriaName": "minecraft.used:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Used"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Used\"}"}}, "p.arrow": {"CriteriaName": "minecraft.picked_up:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Arrow Picked Up"}, "json_string": "{\"text\":\"Arrow Picked Up\"}"}}, "c.orangeConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.orange_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Powder Crafted"}, "json_string": "{\"text\":\"Orange Concrete Powder Crafted\"}"}}, "c.blackCandle": {"CriteriaName": "minecraft.crafted:minecraft.black_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Crafted"}, "json_string": "{\"text\":\"Black Candle Crafted\"}"}}, "p.warpedSlab": {"CriteriaName": "minecraft.picked_up:minecraft.warped_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Slab Picked Up"}, "json_string": "{\"text\":\"Warped Slab Picked Up\"}"}}, "m.poweredRail": {"CriteriaName": "minecraft.mined:minecraft.powered_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Powered Rail Mined"}, "json_string": "{\"text\":\"Powered Rail Mined\"}"}}, "p.knowledgeBook": {"CriteriaName": "minecraft.picked_up:minecraft.knowledge_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Knowledge Book Picked Up"}, "json_string": "{\"text\":\"Knowledge Book Picked Up\"}"}}, "p.stoneBrickWall": {"CriteriaName": "minecraft.picked_up:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Picked Up"}, "json_string": "{\"text\":\"Stone Brick Wall Picked Up\"}"}}, "g.cleanShulkerBox": {"CriteriaName": "minecraft.custom:minecraft.clean_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clean Shulker Box"}, "json_string": "{\"text\":\"Clean Shulker Box\"}"}}, "u.stonecutter": {"CriteriaName": "minecraft.used:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Used"}, "json_string": "{\"text\":\"Stonecutter Used\"}"}}, "c.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Crafted\"}"}}, "m.grayCarpet": {"CriteriaName": "minecraft.mined:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Mined"}, "json_string": "{\"text\":\"Gray Carpet Mined\"}"}}, "q.smallAmethystBud": {"CriteriaName": "minecraft.dropped:minecraft.small_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Small Amethyst Bud Dropped"}, "json_string": "{\"text\":\"Small Amethyst Bud Dropped\"}"}}, "p.slimeBall": {"CriteriaName": "minecraft.picked_up:minecraft.slime_ball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Ball Picked Up"}, "json_string": "{\"text\":\"Slime Ball Picked Up\"}"}}, "b.mossyCobblestoneSlab": {"CriteriaName": "minecraft.broken:minecraft.mossy_cobblestone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Slab Broken"}, "json_string": "{\"text\":\"Mossy Cobblestone Slab Broken\"}"}}, "c.crossbow": {"CriteriaName": "minecraft.crafted:minecraft.crossbow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crossbow Crafted"}, "json_string": "{\"text\":\"Crossbow Crafted\"}"}}, "q.stonePressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Dropped"}, "json_string": "{\"text\":\"Stone Pressure Plate Dropped\"}"}}, "u.brownStainedGlassPane": {"CriteriaName": "minecraft.used:minecraft.brown_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Stained Glass Pane Used"}, "json_string": "{\"text\":\"Brown Stained Glass Pane Used\"}"}}, "m.waxedExposedCutCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Mined"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Mined\"}"}}, "u.emerald": {"CriteriaName": "minecraft.used:minecraft.emerald", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Used"}, "json_string": "{\"text\":\"Emerald Used\"}"}}, "p.birchPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Birch Pressure Plate Picked Up\"}"}}, "c.birchFence": {"CriteriaName": "minecraft.crafted:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Crafted"}, "json_string": "{\"text\":\"Birch Fence Crafted\"}"}}, "p.tropicalFishBucket": {"CriteriaName": "minecraft.picked_up:minecraft.tropical_fish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Bucket Picked Up"}, "json_string": "{\"text\":\"Tropical Fish Bucket Picked Up\"}"}}, "m.spruceTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Mined"}, "json_string": "{\"text\":\"Spruce Trapdoor Mined\"}"}}, "u.orangeShulkerBox": {"CriteriaName": "minecraft.used:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Used"}, "json_string": "{\"text\":\"Orange Shulker Box Used\"}"}}, "m.commandBlock": {"CriteriaName": "minecraft.mined:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Mined"}, "json_string": "{\"text\":\"Command Block Mined\"}"}}, "q.crimsonButton": {"CriteriaName": "minecraft.dropped:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Dropped"}, "json_string": "{\"text\":\"Crimson Button Dropped\"}"}}, "b.birchBoat": {"CriteriaName": "minecraft.broken:minecraft.birch_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Boat Broken"}, "json_string": "{\"text\":\"Birch Boat Broken\"}"}}, "b.prismarineShard": {"CriteriaName": "minecraft.broken:minecraft.prismarine_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Shard Broken"}, "json_string": "{\"text\":\"Prismarine Shard Broken\"}"}}, "p.junglePlanks": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Planks Picked Up"}, "json_string": "{\"text\":\"Jungle Planks Picked Up\"}"}}, "b.grayConcrete": {"CriteriaName": "minecraft.broken:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Broken"}, "json_string": "{\"text\":\"Gray Concrete Broken\"}"}}, "p.deepslateBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Picked Up\"}"}}, "p.mossCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Picked Up"}, "json_string": "{\"text\":\"Moss Carpet Picked Up\"}"}}, "b.deadBush": {"CriteriaName": "minecraft.broken:minecraft.dead_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bush Broken"}, "json_string": "{\"text\":\"Dead Bush Broken\"}"}}, "c.brownCandle": {"CriteriaName": "minecraft.crafted:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Crafted"}, "json_string": "{\"text\":\"Brown Candle Crafted\"}"}}, "p.fishingRod": {"CriteriaName": "minecraft.picked_up:minecraft.fishing_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Rod Picked Up"}, "json_string": "{\"text\":\"Fishing Rod Picked Up\"}"}}, "q.ironHoe": {"CriteriaName": "minecraft.dropped:minecraft.iron_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Hoe Dropped"}, "json_string": "{\"text\":\"Iron Hoe Dropped\"}"}}, "c.purpleStainedGlass": {"CriteriaName": "minecraft.crafted:minecraft.purple_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Stained Glass Crafted"}, "json_string": "{\"text\":\"Purple Stained Glass Crafted\"}"}}, "q.polishedDeepslateStairs": {"CriteriaName": "minecraft.dropped:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Dropped"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Dropped\"}"}}, "p.darkOakPressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Picked Up\"}"}}, "k.fireball": {"CriteriaName": "minecraft.killed:minecraft.fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fireball Killed"}, "json_string": "{\"text\":\"Fireball Killed\"}"}}, "u.wolfSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.wolf_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Spawn Egg Used"}, "json_string": "{\"text\":\"Wolf Spawn Egg Used\"}"}}, "p.waxedWeatheredCutCopper": {"CriteriaName": "minecraft.picked_up:minecraft.waxed_weathered_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Picked Up"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Picked Up\"}"}}, "p.zombieVillagerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.zombie_villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Zombie Villager Spawn Egg Picked Up\"}"}}, "c.chippedAnvil": {"CriteriaName": "minecraft.crafted:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Crafted"}, "json_string": "{\"text\":\"Chipped Anvil Crafted\"}"}}, "d.hopperMinecart": {"CriteriaName": "minecraft.killed_by:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Hopper Minecart"}, "json_string": "{\"text\":\"Killed by Hopper Minecart\"}"}}, "q.jungleDoor": {"CriteriaName": "minecraft.dropped:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Dropped"}, "json_string": "{\"text\":\"Jungle Door Dropped\"}"}}, "p.netherBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Slab Picked Up"}, "json_string": "{\"text\":\"Nether Brick Slab Picked Up\"}"}}, "u.stoneAxe": {"CriteriaName": "minecraft.used:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Axe Used"}, "json_string": "{\"text\":\"Stone Axe Used\"}"}}, "p.cobweb": {"CriteriaName": "minecraft.picked_up:minecraft.cobweb", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobweb Picked Up"}, "json_string": "{\"text\":\"Cobweb Picked Up\"}"}}, "p.ghastTear": {"CriteriaName": "minecraft.picked_up:minecraft.ghast_tear", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Tear Picked Up"}, "json_string": "{\"text\":\"Ghast Tear Picked Up\"}"}}, "q.glass": {"CriteriaName": "minecraft.dropped:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Dropped"}, "json_string": "{\"text\":\"Glass Dropped\"}"}}, "g.timeSinceDeath": {"CriteriaName": "minecraft.custom:minecraft.time_since_death", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Time Since Death"}, "json_string": "{\"text\":\"Time Since Death\"}"}}, "p.greenShulkerBox": {"CriteriaName": "minecraft.picked_up:minecraft.green_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Shulker Box Picked Up"}, "json_string": "{\"text\":\"Green Shulker Box Picked Up\"}"}}, "m.redCandleCake": {"CriteriaName": "minecraft.mined:minecraft.red_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Cake Mined"}, "json_string": "{\"text\":\"Red Candle Cake Mined\"}"}}, "b.endStoneBrickWall": {"CriteriaName": "minecraft.broken:minecraft.end_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Wall Broken"}, "json_string": "{\"text\":\"End Stone Brick Wall Broken\"}"}}, "u.polishedAndesiteStairs": {"CriteriaName": "minecraft.used:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Used"}, "json_string": "{\"text\":\"Polished Andesite Stairs Used\"}"}}, "p.blackstone": {"CriteriaName": "minecraft.picked_up:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Picked Up"}, "json_string": "{\"text\":\"Blackstone Picked Up\"}"}}, "q.mutton": {"CriteriaName": "minecraft.dropped:minecraft.mutton", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mutton Dropped"}, "json_string": "{\"text\":\"Mutton Dropped\"}"}}, "b.muleSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.mule_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Spawn Egg Broken"}, "json_string": "{\"text\":\"Mule Spawn Egg Broken\"}"}}, "q.blackShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.black_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Shulker Box Dropped"}, "json_string": "{\"text\":\"Black Shulker Box Dropped\"}"}}, "p.seagrass": {"CriteriaName": "minecraft.picked_up:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Picked Up"}, "json_string": "{\"text\":\"Seagrass Picked Up\"}"}}, "u.redShulkerBox": {"CriteriaName": "minecraft.used:minecraft.red_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Shulker Box Used"}, "json_string": "{\"text\":\"Red Shulker Box Used\"}"}}, "u.deepslateIronOre": {"CriteriaName": "minecraft.used:minecraft.deepslate_iron_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Iron Ore Used"}, "json_string": "{\"text\":\"Deepslate Iron Ore Used\"}"}}, "u.rabbitHide": {"CriteriaName": "minecraft.used:minecraft.rabbit_hide", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Hide Used"}, "json_string": "{\"text\":\"Rabbit Hide Used\"}"}}, "u.diamondBlock": {"CriteriaName": "minecraft.used:minecraft.diamond_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Block Used"}, "json_string": "{\"text\":\"Diamond Block Used\"}"}}, "q.cyanDye": {"CriteriaName": "minecraft.dropped:minecraft.cyan_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Dye Dropped"}, "json_string": "{\"text\":\"Cyan Dye Dropped\"}"}}, "u.oakStairs": {"CriteriaName": "minecraft.used:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Used"}, "json_string": "{\"text\":\"Oak Stairs Used\"}"}}, "b.limeBanner": {"CriteriaName": "minecraft.broken:minecraft.lime_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Banner Broken"}, "json_string": "{\"text\":\"Lime Banner Broken\"}"}}, "c.packedIce": {"CriteriaName": "minecraft.crafted:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Crafted"}, "json_string": "{\"text\":\"Packed Ice Crafted\"}"}}, "m.purpurBlock": {"CriteriaName": "minecraft.mined:minecraft.purpur_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Block Mined"}, "json_string": "{\"text\":\"Purpur Block Mined\"}"}}, "q.writableBook": {"CriteriaName": "minecraft.dropped:minecraft.writable_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Writable Book Dropped"}, "json_string": "{\"text\":\"Writable Book Dropped\"}"}}, "b.deepslate": {"CriteriaName": "minecraft.broken:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Broken"}, "json_string": "{\"text\":\"Deepslate Broken\"}"}}, "q.shield": {"CriteriaName": "minecraft.dropped:minecraft.shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shield Dropped"}, "json_string": "{\"text\":\"Shield Dropped\"}"}}, "tc.use_iron": {"CriteriaName": "minecraft.used:minecraft.iron_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.use_iron"}, "json_string": "{\"text\":\"tc.use_iron\"}"}}, "m.blueCandleCake": {"CriteriaName": "minecraft.mined:minecraft.blue_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Candle Cake Mined"}, "json_string": "{\"text\":\"Blue Candle Cake Mined\"}"}}, "c.allium": {"CriteriaName": "minecraft.crafted:minecraft.allium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Allium Crafted"}, "json_string": "{\"text\":\"Allium Crafted\"}"}}, "p.glowSquidSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.glow_squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Squid Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Glow Squid Spawn Egg Picked Up\"}"}}, "q.chiseledStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Dropped"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Dropped\"}"}}, "cu.interactWithSmoker": {"CriteriaName": "minecraft.custom:minecraft.interact_with_smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Smoker"}, "json_string": "{\"text\":\"Interact With Smoker\"}"}}, "p.oakFence": {"CriteriaName": "minecraft.picked_up:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Picked Up"}, "json_string": "{\"text\":\"Oak Fence Picked Up\"}"}}, "q.prismarine": {"CriteriaName": "minecraft.dropped:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Dropped"}, "json_string": "{\"text\":\"Prismarine Dropped\"}"}}, "c.lightningRod": {"CriteriaName": "minecraft.crafted:minecraft.lightning_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lightning Rod Crafted"}, "json_string": "{\"text\":\"Lightning Rod Crafted\"}"}}, "b.jigsaw": {"CriteriaName": "minecraft.broken:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Broken"}, "json_string": "{\"text\":\"Jigsaw Broken\"}"}}, "k.husk": {"CriteriaName": "minecraft.killed:minecraft.husk", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Husk Killed"}, "json_string": "{\"text\":\"Husk Killed\"}"}}, "m.sprucePressurePlate": {"CriteriaName": "minecraft.mined:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Mined"}, "json_string": "{\"text\":\"Spruce Pressure Plate Mined\"}"}}, "b.glass": {"CriteriaName": "minecraft.broken:minecraft.glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Broken"}, "json_string": "{\"text\":\"Glass Broken\"}"}}, "q.pinkTulip": {"CriteriaName": "minecraft.dropped:minecraft.pink_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Tulip Dropped"}, "json_string": "{\"text\":\"Pink Tulip Dropped\"}"}}, "m.bamboo": {"CriteriaName": "minecraft.mined:minecraft.bamboo", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bamboo Mined"}, "json_string": "{\"text\":\"Bamboo Mined\"}"}}, "u.infestedMossyStoneBricks": {"CriteriaName": "minecraft.used:minecraft.infested_mossy_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Mossy Stone Bricks Used"}, "json_string": "{\"text\":\"Infested Mossy Stone Bricks Used\"}"}}, "b.oakDoor": {"CriteriaName": "minecraft.broken:minecraft.oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Door Broken"}, "json_string": "{\"text\":\"Oak Door Broken\"}"}}, "b.lilac": {"CriteriaName": "minecraft.broken:minecraft.lilac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lilac Broken"}, "json_string": "{\"text\":\"Lilac Broken\"}"}}, "c.hopperMinecart": {"CriteriaName": "minecraft.crafted:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart Crafted"}, "json_string": "{\"text\":\"Hopper Minecart Crafted\"}"}}, "u.goldBlock": {"CriteriaName": "minecraft.used:minecraft.gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Block Used"}, "json_string": "{\"text\":\"Gold Block Used\"}"}}, "b.rabbit": {"CriteriaName": "minecraft.broken:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Broken"}, "json_string": "{\"text\":\"Rabbit Broken\"}"}}, "m.cutCopperSlab": {"CriteriaName": "minecraft.mined:minecraft.cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Slab Mined"}, "json_string": "{\"text\":\"Cut Copper Slab Mined\"}"}}, "q.turtleHelmet": {"CriteriaName": "minecraft.dropped:minecraft.turtle_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Helmet Dropped"}, "json_string": "{\"text\":\"Turtle Helmet Dropped\"}"}}, "m.birchButton": {"CriteriaName": "minecraft.mined:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Mined"}, "json_string": "{\"text\":\"Birch Button Mined\"}"}}, "u.rawIronBlock": {"CriteriaName": "minecraft.used:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Used"}, "json_string": "{\"text\":\"Raw Iron Block Used\"}"}}, "q.deadHornCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Dropped"}, "json_string": "{\"text\":\"Dead Horn Coral Block Dropped\"}"}}, "q.acaciaLog": {"CriteriaName": "minecraft.dropped:minecraft.acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Log Dropped"}, "json_string": "{\"text\":\"Acacia Log Dropped\"}"}}, "b.amethystShard": {"CriteriaName": "minecraft.broken:minecraft.amethyst_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Shard Broken"}, "json_string": "{\"text\":\"Amethyst Shard Broken\"}"}}, "q.rawIronBlock": {"CriteriaName": "minecraft.dropped:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Dropped"}, "json_string": "{\"text\":\"Raw Iron Block Dropped\"}"}}, "q.spruceLeaves": {"CriteriaName": "minecraft.dropped:minecraft.spruce_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Leaves Dropped"}, "json_string": "{\"text\":\"Spruce Leaves Dropped\"}"}}, "b.deepslateDiamondOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Broken"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Broken\"}"}}, "p.blackCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Picked Up"}, "json_string": "{\"text\":\"Black Carpet Picked Up\"}"}}, "m.caveVinesPlant": {"CriteriaName": "minecraft.mined:minecraft.cave_vines_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Vines Plant Mined"}, "json_string": "{\"text\":\"Cave Vines Plant Mined\"}"}}, "m.stickyPiston": {"CriteriaName": "minecraft.mined:minecraft.sticky_piston", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sticky Piston Mined"}, "json_string": "{\"text\":\"Sticky Piston Mined\"}"}}, "c.cobbledDeepslateStairs": {"CriteriaName": "minecraft.crafted:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Crafted"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Crafted\"}"}}, "p.greenConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Picked Up"}, "json_string": "{\"text\":\"Green Concrete Picked Up\"}"}}, "c.blackConcrete": {"CriteriaName": "minecraft.crafted:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Crafted"}, "json_string": "{\"text\":\"Black Concrete Crafted\"}"}}, "p.shulkerShell": {"CriteriaName": "minecraft.picked_up:minecraft.shulker_shell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shulker Shell Picked Up"}, "json_string": "{\"text\":\"Shulker Shell Picked Up\"}"}}, "p.orangeStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Picked Up\"}"}}, "m.polishedDeepslateWall": {"CriteriaName": "minecraft.mined:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Mined"}, "json_string": "{\"text\":\"Polished Deepslate Wall Mined\"}"}}, "d.wither": {"CriteriaName": "minecraft.killed_by:minecraft.wither", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Wither"}, "json_string": "{\"text\":\"Killed by Wither\"}"}}, "u.barrier": {"CriteriaName": "minecraft.used:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Used"}, "json_string": "{\"text\":\"Barrier Used\"}"}}, "p.granite": {"CriteriaName": "minecraft.picked_up:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Picked Up"}, "json_string": "{\"text\":\"Granite Picked Up\"}"}}, "p.lightGrayCandle": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Candle Picked Up"}, "json_string": "{\"text\":\"Light Gray Candle Picked Up\"}"}}, "p.greenCandle": {"CriteriaName": "minecraft.picked_up:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Picked Up"}, "json_string": "{\"text\":\"Green Candle Picked Up\"}"}}, "b.woodenPickaxe": {"CriteriaName": "minecraft.broken:minecraft.wooden_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Pickaxe Broken"}, "json_string": "{\"text\":\"Wooden Pickaxe Broken\"}"}}, "u.ironPickaxe": {"CriteriaName": "minecraft.used:minecraft.iron_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Pickaxe Used"}, "json_string": "{\"text\":\"Iron Pickaxe Used\"}"}}, "m.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Mined"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Mined\"}"}}, "p.jungleFence": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Picked Up"}, "json_string": "{\"text\":\"Jungle Fence Picked Up\"}"}}, "q.respawnAnchor": {"CriteriaName": "minecraft.dropped:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Dropped"}, "json_string": "{\"text\":\"Respawn Anchor Dropped\"}"}}, "c.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Crafted"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Crafted\"}"}}, "p.netheriteSword": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Sword Picked Up"}, "json_string": "{\"text\":\"Netherite Sword Picked Up\"}"}}, "u.dirtPath": {"CriteriaName": "minecraft.used:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Used"}, "json_string": "{\"text\":\"Dirt Path Used\"}"}}, "m.netherQuartzOre": {"CriteriaName": "minecraft.mined:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Mined"}, "json_string": "{\"text\":\"Nether Quartz Ore Mined\"}"}}, "c.ironBars": {"CriteriaName": "minecraft.crafted:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Crafted"}, "json_string": "{\"text\":\"Iron Bars Crafted\"}"}}, "m.oakPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Pressure Plate Mined"}, "json_string": "{\"text\":\"Oak Pressure Plate Mined\"}"}}, "p.warpedRoots": {"CriteriaName": "minecraft.picked_up:minecraft.warped_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Roots Picked Up"}, "json_string": "{\"text\":\"Warped Roots Picked Up\"}"}}, "c.polishedDeepslateStairs": {"CriteriaName": "minecraft.crafted:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Crafted"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Crafted\"}"}}, "p.oakSlab": {"CriteriaName": "minecraft.picked_up:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Picked Up"}, "json_string": "{\"text\":\"Oak Slab Picked Up\"}"}}, "p.birchPlanks": {"CriteriaName": "minecraft.picked_up:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Picked Up"}, "json_string": "{\"text\":\"Birch Planks Picked Up\"}"}}, "b.musicDiscStal": {"CriteriaName": "minecraft.broken:minecraft.music_disc_stal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Stal Broken"}, "json_string": "{\"text\":\"Music Disc Stal Broken\"}"}}, "c.rabbitStew": {"CriteriaName": "minecraft.crafted:minecraft.rabbit_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Stew Crafted"}, "json_string": "{\"text\":\"Rabbit Stew Crafted\"}"}}, "c.strippedWarpedStem": {"CriteriaName": "minecraft.crafted:minecraft.stripped_warped_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Stem Crafted"}, "json_string": "{\"text\":\"Stripped Warped Stem Crafted\"}"}}, "b.blazePowder": {"CriteriaName": "minecraft.broken:minecraft.blaze_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Powder Broken"}, "json_string": "{\"text\":\"Blaze Powder Broken\"}"}}, "c.acaciaFence": {"CriteriaName": "minecraft.crafted:minecraft.acacia_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Crafted"}, "json_string": "{\"text\":\"Acacia Fence Crafted\"}"}}, "m.water": {"CriteriaName": "minecraft.mined:minecraft.water", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Water Mined"}, "json_string": "{\"text\":\"Water Mined\"}"}}, "u.diamondChestplate": {"CriteriaName": "minecraft.used:minecraft.diamond_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Chestplate Used"}, "json_string": "{\"text\":\"Diamond Chestplate Used\"}"}}, "q.writtenBook": {"CriteriaName": "minecraft.dropped:minecraft.written_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Written Book Dropped"}, "json_string": "{\"text\":\"Written Book Dropped\"}"}}, "c.chiseledSandstone": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Sandstone Crafted"}, "json_string": "{\"text\":\"Chiseled Sandstone Crafted\"}"}}, "u.ancientDebris": {"CriteriaName": "minecraft.used:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Used"}, "json_string": "{\"text\":\"Ancient Debris Used\"}"}}, "c.purpurStairs": {"CriteriaName": "minecraft.crafted:minecraft.purpur_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Stairs Crafted"}, "json_string": "{\"text\":\"Purpur Stairs Crafted\"}"}}, "m.deadBrainCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Mined"}, "json_string": "{\"text\":\"Dead Brain Coral Block Mined\"}"}}, "m.smoothSandstoneSlab": {"CriteriaName": "minecraft.mined:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Mined"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Mined\"}"}}, "c.dandelion": {"CriteriaName": "minecraft.crafted:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Crafted"}, "json_string": "{\"text\":\"Dandelion Crafted\"}"}}, "u.yellowTerracotta": {"CriteriaName": "minecraft.used:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Used"}, "json_string": "{\"text\":\"Yellow Terracotta Used\"}"}}, "q.endermiteSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.endermite_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Spawn Egg Dropped"}, "json_string": "{\"text\":\"Endermite Spawn Egg Dropped\"}"}}, "m.oakFence": {"CriteriaName": "minecraft.mined:minecraft.oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Mined"}, "json_string": "{\"text\":\"Oak Fence Mined\"}"}}, "q.strippedJungleLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Dropped"}, "json_string": "{\"text\":\"Stripped Jungle Log Dropped\"}"}}, "b.deepslateBricks": {"CriteriaName": "minecraft.broken:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Broken"}, "json_string": "{\"text\":\"Deepslate Bricks Broken\"}"}}, "p.yellowTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Terracotta Picked Up"}, "json_string": "{\"text\":\"Yellow Terracotta Picked Up\"}"}}, "b.brickSlab": {"CriteriaName": "minecraft.broken:minecraft.brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Slab Broken"}, "json_string": "{\"text\":\"Brick Slab Broken\"}"}}, "p.redSandstoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Picked Up"}, "json_string": "{\"text\":\"Red Sandstone Wall Picked Up\"}"}}, "c.waxedWeatheredCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_weathered_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Copper Crafted"}, "json_string": "{\"text\":\"Waxed Weathered Copper Crafted\"}"}}, "q.commandBlock": {"CriteriaName": "minecraft.dropped:minecraft.command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Dropped"}, "json_string": "{\"text\":\"Command Block Dropped\"}"}}, "b.graniteWall": {"CriteriaName": "minecraft.broken:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Broken"}, "json_string": "{\"text\":\"Granite Wall Broken\"}"}}, "b.ironNugget": {"CriteriaName": "minecraft.broken:minecraft.iron_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Nugget Broken"}, "json_string": "{\"text\":\"Iron Nugget Broken\"}"}}, "p.grayStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.gray_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Gray Stained Glass Pane Picked Up\"}"}}, "p.brownTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.brown_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Terracotta Picked Up"}, "json_string": "{\"text\":\"Brown Terracotta Picked Up\"}"}}, "b.musicDiscMall": {"CriteriaName": "minecraft.broken:minecraft.music_disc_mall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mall Broken"}, "json_string": "{\"text\":\"Music Disc Mall Broken\"}"}}, "q.poisonousPotato": {"CriteriaName": "minecraft.dropped:minecraft.poisonous_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Poisonous Potato Dropped"}, "json_string": "{\"text\":\"Poisonous Potato Dropped\"}"}}, "b.cactus": {"CriteriaName": "minecraft.broken:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Broken"}, "json_string": "{\"text\":\"Cactus Broken\"}"}}, "q.prismarineBricks": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Bricks Dropped"}, "json_string": "{\"text\":\"Prismarine Bricks Dropped\"}"}}, "q.whiteStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.white_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"White Stained Glass Pane Dropped\"}"}}, "b.glassPane": {"CriteriaName": "minecraft.broken:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Broken"}, "json_string": "{\"text\":\"Glass Pane Broken\"}"}}, "b.polishedBlackstone": {"CriteriaName": "minecraft.broken:minecraft.polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Broken"}, "json_string": "{\"text\":\"Polished Blackstone Broken\"}"}}, "m.stoneBrickWall": {"CriteriaName": "minecraft.mined:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Mined"}, "json_string": "{\"text\":\"Stone Brick Wall Mined\"}"}}, "p.light": {"CriteriaName": "minecraft.picked_up:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Picked Up"}, "json_string": "{\"text\":\"Light Picked Up\"}"}}, "b.strippedSpruceWood": {"CriteriaName": "minecraft.broken:minecraft.stripped_spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Wood Broken"}, "json_string": "{\"text\":\"Stripped Spruce Wood Broken\"}"}}, "m.sweetBerryBush": {"CriteriaName": "minecraft.mined:minecraft.sweet_berry_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berry Bush Mined"}, "json_string": "{\"text\":\"Sweet Berry Bush Mined\"}"}}, "p.ravagerSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.ravager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ravager Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Ravager Spawn Egg Picked Up\"}"}}, "u.quartzBricks": {"CriteriaName": "minecraft.used:minecraft.quartz_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Bricks Used"}, "json_string": "{\"text\":\"Quartz Bricks Used\"}"}}, "u.sprucePressurePlate": {"CriteriaName": "minecraft.used:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Used"}, "json_string": "{\"text\":\"Spruce Pressure Plate Used\"}"}}, "c.brownConcrete": {"CriteriaName": "minecraft.crafted:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Crafted"}, "json_string": "{\"text\":\"Brown Concrete Crafted\"}"}}, "k.wither": {"CriteriaName": "minecraft.killed:minecraft.wither", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Killed"}, "json_string": "{\"text\":\"Wither Killed\"}"}}, "c.armorStand": {"CriteriaName": "minecraft.crafted:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Crafted"}, "json_string": "{\"text\":\"Armor Stand Crafted\"}"}}, "c.ironTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Crafted"}, "json_string": "{\"text\":\"Iron Trapdoor Crafted\"}"}}, "k.endCrystal": {"CriteriaName": "minecraft.killed:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Killed"}, "json_string": "{\"text\":\"End Crystal Killed\"}"}}, "p.deepslateCopperOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Copper Ore Picked Up\"}"}}, "m.yellowBanner": {"CriteriaName": "minecraft.mined:minecraft.yellow_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Banner Mined"}, "json_string": "{\"text\":\"Yellow Banner Mined\"}"}}, "q.blueCarpet": {"CriteriaName": "minecraft.dropped:minecraft.blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Carpet Dropped"}, "json_string": "{\"text\":\"Blue Carpet Dropped\"}"}}, "u.graniteWall": {"CriteriaName": "minecraft.used:minecraft.granite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Wall Used"}, "json_string": "{\"text\":\"Granite Wall Used\"}"}}, "cu.potFlower": {"CriteriaName": "minecraft.custom:minecraft.pot_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pot Flower"}, "json_string": "{\"text\":\"Pot Flower\"}"}}, "u.skeletonSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Spawn Egg Used"}, "json_string": "{\"text\":\"Skeleton Spawn Egg Used\"}"}}, "c.deepslateBrickStairs": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Brick Stairs Crafted"}, "json_string": "{\"text\":\"Deepslate Brick Stairs Crafted\"}"}}, "q.netheriteSword": {"CriteriaName": "minecraft.dropped:minecraft.netherite_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Sword Dropped"}, "json_string": "{\"text\":\"Netherite Sword Dropped\"}"}}, "u.light": {"CriteriaName": "minecraft.used:minecraft.light", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Used"}, "json_string": "{\"text\":\"Light Used\"}"}}, "b.tubeCoral": {"CriteriaName": "minecraft.broken:minecraft.tube_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Broken"}, "json_string": "{\"text\":\"Tube Coral Broken\"}"}}, "u.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.used:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Used"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Used\"}"}}, "p.goldenShovel": {"CriteriaName": "minecraft.picked_up:minecraft.golden_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Shovel Picked Up"}, "json_string": "{\"text\":\"Golden Shovel Picked Up\"}"}}, "b.grayShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Shulker Box Broken"}, "json_string": "{\"text\":\"Gray Shulker Box Broken\"}"}}, "q.diamondBoots": {"CriteriaName": "minecraft.dropped:minecraft.diamond_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Boots Dropped"}, "json_string": "{\"text\":\"Diamond Boots Dropped\"}"}}, "q.goldNugget": {"CriteriaName": "minecraft.dropped:minecraft.gold_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Nugget Dropped"}, "json_string": "{\"text\":\"Gold Nugget Dropped\"}"}}, "b.chainmailLeggings": {"CriteriaName": "minecraft.broken:minecraft.chainmail_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Leggings Broken"}, "json_string": "{\"text\":\"Chainmail Leggings Broken\"}"}}, "c.blastFurnace": {"CriteriaName": "minecraft.crafted:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Crafted"}, "json_string": "{\"text\":\"Blast Furnace Crafted\"}"}}, "q.bucket": {"CriteriaName": "minecraft.dropped:minecraft.bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bucket Dropped"}, "json_string": "{\"text\":\"Bucket Dropped\"}"}}, "m.sandstone": {"CriteriaName": "minecraft.mined:minecraft.sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Mined"}, "json_string": "{\"text\":\"Sandstone Mined\"}"}}, "c.blackCarpet": {"CriteriaName": "minecraft.crafted:minecraft.black_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Carpet Crafted"}, "json_string": "{\"text\":\"Black Carpet Crafted\"}"}}, "q.glowstoneDust": {"CriteriaName": "minecraft.dropped:minecraft.glowstone_dust", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dust Dropped"}, "json_string": "{\"text\":\"Glowstone Dust Dropped\"}"}}, "q.beeNest": {"CriteriaName": "minecraft.dropped:minecraft.bee_nest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Nest Dropped"}, "json_string": "{\"text\":\"Bee Nest Dropped\"}"}}, "q.glowstone": {"CriteriaName": "minecraft.dropped:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Dropped"}, "json_string": "{\"text\":\"Glowstone Dropped\"}"}}, "m.cyanCandle": {"CriteriaName": "minecraft.mined:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Mined"}, "json_string": "{\"text\":\"Cyan Candle Mined\"}"}}, "c.azureBluet": {"CriteriaName": "minecraft.crafted:minecraft.azure_bluet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azure Bluet Crafted"}, "json_string": "{\"text\":\"Azure Bluet Crafted\"}"}}, "b.bubbleCoralFan": {"CriteriaName": "minecraft.broken:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Broken"}, "json_string": "{\"text\":\"Bubble Coral Fan Broken\"}"}}, "b.redstoneBlock": {"CriteriaName": "minecraft.broken:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Broken"}, "json_string": "{\"text\":\"Redstone Block Broken\"}"}}, "p.activatorRail": {"CriteriaName": "minecraft.picked_up:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Picked Up"}, "json_string": "{\"text\":\"Activator Rail Picked Up\"}"}}, "q.cookedCod": {"CriteriaName": "minecraft.dropped:minecraft.cooked_cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Cod Dropped"}, "json_string": "{\"text\":\"Cooked Cod Dropped\"}"}}, "m.grayCandle": {"CriteriaName": "minecraft.mined:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Mined"}, "json_string": "{\"text\":\"Gray Candle Mined\"}"}}, "q.exposedCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Dropped\"}"}}, "q.furnaceMinecart": {"CriteriaName": "minecraft.dropped:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Dropped"}, "json_string": "{\"text\":\"Furnace Minecart Dropped\"}"}}, "b.glowItemFrame": {"CriteriaName": "minecraft.broken:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Item Frame Broken"}, "json_string": "{\"text\":\"Glow Item Frame Broken\"}"}}, "b.skeletonHorseSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.skeleton_horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Horse Spawn Egg Broken"}, "json_string": "{\"text\":\"Skeleton Horse Spawn Egg Broken\"}"}}, "u.turtleEgg": {"CriteriaName": "minecraft.used:minecraft.turtle_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Turtle Egg Used"}, "json_string": "{\"text\":\"Turtle Egg Used\"}"}}, "u.greenDye": {"CriteriaName": "minecraft.used:minecraft.green_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Dye Used"}, "json_string": "{\"text\":\"Green Dye Used\"}"}}, "u.netheritePickaxe": {"CriteriaName": "minecraft.used:minecraft.netherite_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Pickaxe Used"}, "json_string": "{\"text\":\"Netherite Pickaxe Used\"}"}}, "b.dioriteSlab": {"CriteriaName": "minecraft.broken:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Broken"}, "json_string": "{\"text\":\"Diorite Slab Broken\"}"}}, "c.brick": {"CriteriaName": "minecraft.crafted:minecraft.brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Crafted"}, "json_string": "{\"text\":\"Brick Crafted\"}"}}, "m.acaciaSign": {"CriteriaName": "minecraft.mined:minecraft.acacia_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Sign Mined"}, "json_string": "{\"text\":\"Acacia Sign Mined\"}"}}, "b.warpedPlanks": {"CriteriaName": "minecraft.broken:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Broken"}, "json_string": "{\"text\":\"Warped Planks Broken\"}"}}, "p.brownWool": {"CriteriaName": "minecraft.picked_up:minecraft.brown_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Wool Picked Up"}, "json_string": "{\"text\":\"Brown Wool Picked Up\"}"}}, "b.emerald": {"CriteriaName": "minecraft.broken:minecraft.emerald", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Broken"}, "json_string": "{\"text\":\"Emerald Broken\"}"}}, "q.crimsonSign": {"CriteriaName": "minecraft.dropped:minecraft.crimson_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Sign Dropped"}, "json_string": "{\"text\":\"Crimson Sign Dropped\"}"}}, "c.lightBlueDye": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Dye Crafted"}, "json_string": "{\"text\":\"Light Blue Dye Crafted\"}"}}, "b.drownedSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.drowned_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Spawn Egg Broken"}, "json_string": "{\"text\":\"Drowned Spawn Egg Broken\"}"}}, "u.smoothSandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Used"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Used\"}"}}, "p.oxidizedCopper": {"CriteriaName": "minecraft.picked_up:minecraft.oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Copper Picked Up"}, "json_string": "{\"text\":\"Oxidized Copper Picked Up\"}"}}, "p.roseBush": {"CriteriaName": "minecraft.picked_up:minecraft.rose_bush", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rose Bush Picked Up"}, "json_string": "{\"text\":\"Rose Bush Picked Up\"}"}}, "u.hoglinSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.hoglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hoglin Spawn Egg Used"}, "json_string": "{\"text\":\"Hoglin Spawn Egg Used\"}"}}, "m.weepingVinesPlant": {"CriteriaName": "minecraft.mined:minecraft.weeping_vines_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Plant Mined"}, "json_string": "{\"text\":\"Weeping Vines Plant Mined\"}"}}, "b.cyanCandle": {"CriteriaName": "minecraft.broken:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Broken"}, "json_string": "{\"text\":\"Cyan Candle Broken\"}"}}, "c.lightBlueGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Light Blue Glazed Terracotta Crafted\"}"}}, "q.petrifiedOakSlab": {"CriteriaName": "minecraft.dropped:minecraft.petrified_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Petrified Oak Slab Dropped"}, "json_string": "{\"text\":\"Petrified Oak Slab Dropped\"}"}}, "p.spruceStairs": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Stairs Picked Up"}, "json_string": "{\"text\":\"Spruce Stairs Picked Up\"}"}}, "p.magentaBanner": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Picked Up"}, "json_string": "{\"text\":\"Magenta Banner Picked Up\"}"}}, "u.orangeStainedGlass": {"CriteriaName": "minecraft.used:minecraft.orange_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Used"}, "json_string": "{\"text\":\"Orange Stained Glass Used\"}"}}, "m.birchTrapdoor": {"CriteriaName": "minecraft.mined:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Mined"}, "json_string": "{\"text\":\"Birch Trapdoor Mined\"}"}}, "p.spruceTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Picked Up"}, "json_string": "{\"text\":\"Spruce Trapdoor Picked Up\"}"}}, "u.darkOakWood": {"CriteriaName": "minecraft.used:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Used"}, "json_string": "{\"text\":\"Dark Oak Wood Used\"}"}}, "m.tripwireHook": {"CriteriaName": "minecraft.mined:minecraft.tripwire_hook", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tripwire Hook Mined"}, "json_string": "{\"text\":\"Tripwire Hook Mined\"}"}}, "b.polishedDeepslateWall": {"CriteriaName": "minecraft.broken:minecraft.polished_deepslate_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Wall Broken"}, "json_string": "{\"text\":\"Polished Deepslate Wall Broken\"}"}}, "b.skeletonSkull": {"CriteriaName": "minecraft.broken:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Broken"}, "json_string": "{\"text\":\"Skeleton Skull Broken\"}"}}, "d.arrow": {"CriteriaName": "minecraft.killed_by:minecraft.arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Arrow"}, "json_string": "{\"text\":\"Killed by Arrow\"}"}}, "q.grass": {"CriteriaName": "minecraft.dropped:minecraft.grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Dropped"}, "json_string": "{\"text\":\"Grass Dropped\"}"}}, "c.bell": {"CriteriaName": "minecraft.crafted:minecraft.bell", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bell Crafted"}, "json_string": "{\"text\":\"Bell Crafted\"}"}}, "b.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Broken"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Broken\"}"}}, "k.hopperMinecart": {"CriteriaName": "minecraft.killed:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart"}, "json_string": "{\"text\":\"Hopper Minecart\"}"}}, "m.redCandle": {"CriteriaName": "minecraft.mined:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Mined"}, "json_string": "{\"text\":\"Red Candle Mined\"}"}}, "b.emeraldOre": {"CriteriaName": "minecraft.broken:minecraft.emerald_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Emerald Ore Broken"}, "json_string": "{\"text\":\"Emerald Ore Broken\"}"}}, "b.polishedGraniteSlab": {"CriteriaName": "minecraft.broken:minecraft.polished_granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Granite Slab Broken"}, "json_string": "{\"text\":\"Polished Granite Slab Broken\"}"}}, "p.yellowGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Picked Up\"}"}}, "m.acaciaFenceGate": {"CriteriaName": "minecraft.mined:minecraft.acacia_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Fence Gate Mined"}, "json_string": "{\"text\":\"Acacia Fence Gate Mined\"}"}}, "p.mossyCobblestoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Picked Up"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Picked Up\"}"}}, "p.birchTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.birch_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Trapdoor Picked Up"}, "json_string": "{\"text\":\"Birch Trapdoor Picked Up\"}"}}, "c.zombifiedPiglinSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.zombified_piglin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombified Piglin Spawn Egg Crafted"}, "json_string": "{\"text\":\"Zombified Piglin Spawn Egg Crafted\"}"}}, "c.deadBubbleCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Crafted"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Crafted\"}"}}, "b.rawCopperBlock": {"CriteriaName": "minecraft.broken:minecraft.raw_copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Copper Block Broken"}, "json_string": "{\"text\":\"Raw Copper Block Broken\"}"}}, "q.dropper": {"CriteriaName": "minecraft.dropped:minecraft.dropper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dropper Dropped"}, "json_string": "{\"text\":\"Dropper Dropped\"}"}}, "b.cyanCarpet": {"CriteriaName": "minecraft.broken:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Broken"}, "json_string": "{\"text\":\"Cyan Carpet Broken\"}"}}, "u.smoothQuartzStairs": {"CriteriaName": "minecraft.used:minecraft.smooth_quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Stairs Used"}, "json_string": "{\"text\":\"Smooth Quartz Stairs Used\"}"}}, "p.spruceWood": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Picked Up"}, "json_string": "{\"text\":\"Spruce Wood Picked Up\"}"}}, "q.spawner": {"CriteriaName": "minecraft.dropped:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Dropped"}, "json_string": "{\"text\":\"Spawner Dropped\"}"}}, "q.melonSlice": {"CriteriaName": "minecraft.dropped:minecraft.melon_slice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Slice Dropped"}, "json_string": "{\"text\":\"Melon Slice Dropped\"}"}}, "u.magmaCream": {"CriteriaName": "minecraft.used:minecraft.magma_cream", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magma Cream Used"}, "json_string": "{\"text\":\"Magma Cream Used\"}"}}, "p.yellowCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Carpet Picked Up"}, "json_string": "{\"text\":\"Yellow Carpet Picked Up\"}"}}, "c.bow": {"CriteriaName": "minecraft.crafted:minecraft.bow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bow Crafted"}, "json_string": "{\"text\":\"Bow Crafted\"}"}}, "u.blackWool": {"CriteriaName": "minecraft.used:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Used"}, "json_string": "{\"text\":\"Black Wool Used\"}"}}, "q.chiseledNetherBricks": {"CriteriaName": "minecraft.dropped:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Dropped"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Dropped\"}"}}, "c.deepslateRedstoneOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Redstone Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Redstone Ore Crafted\"}"}}, "m.limeWool": {"CriteriaName": "minecraft.mined:minecraft.lime_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Wool Mined"}, "json_string": "{\"text\":\"Lime Wool Mined\"}"}}, "m.whiteCandle": {"CriteriaName": "minecraft.mined:minecraft.white_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Candle Mined"}, "json_string": "{\"text\":\"White Candle Mined\"}"}}, "p.prismarineBrickSlab": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Picked Up"}, "json_string": "{\"text\":\"Prismarine Brick Slab Picked Up\"}"}}, "b.purpleConcretePowder": {"CriteriaName": "minecraft.broken:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Broken"}, "json_string": "{\"text\":\"Purple Concrete Powder Broken\"}"}}, "q.yellowStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.yellow_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Yellow Stained Glass Pane Dropped\"}"}}, "c.polishedAndesite": {"CriteriaName": "minecraft.crafted:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Crafted"}, "json_string": "{\"text\":\"Polished Andesite Crafted\"}"}}, "c.ironHelmet": {"CriteriaName": "minecraft.crafted:minecraft.iron_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Helmet Crafted"}, "json_string": "{\"text\":\"Iron Helmet Crafted\"}"}}, "g.armor": {"CriteriaName": "armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor"}, "json_string": "{\"text\":\"Armor\"}"}}, "p.bone": {"CriteriaName": "minecraft.picked_up:minecraft.bone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Picked Up"}, "json_string": "{\"text\":\"Bone Picked Up\"}"}}, "c.sheepSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.sheep_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Spawn Egg Crafted"}, "json_string": "{\"text\":\"Sheep Spawn Egg Crafted\"}"}}, "q.jungleFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Dropped"}, "json_string": "{\"text\":\"Jungle Fence Gate Dropped\"}"}}, "p.squidSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Squid Spawn Egg Picked Up\"}"}}, "b.crimsonFence": {"CriteriaName": "minecraft.broken:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Broken"}, "json_string": "{\"text\":\"Crimson Fence Broken\"}"}}, "b.ironBlock": {"CriteriaName": "minecraft.broken:minecraft.iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Block Broken"}, "json_string": "{\"text\":\"Iron Block Broken\"}"}}, "c.blackstone": {"CriteriaName": "minecraft.crafted:minecraft.blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Crafted"}, "json_string": "{\"text\":\"Blackstone Crafted\"}"}}, "k.cow": {"CriteriaName": "minecraft.killed:minecraft.cow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cow Killed"}, "json_string": "{\"text\":\"Cow Killed\"}"}}, "p.book": {"CriteriaName": "minecraft.picked_up:minecraft.book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Book Picked Up"}, "json_string": "{\"text\":\"Book Picked Up\"}"}}, "u.deepslateBricks": {"CriteriaName": "minecraft.used:minecraft.deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Bricks Used"}, "json_string": "{\"text\":\"Deepslate Bricks Used\"}"}}, "m.chiseledDeepslate": {"CriteriaName": "minecraft.mined:minecraft.chiseled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Deepslate Mined"}, "json_string": "{\"text\":\"Chiseled Deepslate Mined\"}"}}, "q.blueShulkerBox": {"CriteriaName": "minecraft.dropped:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Dropped"}, "json_string": "{\"text\":\"Blue Shulker Box Dropped\"}"}}, "k.vindicator": {"CriteriaName": "minecraft.killed:minecraft.vindicator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vindicator Killed"}, "json_string": "{\"text\":\"Vindicator Killed\"}"}}, "u.zombieSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.zombie_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Spawn Egg Used"}, "json_string": "{\"text\":\"Zombie Spawn Egg Used\"}"}}, "m.packedIce": {"CriteriaName": "minecraft.mined:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Mined"}, "json_string": "{\"text\":\"Packed Ice Mined\"}"}}, "b.carrot": {"CriteriaName": "minecraft.broken:minecraft.carrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Carrot Broken"}, "json_string": "{\"text\":\"Carrot Broken\"}"}}, "q.lightGrayStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.light_gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Stained Glass Dropped"}, "json_string": "{\"text\":\"Light Gray Stained Glass Dropped\"}"}}, "q.limeStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.lime_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Stained Glass Dropped"}, "json_string": "{\"text\":\"Lime Stained Glass Dropped\"}"}}, "m.whiteConcrete": {"CriteriaName": "minecraft.mined:minecraft.white_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Concrete Mined"}, "json_string": "{\"text\":\"White Concrete Mined\"}"}}, "q.crackedDeepslateBricks": {"CriteriaName": "minecraft.dropped:minecraft.cracked_deepslate_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Deepslate Bricks Dropped"}, "json_string": "{\"text\":\"Cracked Deepslate Bricks Dropped\"}"}}, "q.phantomMembrane": {"CriteriaName": "minecraft.dropped:minecraft.phantom_membrane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Phantom Membrane Dropped"}, "json_string": "{\"text\":\"Phantom Membrane Dropped\"}"}}, "k.cod": {"CriteriaName": "minecraft.killed:minecraft.cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Killed"}, "json_string": "{\"text\":\"Cod Killed\"}"}}, "p.exposedCutCopperStairs": {"CriteriaName": "minecraft.picked_up:minecraft.exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Exposed Cut Copper Stairs Picked Up"}, "json_string": "{\"text\":\"Exposed Cut Copper Stairs Picked Up\"}"}}, "q.deepslateTileStairs": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_tile_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Stairs Dropped"}, "json_string": "{\"text\":\"Deepslate Tile Stairs Dropped\"}"}}, "q.deadHornCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.dead_horn_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Fan Dropped"}, "json_string": "{\"text\":\"Dead Horn Coral Fan Dropped\"}"}}, "p.orangeDye": {"CriteriaName": "minecraft.picked_up:minecraft.orange_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Dye Picked Up"}, "json_string": "{\"text\":\"Orange Dye Picked Up\"}"}}, "b.coalOre": {"CriteriaName": "minecraft.broken:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Broken"}, "json_string": "{\"text\":\"Coal Ore Broken\"}"}}, "q.rabbitStew": {"CriteriaName": "minecraft.dropped:minecraft.rabbit_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Stew Dropped"}, "json_string": "{\"text\":\"Rabbit Stew Dropped\"}"}}, "u.pinkStainedGlass": {"CriteriaName": "minecraft.used:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Used"}, "json_string": "{\"text\":\"Pink Stained Glass Used\"}"}}, "u.chiseledNetherBricks": {"CriteriaName": "minecraft.used:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Used"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Used\"}"}}, "c.lingeringPotion": {"CriteriaName": "minecraft.crafted:minecraft.lingering_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lingering Potion Crafted"}, "json_string": "{\"text\":\"Lingering Potion Crafted\"}"}}, "p.magentaCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Picked Up"}, "json_string": "{\"text\":\"Magenta Carpet Picked Up\"}"}}, "b.magentaTerracotta": {"CriteriaName": "minecraft.broken:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Broken"}, "json_string": "{\"text\":\"Magenta Terracotta Broken\"}"}}, "b.warpedSign": {"CriteriaName": "minecraft.broken:minecraft.warped_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Sign Broken"}, "json_string": "{\"text\":\"Warped Sign Broken\"}"}}, "p.cyanCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Carpet Picked Up"}, "json_string": "{\"text\":\"Cyan Carpet Picked Up\"}"}}, "p.netherStar": {"CriteriaName": "minecraft.picked_up:minecraft.nether_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Star Picked Up"}, "json_string": "{\"text\":\"Nether Star Picked Up\"}"}}, "u.prismarine": {"CriteriaName": "minecraft.used:minecraft.prismarine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Used"}, "json_string": "{\"text\":\"Prismarine Used\"}"}}, "c.cauldron": {"CriteriaName": "minecraft.crafted:minecraft.cauldron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cauldron Crafted"}, "json_string": "{\"text\":\"Cauldron Crafted\"}"}}, "q.purpleTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.purple_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Terracotta Dropped"}, "json_string": "{\"text\":\"Purple Terracotta Dropped\"}"}}, "u.orangeTulip": {"CriteriaName": "minecraft.used:minecraft.orange_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Tulip Used"}, "json_string": "{\"text\":\"Orange Tulip Used\"}"}}, "m.oakSapling": {"CriteriaName": "minecraft.mined:minecraft.oak_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sapling Mined"}, "json_string": "{\"text\":\"Oak Sapling Mined\"}"}}, "u.heartOfTheSea": {"CriteriaName": "minecraft.used:minecraft.heart_of_the_sea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Heart Of The Sea Used"}, "json_string": "{\"text\":\"Heart Of The Sea Used\"}"}}, "k.tnt": {"CriteriaName": "minecraft.killed:minecraft.tnt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "TNT Killed"}, "json_string": "{\"text\":\"TNT Killed\"}"}}, "b.seaLantern": {"CriteriaName": "minecraft.broken:minecraft.sea_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Lantern Broken"}, "json_string": "{\"text\":\"Sea Lantern Broken\"}"}}, "b.witherSkeletonSkull": {"CriteriaName": "minecraft.broken:minecraft.wither_skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Skeleton Skull Broken"}, "json_string": "{\"text\":\"Wither Skeleton Skull Broken\"}"}}, "u.cutCopper": {"CriteriaName": "minecraft.used:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Used"}, "json_string": "{\"text\":\"Cut Copper Used\"}"}}, "m.hopper": {"CriteriaName": "minecraft.mined:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Mined"}, "json_string": "{\"text\":\"Hopper Mined\"}"}}, "u.grayBed": {"CriteriaName": "minecraft.used:minecraft.gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Bed Used"}, "json_string": "{\"text\":\"Gray Bed Used\"}"}}, "q.mojangBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.mojang_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mojang Banner Pattern Dropped"}, "json_string": "{\"text\":\"Mojang Banner Pattern Dropped\"}"}}, "b.pinkShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Broken"}, "json_string": "{\"text\":\"Pink Shulker Box Broken\"}"}}, "b.spruceButton": {"CriteriaName": "minecraft.broken:minecraft.spruce_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Button Broken"}, "json_string": "{\"text\":\"Spruce Button Broken\"}"}}, "p.hopper": {"CriteriaName": "minecraft.picked_up:minecraft.hopper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Picked Up"}, "json_string": "{\"text\":\"Hopper Picked Up\"}"}}, "p.sprucePressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Spruce Pressure Plate Picked Up\"}"}}, "p.chest": {"CriteriaName": "minecraft.picked_up:minecraft.chest", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chest Picked Up"}, "json_string": "{\"text\":\"Chest Picked Up\"}"}}, "q.darkOakFenceGate": {"CriteriaName": "minecraft.dropped:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Dropped"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Dropped\"}"}}, "q.lightBlueCandle": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Dropped"}, "json_string": "{\"text\":\"Light Blue Candle Dropped\"}"}}, "c.spruceSapling": {"CriteriaName": "minecraft.crafted:minecraft.spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sapling Crafted"}, "json_string": "{\"text\":\"Spruce Sapling Crafted\"}"}}, "u.chainmailHelmet": {"CriteriaName": "minecraft.used:minecraft.chainmail_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Helmet Used"}, "json_string": "{\"text\":\"Chainmail Helmet Used\"}"}}, "u.stoneBrickWall": {"CriteriaName": "minecraft.used:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Used"}, "json_string": "{\"text\":\"Stone Brick Wall Used\"}"}}, "u.strippedAcaciaWood": {"CriteriaName": "minecraft.used:minecraft.stripped_acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Wood Used"}, "json_string": "{\"text\":\"Stripped Acacia Wood Used\"}"}}, "b.diorite": {"CriteriaName": "minecraft.broken:minecraft.diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Broken"}, "json_string": "{\"text\":\"Diorite Broken\"}"}}, "m.bookshelf": {"CriteriaName": "minecraft.mined:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Mined"}, "json_string": "{\"text\":\"Bookshelf Mined\"}"}}, "p.shears": {"CriteriaName": "minecraft.picked_up:minecraft.shears", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shears Picked Up"}, "json_string": "{\"text\":\"Shears Picked Up\"}"}}, "q.boneBlock": {"CriteriaName": "minecraft.dropped:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Dropped"}, "json_string": "{\"text\":\"Bone Block Dropped\"}"}}, "p.copperOre": {"CriteriaName": "minecraft.picked_up:minecraft.copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ore Picked Up"}, "json_string": "{\"text\":\"Copper Ore Picked Up\"}"}}, "p.structureBlock": {"CriteriaName": "minecraft.picked_up:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Picked Up"}, "json_string": "{\"text\":\"Structure Block Picked Up\"}"}}, "q.acaciaSlab": {"CriteriaName": "minecraft.dropped:minecraft.acacia_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Slab Dropped"}, "json_string": "{\"text\":\"Acacia Slab Dropped\"}"}}, "q.birchPlanks": {"CriteriaName": "minecraft.dropped:minecraft.birch_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Planks Dropped"}, "json_string": "{\"text\":\"Birch Planks Dropped\"}"}}, "b.netherGoldOre": {"CriteriaName": "minecraft.broken:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Broken"}, "json_string": "{\"text\":\"Nether Gold Ore Broken\"}"}}, "p.chippedAnvil": {"CriteriaName": "minecraft.picked_up:minecraft.chipped_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chipped Anvil Picked Up"}, "json_string": "{\"text\":\"Chipped Anvil Picked Up\"}"}}, "q.horseSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Spawn Egg Dropped"}, "json_string": "{\"text\":\"Horse Spawn Egg Dropped\"}"}}, "u.jungleButton": {"CriteriaName": "minecraft.used:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Used"}, "json_string": "{\"text\":\"Jungle Button Used\"}"}}, "c.chainmailHelmet": {"CriteriaName": "minecraft.crafted:minecraft.chainmail_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Helmet Crafted"}, "json_string": "{\"text\":\"Chainmail Helmet Crafted\"}"}}, "c.spiderSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.spider_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Spawn Egg Crafted"}, "json_string": "{\"text\":\"Spider Spawn Egg Crafted\"}"}}, "b.mediumAmethystBud": {"CriteriaName": "minecraft.broken:minecraft.medium_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Medium Amethyst Bud Broken"}, "json_string": "{\"text\":\"Medium Amethyst Bud Broken\"}"}}, "u.redCandle": {"CriteriaName": "minecraft.used:minecraft.red_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Candle Used"}, "json_string": "{\"text\":\"Red Candle Used\"}"}}, "b.glowLichen": {"CriteriaName": "minecraft.broken:minecraft.glow_lichen", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glow Lichen Broken"}, "json_string": "{\"text\":\"Glow Lichen Broken\"}"}}, "c.blazePowder": {"CriteriaName": "minecraft.crafted:minecraft.blaze_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Powder Crafted"}, "json_string": "{\"text\":\"Blaze Powder Crafted\"}"}}, "c.brownShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.brown_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Shulker Box Crafted"}, "json_string": "{\"text\":\"Brown Shulker Box Crafted\"}"}}, "b.lightGrayCarpet": {"CriteriaName": "minecraft.broken:minecraft.light_gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Carpet Broken"}, "json_string": "{\"text\":\"Light Gray Carpet Broken\"}"}}, "u.cyanDye": {"CriteriaName": "minecraft.used:minecraft.cyan_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Dye Used"}, "json_string": "{\"text\":\"Cyan Dye Used\"}"}}, "u.blueShulkerBox": {"CriteriaName": "minecraft.used:minecraft.blue_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Shulker Box Used"}, "json_string": "{\"text\":\"Blue Shulker Box Used\"}"}}, "c.orangeGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Crafted\"}"}}, "duraPing": {"CriteriaName": "trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Durability Ping"}, "json_string": "{\"text\":\"Durability Ping\"}"}}, "b.comparator": {"CriteriaName": "minecraft.broken:minecraft.comparator", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Comparator Broken"}, "json_string": "{\"text\":\"Comparator Broken\"}"}}, "p.cake": {"CriteriaName": "minecraft.picked_up:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Picked Up"}, "json_string": "{\"text\":\"Cake Picked Up\"}"}}, "q.cookedSalmon": {"CriteriaName": "minecraft.dropped:minecraft.cooked_salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Salmon Dropped"}, "json_string": "{\"text\":\"Cooked Salmon Dropped\"}"}}, "q.crimsonRoots": {"CriteriaName": "minecraft.dropped:minecraft.crimson_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Roots Dropped"}, "json_string": "{\"text\":\"Crimson Roots Dropped\"}"}}, "m.andesite": {"CriteriaName": "minecraft.mined:minecraft.andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Mined"}, "json_string": "{\"text\":\"Andesite Mined\"}"}}, "p.sporeBlossom": {"CriteriaName": "minecraft.picked_up:minecraft.spore_blossom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spore Blossom Picked Up"}, "json_string": "{\"text\":\"Spore Blossom Picked Up\"}"}}, "m.conduit": {"CriteriaName": "minecraft.mined:minecraft.conduit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Conduit Mined"}, "json_string": "{\"text\":\"Conduit Mined\"}"}}, "q.lavaBucket": {"CriteriaName": "minecraft.dropped:minecraft.lava_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Bucket Dropped"}, "json_string": "{\"text\":\"Lava Bucket Dropped\"}"}}, "m.cobblestone": {"CriteriaName": "minecraft.mined:minecraft.cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobblestone Mined"}, "json_string": "{\"text\":\"Cobblestone Mined\"}"}}, "m.acaciaPressurePlate": {"CriteriaName": "minecraft.mined:minecraft.acacia_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Pressure Plate Mined"}, "json_string": "{\"text\":\"Acacia Pressure Plate Mined\"}"}}, "c.spectralArrow": {"CriteriaName": "minecraft.crafted:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Crafted"}, "json_string": "{\"text\":\"Spectral Arrow Crafted\"}"}}, "m.birchSign": {"CriteriaName": "minecraft.mined:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Mined"}, "json_string": "{\"text\":\"Birch Sign Mined\"}"}}, "c.diamondHelmet": {"CriteriaName": "minecraft.crafted:minecraft.diamond_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Helmet Crafted"}, "json_string": "{\"text\":\"Diamond Helmet Crafted\"}"}}, "q.terracotta": {"CriteriaName": "minecraft.dropped:minecraft.terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Terracotta Dropped"}, "json_string": "{\"text\":\"Terracotta Dropped\"}"}}, "q.squidSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Spawn Egg Dropped"}, "json_string": "{\"text\":\"Squid Spawn Egg Dropped\"}"}}, "u.goldenChestplate": {"CriteriaName": "minecraft.used:minecraft.golden_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Chestplate Used"}, "json_string": "{\"text\":\"Golden Chestplate Used\"}"}}, "q.pinkGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Dropped\"}"}}, "u.waxedWeatheredCutCopperStairs": {"CriteriaName": "minecraft.used:minecraft.waxed_weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Stairs Used"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Stairs Used\"}"}}, "p.birchWood": {"CriteriaName": "minecraft.picked_up:minecraft.birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Wood Picked Up"}, "json_string": "{\"text\":\"Birch Wood Picked Up\"}"}}, "p.rabbitSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.rabbit_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Rabbit Spawn Egg Picked Up\"}"}}, "q.lightBlueConcrete": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Dropped"}, "json_string": "{\"text\":\"Light Blue Concrete Dropped\"}"}}, "c.amethystCluster": {"CriteriaName": "minecraft.crafted:minecraft.amethyst_cluster", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Amethyst Cluster Crafted"}, "json_string": "{\"text\":\"Amethyst Cluster Crafted\"}"}}, "u.crimsonFenceGate": {"CriteriaName": "minecraft.used:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Used"}, "json_string": "{\"text\":\"Crimson Fence Gate Used\"}"}}, "m.wheat": {"CriteriaName": "minecraft.mined:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Mined"}, "json_string": "{\"text\":\"Wheat Mined\"}"}}, "c.beef": {"CriteriaName": "minecraft.crafted:minecraft.beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beef Crafted"}, "json_string": "{\"text\":\"Beef Crafted\"}"}}, "q.repeatingCommandBlock": {"CriteriaName": "minecraft.dropped:minecraft.repeating_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeating Command Block Dropped"}, "json_string": "{\"text\":\"Repeating Command Block Dropped\"}"}}, "q.gildedBlackstone": {"CriteriaName": "minecraft.dropped:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Dropped"}, "json_string": "{\"text\":\"Gilded Blackstone Dropped\"}"}}, "q.orangeBanner": {"CriteriaName": "minecraft.dropped:minecraft.orange_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Banner Dropped"}, "json_string": "{\"text\":\"Orange Banner Dropped\"}"}}, "p.warpedButton": {"CriteriaName": "minecraft.picked_up:minecraft.warped_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Button Picked Up"}, "json_string": "{\"text\":\"Warped Button Picked Up\"}"}}, "p.netheriteAxe": {"CriteriaName": "minecraft.picked_up:minecraft.netherite_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Axe Picked Up"}, "json_string": "{\"text\":\"Netherite Axe Picked Up\"}"}}, "p.horseSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Horse Spawn Egg Picked Up\"}"}}, "p.blueConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Picked Up"}, "json_string": "{\"text\":\"Blue Concrete Picked Up\"}"}}, "b.sheepSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.sheep_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Spawn Egg Broken"}, "json_string": "{\"text\":\"Sheep Spawn Egg Broken\"}"}}, "c.cartographyTable": {"CriteriaName": "minecraft.crafted:minecraft.cartography_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cartography Table Crafted"}, "json_string": "{\"text\":\"Cartography Table Crafted\"}"}}, "q.quartzStairs": {"CriteriaName": "minecraft.dropped:minecraft.quartz_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Quartz Stairs Dropped"}, "json_string": "{\"text\":\"Quartz Stairs Dropped\"}"}}, "q.soulSand": {"CriteriaName": "minecraft.dropped:minecraft.soul_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Sand Dropped"}, "json_string": "{\"text\":\"Soul Sand Dropped\"}"}}, "p.sprucePlanks": {"CriteriaName": "minecraft.picked_up:minecraft.spruce_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Planks Picked Up"}, "json_string": "{\"text\":\"Spruce Planks Picked Up\"}"}}, "p.polishedAndesite": {"CriteriaName": "minecraft.picked_up:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Picked Up"}, "json_string": "{\"text\":\"Polished Andesite Picked Up\"}"}}, "p.brick": {"CriteriaName": "minecraft.picked_up:minecraft.brick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Picked Up"}, "json_string": "{\"text\":\"Brick Picked Up\"}"}}, "b.sunflower": {"CriteriaName": "minecraft.broken:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Broken"}, "json_string": "{\"text\":\"Sunflower Broken\"}"}}, "b.zombieHead": {"CriteriaName": "minecraft.broken:minecraft.zombie_head", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Head Broken"}, "json_string": "{\"text\":\"Zombie Head Broken\"}"}}, "b.diamondHelmet": {"CriteriaName": "minecraft.broken:minecraft.diamond_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Helmet Broken"}, "json_string": "{\"text\":\"Diamond Helmet Broken\"}"}}, "b.mossyCobblestone": {"CriteriaName": "minecraft.broken:minecraft.mossy_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Broken"}, "json_string": "{\"text\":\"Mossy Cobblestone Broken\"}"}}, "q.experienceBottle": {"CriteriaName": "minecraft.dropped:minecraft.experience_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Experience Bottle Dropped"}, "json_string": "{\"text\":\"Experience Bottle Dropped\"}"}}, "b.darkOakSlab": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Slab Broken"}, "json_string": "{\"text\":\"Dark Oak Slab Broken\"}"}}, "p.blackBanner": {"CriteriaName": "minecraft.picked_up:minecraft.black_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Banner Picked Up"}, "json_string": "{\"text\":\"Black Banner Picked Up\"}"}}, "g.raidTrigger": {"CriteriaName": "minecraft.custom:minecraft.raid_trigger", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raid Trigger"}, "json_string": "{\"text\":\"Raid Trigger\"}"}}, "q.minecart": {"CriteriaName": "minecraft.dropped:minecraft.minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minecart Dropped"}, "json_string": "{\"text\":\"Minecart Dropped\"}"}}, "m.chiseledNetherBricks": {"CriteriaName": "minecraft.mined:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Mined"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Mined\"}"}}, "b.darkOakPressurePlate": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Pressure Plate Broken"}, "json_string": "{\"text\":\"Dark Oak Pressure Plate Broken\"}"}}, "b.strippedCrimsonHyphae": {"CriteriaName": "minecraft.broken:minecraft.stripped_crimson_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Hyphae Broken"}, "json_string": "{\"text\":\"Stripped Crimson Hyphae Broken\"}"}}, "q.goldenSword": {"CriteriaName": "minecraft.dropped:minecraft.golden_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Sword Dropped"}, "json_string": "{\"text\":\"Golden Sword Dropped\"}"}}, "b.purpleGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.purple_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Purple Glazed Terracotta Broken\"}"}}, "u.endCrystal": {"CriteriaName": "minecraft.used:minecraft.end_crystal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Crystal Used"}, "json_string": "{\"text\":\"End Crystal Used\"}"}}, "d.ghast": {"CriteriaName": "minecraft.killed_by:minecraft.ghast", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Ghast"}, "json_string": "{\"text\":\"Killed by Ghast\"}"}}, "c.brownMushroomBlock": {"CriteriaName": "minecraft.crafted:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Crafted"}, "json_string": "{\"text\":\"Brown Mushroom Block Crafted\"}"}}, "c.lapisOre": {"CriteriaName": "minecraft.crafted:minecraft.lapis_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lapis Ore Crafted"}, "json_string": "{\"text\":\"Lapis Ore Crafted\"}"}}, "b.tippedArrow": {"CriteriaName": "minecraft.broken:minecraft.tipped_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tipped Arrow Broken"}, "json_string": "{\"text\":\"Tipped Arrow Broken\"}"}}, "p.junglePressurePlate": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Picked Up"}, "json_string": "{\"text\":\"Jungle Pressure Plate Picked Up\"}"}}, "u.magentaTerracotta": {"CriteriaName": "minecraft.used:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Used"}, "json_string": "{\"text\":\"Magenta Terracotta Used\"}"}}, "q.netheriteHoe": {"CriteriaName": "minecraft.dropped:minecraft.netherite_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Hoe Dropped"}, "json_string": "{\"text\":\"Netherite Hoe Dropped\"}"}}, "q.pillagerSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.pillager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Spawn Egg Dropped"}, "json_string": "{\"text\":\"Pillager Spawn Egg Dropped\"}"}}, "b.orangeTerracotta": {"CriteriaName": "minecraft.broken:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Broken"}, "json_string": "{\"text\":\"Orange Terracotta Broken\"}"}}, "b.spectralArrow": {"CriteriaName": "minecraft.broken:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Broken"}, "json_string": "{\"text\":\"Spectral Arrow Broken\"}"}}, "p.ironTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.iron_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Trapdoor Picked Up"}, "json_string": "{\"text\":\"Iron Trapdoor Picked Up\"}"}}, "u.bookshelf": {"CriteriaName": "minecraft.used:minecraft.bookshelf", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bookshelf Used"}, "json_string": "{\"text\":\"Bookshelf Used\"}"}}, "b.infestedStone": {"CriteriaName": "minecraft.broken:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Broken"}, "json_string": "{\"text\":\"Infested Stone Broken\"}"}}, "p.lightGrayWool": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Wool Picked Up"}, "json_string": "{\"text\":\"Light Gray Wool Picked Up\"}"}}, "b.beetrootSeeds": {"CriteriaName": "minecraft.broken:minecraft.beetroot_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Seeds Broken"}, "json_string": "{\"text\":\"Beetroot Seeds Broken\"}"}}, "q.graniteSlab": {"CriteriaName": "minecraft.dropped:minecraft.granite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Slab Dropped"}, "json_string": "{\"text\":\"Granite Slab Dropped\"}"}}, "q.codSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.cod_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cod Spawn Egg Dropped"}, "json_string": "{\"text\":\"Cod Spawn Egg Dropped\"}"}}, "m.calcite": {"CriteriaName": "minecraft.mined:minecraft.calcite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Calcite Mined"}, "json_string": "{\"text\":\"Calcite Mined\"}"}}, "u.packedIce": {"CriteriaName": "minecraft.used:minecraft.packed_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Packed Ice Used"}, "json_string": "{\"text\":\"Packed Ice Used\"}"}}, "m.slimeBlock": {"CriteriaName": "minecraft.mined:minecraft.slime_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Slime Block Mined"}, "json_string": "{\"text\":\"Slime Block Mined\"}"}}, "p.lightGrayTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Terracotta Picked Up"}, "json_string": "{\"text\":\"Light Gray Terracotta Picked Up\"}"}}, "q.grayDye": {"CriteriaName": "minecraft.dropped:minecraft.gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Dye Dropped"}, "json_string": "{\"text\":\"Gray Dye Dropped\"}"}}, "u.limeCarpet": {"CriteriaName": "minecraft.used:minecraft.lime_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Carpet Used"}, "json_string": "{\"text\":\"Lime Carpet Used\"}"}}, "b.lightGrayBanner": {"CriteriaName": "minecraft.broken:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Broken"}, "json_string": "{\"text\":\"Light Gray Banner Broken\"}"}}, "u.oakFenceGate": {"CriteriaName": "minecraft.used:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Used"}, "json_string": "{\"text\":\"Oak Fence Gate Used\"}"}}, "b.paper": {"CriteriaName": "minecraft.broken:minecraft.paper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Paper Broken"}, "json_string": "{\"text\":\"Paper Broken\"}"}}, "u.spruceDoor": {"CriteriaName": "minecraft.used:minecraft.spruce_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Door Used"}, "json_string": "{\"text\":\"Spruce Door Used\"}"}}, "c.infestedStone": {"CriteriaName": "minecraft.crafted:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Crafted"}, "json_string": "{\"text\":\"Infested Stone Crafted\"}"}}, "m.endPortal": {"CriteriaName": "minecraft.mined:minecraft.end_portal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Portal Mined"}, "json_string": "{\"text\":\"End Portal Mined\"}"}}, "c.strippedBirchWood": {"CriteriaName": "minecraft.crafted:minecraft.stripped_birch_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Birch Wood Crafted"}, "json_string": "{\"text\":\"Stripped Birch Wood Crafted\"}"}}, "c.orangeShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Crafted"}, "json_string": "{\"text\":\"Orange Shulker Box Crafted\"}"}}, "p.ironHelmet": {"CriteriaName": "minecraft.picked_up:minecraft.iron_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Helmet Picked Up"}, "json_string": "{\"text\":\"Iron Helmet Picked Up\"}"}}, "p.rawGold": {"CriteriaName": "minecraft.picked_up:minecraft.raw_gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Picked Up"}, "json_string": "{\"text\":\"Raw Gold Picked Up\"}"}}, "p.lightGrayGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Light Gray Glazed Terracotta Picked Up\"}"}}, "p.limeBed": {"CriteriaName": "minecraft.picked_up:minecraft.lime_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Bed Picked Up"}, "json_string": "{\"text\":\"Lime Bed Picked Up\"}"}}, "q.drownedSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.drowned_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Drowned Spawn Egg Dropped"}, "json_string": "{\"text\":\"Drowned Spawn Egg Dropped\"}"}}, "b.lightBlueConcrete": {"CriteriaName": "minecraft.broken:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Broken"}, "json_string": "{\"text\":\"Light Blue Concrete Broken\"}"}}, "b.piglinBruteSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.piglin_brute_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Spawn Egg Broken"}, "json_string": "{\"text\":\"Piglin Brute Spawn Egg Broken\"}"}}, "p.grassBlock": {"CriteriaName": "minecraft.picked_up:minecraft.grass_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grass Block Picked Up"}, "json_string": "{\"text\":\"Grass Block Picked Up\"}"}}, "c.zombieSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.zombie_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Spawn Egg Crafted"}, "json_string": "{\"text\":\"Zombie Spawn Egg Crafted\"}"}}, "cu.interactWithAnvil": {"CriteriaName": "minecraft.custom:minecraft.interact_with_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Anvil"}, "json_string": "{\"text\":\"Interact With Anvil\"}"}}, "u.grayBanner": {"CriteriaName": "minecraft.used:minecraft.gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Banner Used"}, "json_string": "{\"text\":\"Gray Banner Used\"}"}}, "c.musicDiscOtherside": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_otherside", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Otherside Crafted"}, "json_string": "{\"text\":\"Music Disc Otherside Crafted\"}"}}, "u.brownConcrete": {"CriteriaName": "minecraft.used:minecraft.brown_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Used"}, "json_string": "{\"text\":\"Brown Concrete Used\"}"}}, "c.spruceWood": {"CriteriaName": "minecraft.crafted:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Crafted"}, "json_string": "{\"text\":\"Spruce Wood Crafted\"}"}}, "u.purpleWool": {"CriteriaName": "minecraft.used:minecraft.purple_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wool Used"}, "json_string": "{\"text\":\"Purple Wool Used\"}"}}, "m.goldOre": {"CriteriaName": "minecraft.mined:minecraft.gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Ore Mined"}, "json_string": "{\"text\":\"Gold Ore Mined\"}"}}, "c.ironIngot": {"CriteriaName": "minecraft.crafted:minecraft.iron_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Ingot Crafted"}, "json_string": "{\"text\":\"Iron Ingot Crafted\"}"}}, "c.crimsonFungus": {"CriteriaName": "minecraft.crafted:minecraft.crimson_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fungus Crafted"}, "json_string": "{\"text\":\"Crimson Fungus Crafted\"}"}}, "b.blackStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Black Stained Glass Pane Broken\"}"}}, "q.clay": {"CriteriaName": "minecraft.dropped:minecraft.clay", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clay Dropped"}, "json_string": "{\"text\":\"Clay Dropped\"}"}}, "q.apple": {"CriteriaName": "minecraft.dropped:minecraft.apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Apple Dropped"}, "json_string": "{\"text\":\"Apple Dropped\"}"}}, "m.orangeConcrete": {"CriteriaName": "minecraft.mined:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Mined"}, "json_string": "{\"text\":\"Orange Concrete Mined\"}"}}, "p.cutRedSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.cut_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Red Sandstone Picked Up"}, "json_string": "{\"text\":\"Cut Red Sandstone Picked Up\"}"}}, "q.buddingAmethyst": {"CriteriaName": "minecraft.dropped:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Dropped"}, "json_string": "{\"text\":\"Budding Amethyst Dropped\"}"}}, "u.warpedWartBlock": {"CriteriaName": "minecraft.used:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Used"}, "json_string": "{\"text\":\"Warped Wart Block Used\"}"}}, "p.blackstoneStairs": {"CriteriaName": "minecraft.picked_up:minecraft.blackstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blackstone Stairs Picked Up"}, "json_string": "{\"text\":\"Blackstone Stairs Picked Up\"}"}}, "p.salmonBucket": {"CriteriaName": "minecraft.picked_up:minecraft.salmon_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Salmon Bucket Picked Up"}, "json_string": "{\"text\":\"Salmon Bucket Picked Up\"}"}}, "c.netherSprouts": {"CriteriaName": "minecraft.crafted:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Crafted"}, "json_string": "{\"text\":\"Nether Sprouts Crafted\"}"}}, "b.torch": {"CriteriaName": "minecraft.broken:minecraft.torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Torch Broken"}, "json_string": "{\"text\":\"Torch Broken\"}"}}, "m.polishedBlackstoneBricks": {"CriteriaName": "minecraft.mined:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Mined"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Mined\"}"}}, "u.deadFireCoral": {"CriteriaName": "minecraft.used:minecraft.dead_fire_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Fire Coral Used"}, "json_string": "{\"text\":\"Dead Fire Coral Used\"}"}}, "c.grayGlazedTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Crafted"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Crafted\"}"}}, "q.zombieSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.zombie_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Spawn Egg Dropped"}, "json_string": "{\"text\":\"Zombie Spawn Egg Dropped\"}"}}, "m.redNetherBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.red_nether_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Nether Brick Slab Mined"}, "json_string": "{\"text\":\"Red Nether Brick Slab Mined\"}"}}, "b.coal": {"CriteriaName": "minecraft.broken:minecraft.coal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Broken"}, "json_string": "{\"text\":\"Coal Broken\"}"}}, "c.deadBubbleCoralBlock": {"CriteriaName": "minecraft.crafted:minecraft.dead_bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Block Crafted"}, "json_string": "{\"text\":\"Dead Bubble Coral Block Crafted\"}"}}, "u.seagrass": {"CriteriaName": "minecraft.used:minecraft.seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Seagrass Used"}, "json_string": "{\"text\":\"Seagrass Used\"}"}}, "c.lightBlueTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Terracotta Crafted"}, "json_string": "{\"text\":\"Light Blue Terracotta Crafted\"}"}}, "g.interactWithSmoker": {"CriteriaName": "minecraft.custom:minecraft.interact_with_smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Smoker"}, "json_string": "{\"text\":\"Interact with Smoker\"}"}}, "u.yellowGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.yellow_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Glazed Terracotta Used"}, "json_string": "{\"text\":\"Yellow Glazed Terracotta Used\"}"}}, "b.grayGlazedTerracotta": {"CriteriaName": "minecraft.broken:minecraft.gray_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Glazed Terracotta Broken"}, "json_string": "{\"text\":\"Gray Glazed Terracotta Broken\"}"}}, "p.polishedBlackstoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Bricks Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Bricks Picked Up\"}"}}, "q.feather": {"CriteriaName": "minecraft.dropped:minecraft.feather", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Feather Dropped"}, "json_string": "{\"text\":\"Feather Dropped\"}"}}, "c.grayCandle": {"CriteriaName": "minecraft.crafted:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Crafted"}, "json_string": "{\"text\":\"Gray Candle Crafted\"}"}}, "c.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.crafted:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Crafted"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Crafted\"}"}}, "p.lectern": {"CriteriaName": "minecraft.picked_up:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Picked Up"}, "json_string": "{\"text\":\"Lectern Picked Up\"}"}}, "k.rabbit": {"CriteriaName": "minecraft.killed:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Killed"}, "json_string": "{\"text\":\"Rabbit Killed\"}"}}, "q.musicDiscMellohi": {"CriteriaName": "minecraft.dropped:minecraft.music_disc_mellohi", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mellohi Dropped"}, "json_string": "{\"text\":\"Music Disc Mellohi Dropped\"}"}}, "b.grayStainedGlass": {"CriteriaName": "minecraft.broken:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Broken"}, "json_string": "{\"text\":\"Gray Stained Glass Broken\"}"}}, "c.netherStar": {"CriteriaName": "minecraft.crafted:minecraft.nether_star", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Star Crafted"}, "json_string": "{\"text\":\"Nether Star Crafted\"}"}}, "u.piglinBannerPattern": {"CriteriaName": "minecraft.used:minecraft.piglin_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Banner Pattern Used"}, "json_string": "{\"text\":\"Piglin Banner Pattern Used\"}"}}, "m.magentaTerracotta": {"CriteriaName": "minecraft.mined:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Mined"}, "json_string": "{\"text\":\"Magenta Terracotta Mined\"}"}}, "u.yellowDye": {"CriteriaName": "minecraft.used:minecraft.yellow_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Dye Used"}, "json_string": "{\"text\":\"Yellow Dye Used\"}"}}, "q.stoneBrickWall": {"CriteriaName": "minecraft.dropped:minecraft.stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Wall Dropped"}, "json_string": "{\"text\":\"Stone Brick Wall Dropped\"}"}}, "cu.interactWithLoom": {"CriteriaName": "minecraft.custom:minecraft.interact_with_loom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Loom"}, "json_string": "{\"text\":\"Interact With Loom\"}"}}, "b.bakedPotato": {"CriteriaName": "minecraft.broken:minecraft.baked_potato", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Baked Potato Broken"}, "json_string": "{\"text\":\"Baked Potato Broken\"}"}}, "b.rabbitSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.rabbit_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Spawn Egg Broken"}, "json_string": "{\"text\":\"Rabbit Spawn Egg Broken\"}"}}, "b.yellowShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.yellow_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Shulker Box Broken"}, "json_string": "{\"text\":\"Yellow Shulker Box Broken\"}"}}, "p.deadTubeCoralBlock": {"CriteriaName": "minecraft.picked_up:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Picked Up"}, "json_string": "{\"text\":\"Dead Tube Coral Block Picked Up\"}"}}, "b.redTulip": {"CriteriaName": "minecraft.broken:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Broken"}, "json_string": "{\"text\":\"Red Tulip Broken\"}"}}, "c.musicDiscBlocks": {"CriteriaName": "minecraft.crafted:minecraft.music_disc_blocks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Blocks Crafted"}, "json_string": "{\"text\":\"Music Disc Blocks Crafted\"}"}}, "g.interactWithFurnace": {"CriteriaName": "minecraft.custom:minecraft.interact_with_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact with Furnace"}, "json_string": "{\"text\":\"Interact with Furnace\"}"}}, "p.copperIngot": {"CriteriaName": "minecraft.picked_up:minecraft.copper_ingot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Ingot Picked Up"}, "json_string": "{\"text\":\"Copper Ingot Picked Up\"}"}}, "b.blackConcrete": {"CriteriaName": "minecraft.broken:minecraft.black_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Concrete Broken"}, "json_string": "{\"text\":\"Black Concrete Broken\"}"}}, "c.warpedWartBlock": {"CriteriaName": "minecraft.crafted:minecraft.warped_wart_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Wart Block Crafted"}, "json_string": "{\"text\":\"Warped Wart Block Crafted\"}"}}, "p.largeAmethystBud": {"CriteriaName": "minecraft.picked_up:minecraft.large_amethyst_bud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Amethyst Bud Picked Up"}, "json_string": "{\"text\":\"Large Amethyst Bud Picked Up\"}"}}, "u.lightGrayBanner": {"CriteriaName": "minecraft.used:minecraft.light_gray_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Banner Used"}, "json_string": "{\"text\":\"Light Gray Banner Used\"}"}}, "p.smoothSandstone": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Picked Up"}, "json_string": "{\"text\":\"Smooth Sandstone Picked Up\"}"}}, "p.ironChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.iron_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Chestplate Picked Up"}, "json_string": "{\"text\":\"Iron Chestplate Picked Up\"}"}}, "c.deepslateDiamondOre": {"CriteriaName": "minecraft.crafted:minecraft.deepslate_diamond_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Diamond Ore Crafted"}, "json_string": "{\"text\":\"Deepslate Diamond Ore Crafted\"}"}}, "b.strippedWarpedHyphae": {"CriteriaName": "minecraft.broken:minecraft.stripped_warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Warped Hyphae Broken"}, "json_string": "{\"text\":\"Stripped Warped Hyphae Broken\"}"}}, "m.hornCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.horn_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Horn Coral Wall Fan Mined\"}"}}, "u.ironDoor": {"CriteriaName": "minecraft.used:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Used"}, "json_string": "{\"text\":\"Iron Door Used\"}"}}, "m.hayBlock": {"CriteriaName": "minecraft.mined:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Mined"}, "json_string": "{\"text\":\"Hay Block Mined\"}"}}, "q.weepingVines": {"CriteriaName": "minecraft.dropped:minecraft.weeping_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weeping Vines Dropped"}, "json_string": "{\"text\":\"Weeping Vines Dropped\"}"}}, "c.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.crafted:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Crafted"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Crafted\"}"}}, "q.melonSeeds": {"CriteriaName": "minecraft.dropped:minecraft.melon_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Seeds Dropped"}, "json_string": "{\"text\":\"Melon Seeds Dropped\"}"}}, "q.orangeDye": {"CriteriaName": "minecraft.dropped:minecraft.orange_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Dye Dropped"}, "json_string": "{\"text\":\"Orange Dye Dropped\"}"}}, "m.redCarpet": {"CriteriaName": "minecraft.mined:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Mined"}, "json_string": "{\"text\":\"Red Carpet Mined\"}"}}, "k.villager": {"CriteriaName": "minecraft.killed:minecraft.villager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Killed"}, "json_string": "{\"text\":\"Villager Killed\"}"}}, "u.hangingRoots": {"CriteriaName": "minecraft.used:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Used"}, "json_string": "{\"text\":\"Hanging Roots Used\"}"}}, "p.blueWool": {"CriteriaName": "minecraft.picked_up:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Picked Up"}, "json_string": "{\"text\":\"Blue Wool Picked Up\"}"}}, "q.smoothQuartzSlab": {"CriteriaName": "minecraft.dropped:minecraft.smooth_quartz_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Slab Dropped"}, "json_string": "{\"text\":\"Smooth Quartz Slab Dropped\"}"}}, "c.blueDye": {"CriteriaName": "minecraft.crafted:minecraft.blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Dye Crafted"}, "json_string": "{\"text\":\"Blue Dye Crafted\"}"}}, "p.ladder": {"CriteriaName": "minecraft.picked_up:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Picked Up"}, "json_string": "{\"text\":\"Ladder Picked Up\"}"}}, "b.woodenHoe": {"CriteriaName": "minecraft.broken:minecraft.wooden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wooden Hoe Broken"}, "json_string": "{\"text\":\"Wooden Hoe Broken\"}"}}, "u.cobbledDeepslateStairs": {"CriteriaName": "minecraft.used:minecraft.cobbled_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Stairs Used"}, "json_string": "{\"text\":\"Cobbled Deepslate Stairs Used\"}"}}, "m.darkOakDoor": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Door Mined"}, "json_string": "{\"text\":\"Dark Oak Door Mined\"}"}}, "b.jungleButton": {"CriteriaName": "minecraft.broken:minecraft.jungle_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Button Broken"}, "json_string": "{\"text\":\"Jungle Button Broken\"}"}}, "c.wolfSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.wolf_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wolf Spawn Egg Crafted"}, "json_string": "{\"text\":\"Wolf Spawn Egg Crafted\"}"}}, "b.rawIronBlock": {"CriteriaName": "minecraft.broken:minecraft.raw_iron_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Block Broken"}, "json_string": "{\"text\":\"Raw Iron Block Broken\"}"}}, "p.chicken": {"CriteriaName": "minecraft.picked_up:minecraft.chicken", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chicken Picked Up"}, "json_string": "{\"text\":\"Chicken Picked Up\"}"}}, "m.blackWool": {"CriteriaName": "minecraft.mined:minecraft.black_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Wool Mined"}, "json_string": "{\"text\":\"Black Wool Mined\"}"}}, "c.cyanStainedGlassPane": {"CriteriaName": "minecraft.crafted:minecraft.cyan_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Pane Crafted"}, "json_string": "{\"text\":\"Cyan Stained Glass Pane Crafted\"}"}}, "m.waxedExposedCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.waxed_exposed_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Stairs Mined\"}"}}, "u.greenWool": {"CriteriaName": "minecraft.used:minecraft.green_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Wool Used"}, "json_string": "{\"text\":\"Green Wool Used\"}"}}, "m.cobbledDeepslate": {"CriteriaName": "minecraft.mined:minecraft.cobbled_deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Mined"}, "json_string": "{\"text\":\"Cobbled Deepslate Mined\"}"}}, "q.blazeRod": {"CriteriaName": "minecraft.dropped:minecraft.blaze_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Rod Dropped"}, "json_string": "{\"text\":\"Blaze Rod Dropped\"}"}}, "m.crimsonFenceGate": {"CriteriaName": "minecraft.mined:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Mined"}, "json_string": "{\"text\":\"Crimson Fence Gate Mined\"}"}}, "b.stoneAxe": {"CriteriaName": "minecraft.broken:minecraft.stone_axe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Axe Broken"}, "json_string": "{\"text\":\"Stone Axe Broken\"}"}}, "p.seaPickle": {"CriteriaName": "minecraft.picked_up:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Picked Up"}, "json_string": "{\"text\":\"Sea Pickle Picked Up\"}"}}, "b.brownMushroomBlock": {"CriteriaName": "minecraft.broken:minecraft.brown_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Block Broken"}, "json_string": "{\"text\":\"Brown Mushroom Block Broken\"}"}}, "u.spiderEye": {"CriteriaName": "minecraft.used:minecraft.spider_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spider Eye Used"}, "json_string": "{\"text\":\"Spider Eye Used\"}"}}, "m.blastFurnace": {"CriteriaName": "minecraft.mined:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Mined"}, "json_string": "{\"text\":\"Blast Furnace Mined\"}"}}, "q.stoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Bricks Dropped"}, "json_string": "{\"text\":\"Stone Bricks Dropped\"}"}}, "b.spruceBoat": {"CriteriaName": "minecraft.broken:minecraft.spruce_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Boat Broken"}, "json_string": "{\"text\":\"Spruce Boat Broken\"}"}}, "b.deepslateCoalOre": {"CriteriaName": "minecraft.broken:minecraft.deepslate_coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Coal Ore Broken"}, "json_string": "{\"text\":\"Deepslate Coal Ore Broken\"}"}}, "m.lightBlueConcrete": {"CriteriaName": "minecraft.mined:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Mined"}, "json_string": "{\"text\":\"Light Blue Concrete Mined\"}"}}, "c.chiseledRedSandstone": {"CriteriaName": "minecraft.crafted:minecraft.chiseled_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Red Sandstone Crafted"}, "json_string": "{\"text\":\"Chiseled Red Sandstone Crafted\"}"}}, "u.ice": {"CriteriaName": "minecraft.used:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Used"}, "json_string": "{\"text\":\"Ice Used\"}"}}, "p.writtenBook": {"CriteriaName": "minecraft.picked_up:minecraft.written_book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Written Book Picked Up"}, "json_string": "{\"text\":\"Written Book Picked Up\"}"}}, "c.bricks": {"CriteriaName": "minecraft.crafted:minecraft.bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bricks Crafted"}, "json_string": "{\"text\":\"Bricks Crafted\"}"}}, "q.globeBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.globe_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Globe Banner Pattern Dropped"}, "json_string": "{\"text\":\"Globe Banner Pattern Dropped\"}"}}, "c.waxedOxidizedCopper": {"CriteriaName": "minecraft.crafted:minecraft.waxed_oxidized_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Copper Crafted"}, "json_string": "{\"text\":\"Waxed Oxidized Copper Crafted\"}"}}, "p.deepslateGoldOre": {"CriteriaName": "minecraft.picked_up:minecraft.deepslate_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Gold Ore Picked Up"}, "json_string": "{\"text\":\"Deepslate Gold Ore Picked Up\"}"}}, "c.redSandstoneStairs": {"CriteriaName": "minecraft.crafted:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Crafted"}, "json_string": "{\"text\":\"Red Sandstone Stairs Crafted\"}"}}, "m.azaleaLeaves": {"CriteriaName": "minecraft.mined:minecraft.azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Leaves Mined"}, "json_string": "{\"text\":\"Azalea Leaves Mined\"}"}}, "b.musicDiscPigstep": {"CriteriaName": "minecraft.broken:minecraft.music_disc_pigstep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Pigstep Broken"}, "json_string": "{\"text\":\"Music Disc Pigstep Broken\"}"}}, "p.respawnAnchor": {"CriteriaName": "minecraft.picked_up:minecraft.respawn_anchor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Respawn Anchor Picked Up"}, "json_string": "{\"text\":\"Respawn Anchor Picked Up\"}"}}, "q.netherQuartzOre": {"CriteriaName": "minecraft.dropped:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Dropped"}, "json_string": "{\"text\":\"Nether Quartz Ore Dropped\"}"}}, "m.greenConcrete": {"CriteriaName": "minecraft.mined:minecraft.green_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Concrete Mined"}, "json_string": "{\"text\":\"Green Concrete Mined\"}"}}, "d.goat": {"CriteriaName": "minecraft.killed_by:minecraft.goat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Goat"}, "json_string": "{\"text\":\"Killed by Goat\"}"}}, "b.crackedNetherBricks": {"CriteriaName": "minecraft.broken:minecraft.cracked_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Nether Bricks Broken"}, "json_string": "{\"text\":\"Cracked Nether Bricks Broken\"}"}}, "b.smoothStone": {"CriteriaName": "minecraft.broken:minecraft.smooth_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Stone Broken"}, "json_string": "{\"text\":\"Smooth Stone Broken\"}"}}, "p.cyanConcrete": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Picked Up"}, "json_string": "{\"text\":\"Cyan Concrete Picked Up\"}"}}, "q.seaPickle": {"CriteriaName": "minecraft.dropped:minecraft.sea_pickle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sea Pickle Dropped"}, "json_string": "{\"text\":\"Sea Pickle Dropped\"}"}}, "c.hayBlock": {"CriteriaName": "minecraft.crafted:minecraft.hay_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hay Block Crafted"}, "json_string": "{\"text\":\"Hay Block Crafted\"}"}}, "m.magentaBanner": {"CriteriaName": "minecraft.mined:minecraft.magenta_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Banner Mined"}, "json_string": "{\"text\":\"Magenta Banner Mined\"}"}}, "p.brownMushroom": {"CriteriaName": "minecraft.picked_up:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Picked Up"}, "json_string": "{\"text\":\"Brown Mushroom Picked Up\"}"}}, "b.batSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.bat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Spawn Egg Broken"}, "json_string": "{\"text\":\"Bat Spawn Egg Broken\"}"}}, "c.beehive": {"CriteriaName": "minecraft.crafted:minecraft.beehive", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beehive Crafted"}, "json_string": "{\"text\":\"Beehive Crafted\"}"}}, "c.fireCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.fire_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fire Coral Fan Crafted"}, "json_string": "{\"text\":\"Fire Coral Fan Crafted\"}"}}, "m.floweringAzaleaLeaves": {"CriteriaName": "minecraft.mined:minecraft.flowering_azalea_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flowering Azalea Leaves Mined"}, "json_string": "{\"text\":\"Flowering Azalea Leaves Mined\"}"}}, "c.blazeSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.blaze_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Spawn Egg Crafted"}, "json_string": "{\"text\":\"Blaze Spawn Egg Crafted\"}"}}, "c.lightBlueWool": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Wool Crafted"}, "json_string": "{\"text\":\"Light Blue Wool Crafted\"}"}}, "u.detectorRail": {"CriteriaName": "minecraft.used:minecraft.detector_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Detector Rail Used"}, "json_string": "{\"text\":\"Detector Rail Used\"}"}}, "c.rabbitSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.rabbit_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Spawn Egg Crafted"}, "json_string": "{\"text\":\"Rabbit Spawn Egg Crafted\"}"}}, "c.redBanner": {"CriteriaName": "minecraft.crafted:minecraft.red_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Banner Crafted"}, "json_string": "{\"text\":\"Red Banner Crafted\"}"}}, "c.redSand": {"CriteriaName": "minecraft.crafted:minecraft.red_sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sand Crafted"}, "json_string": "{\"text\":\"Red Sand Crafted\"}"}}, "b.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.broken:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Broken"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Broken\"}"}}, "u.flowerPot": {"CriteriaName": "minecraft.used:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Used"}, "json_string": "{\"text\":\"Flower Pot Used\"}"}}, "u.polishedDeepslateStairs": {"CriteriaName": "minecraft.used:minecraft.polished_deepslate_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Deepslate Stairs Used"}, "json_string": "{\"text\":\"Polished Deepslate Stairs Used\"}"}}, "q.grayCandle": {"CriteriaName": "minecraft.dropped:minecraft.gray_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Candle Dropped"}, "json_string": "{\"text\":\"Gray Candle Dropped\"}"}}, "m.redMushroom": {"CriteriaName": "minecraft.mined:minecraft.red_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Mined"}, "json_string": "{\"text\":\"Red Mushroom Mined\"}"}}, "q.darkPrismarineStairs": {"CriteriaName": "minecraft.dropped:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Dropped"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Dropped\"}"}}, "p.bowl": {"CriteriaName": "minecraft.picked_up:minecraft.bowl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bowl Picked Up"}, "json_string": "{\"text\":\"Bowl Picked Up\"}"}}, "p.redDye": {"CriteriaName": "minecraft.picked_up:minecraft.red_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Dye Picked Up"}, "json_string": "{\"text\":\"Red Dye Picked Up\"}"}}, "m.lava": {"CriteriaName": "minecraft.mined:minecraft.lava", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lava Mined"}, "json_string": "{\"text\":\"Lava Mined\"}"}}, "q.brainCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Dropped"}, "json_string": "{\"text\":\"Brain Coral Fan Dropped\"}"}}, "b.furnaceMinecart": {"CriteriaName": "minecraft.broken:minecraft.furnace_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Furnace Minecart Broken"}, "json_string": "{\"text\":\"Furnace Minecart Broken\"}"}}, "cu.killedByBlueTeam": {"CriteriaName": "killedByTeam.blue", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Blue Team"}, "json_string": "{\"text\":\"Killed by Blue Team\"}"}}, "b.ice": {"CriteriaName": "minecraft.broken:minecraft.ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ice Broken"}, "json_string": "{\"text\":\"Ice Broken\"}"}}, "c.strippedSpruceLog": {"CriteriaName": "minecraft.crafted:minecraft.stripped_spruce_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Spruce Log Crafted"}, "json_string": "{\"text\":\"Stripped Spruce Log Crafted\"}"}}, "m.redSandstoneWall": {"CriteriaName": "minecraft.mined:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Mined"}, "json_string": "{\"text\":\"Red Sandstone Wall Mined\"}"}}, "q.splashPotion": {"CriteriaName": "minecraft.dropped:minecraft.splash_potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Splash Potion Dropped"}, "json_string": "{\"text\":\"Splash Potion Dropped\"}"}}, "c.lever": {"CriteriaName": "minecraft.crafted:minecraft.lever", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lever Crafted"}, "json_string": "{\"text\":\"Lever Crafted\"}"}}, "p.prismarineBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Prismarine Brick Stairs Picked Up\"}"}}, "c.potion": {"CriteriaName": "minecraft.crafted:minecraft.potion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potion Crafted"}, "json_string": "{\"text\":\"Potion Crafted\"}"}}, "p.acaciaTrapdoor": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Picked Up"}, "json_string": "{\"text\":\"Acacia Trapdoor Picked Up\"}"}}, "u.mushroomStem": {"CriteriaName": "minecraft.used:minecraft.mushroom_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stem Used"}, "json_string": "{\"text\":\"Mushroom Stem Used\"}"}}, "b.kelp": {"CriteriaName": "minecraft.broken:minecraft.kelp", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Kelp Broken"}, "json_string": "{\"text\":\"Kelp Broken\"}"}}, "u.mushroomStew": {"CriteriaName": "minecraft.used:minecraft.mushroom_stew", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mushroom Stew Used"}, "json_string": "{\"text\":\"Mushroom Stew Used\"}"}}, "m.campfire": {"CriteriaName": "minecraft.mined:minecraft.campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Campfire Mined"}, "json_string": "{\"text\":\"Campfire Mined\"}"}}, "c.flowerBannerPattern": {"CriteriaName": "minecraft.crafted:minecraft.flower_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Banner Pattern Crafted"}, "json_string": "{\"text\":\"Flower Banner Pattern Crafted\"}"}}, "p.crimsonStem": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stem Picked Up"}, "json_string": "{\"text\":\"Crimson Stem Picked Up\"}"}}, "q.bubbleCoral": {"CriteriaName": "minecraft.dropped:minecraft.bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Dropped"}, "json_string": "{\"text\":\"Bubble Coral Dropped\"}"}}, "q.greenCarpet": {"CriteriaName": "minecraft.dropped:minecraft.green_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Carpet Dropped"}, "json_string": "{\"text\":\"Green Carpet Dropped\"}"}}, "b.magentaStainedGlassPane": {"CriteriaName": "minecraft.broken:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Broken"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Broken\"}"}}, "u.limeCandle": {"CriteriaName": "minecraft.used:minecraft.lime_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Candle Used"}, "json_string": "{\"text\":\"Lime Candle Used\"}"}}, "p.redMushroomBlock": {"CriteriaName": "minecraft.picked_up:minecraft.red_mushroom_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Mushroom Block Picked Up"}, "json_string": "{\"text\":\"Red Mushroom Block Picked Up\"}"}}, "p.vine": {"CriteriaName": "minecraft.picked_up:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Picked Up"}, "json_string": "{\"text\":\"Vine Picked Up\"}"}}, "c.goatSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.goat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat Spawn Egg Crafted"}, "json_string": "{\"text\":\"Goat Spawn Egg Crafted\"}"}}, "q.netherrack": {"CriteriaName": "minecraft.dropped:minecraft.netherrack", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherrack Dropped"}, "json_string": "{\"text\":\"Netherrack Dropped\"}"}}, "q.muleSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.mule_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mule Spawn Egg Dropped"}, "json_string": "{\"text\":\"Mule Spawn Egg Dropped\"}"}}, "q.deepslate": {"CriteriaName": "minecraft.dropped:minecraft.deepslate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Dropped"}, "json_string": "{\"text\":\"Deepslate Dropped\"}"}}, "b.redSandstone": {"CriteriaName": "minecraft.broken:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Broken"}, "json_string": "{\"text\":\"Red Sandstone Broken\"}"}}, "u.brainCoral": {"CriteriaName": "minecraft.used:minecraft.brain_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Used"}, "json_string": "{\"text\":\"Brain Coral Used\"}"}}, "m.soulCampfire": {"CriteriaName": "minecraft.mined:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Mined"}, "json_string": "{\"text\":\"Soul Campfire Mined\"}"}}, "m.yellowStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Mined"}, "json_string": "{\"text\":\"Yellow Stained Glass Mined\"}"}}, "q.birchBoat": {"CriteriaName": "minecraft.dropped:minecraft.birch_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Boat Dropped"}, "json_string": "{\"text\":\"Birch Boat Dropped\"}"}}, "p.oxidizedCutCopperSlab": {"CriteriaName": "minecraft.picked_up:minecraft.oxidized_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Slab Picked Up"}, "json_string": "{\"text\":\"Oxidized Cut Copper Slab Picked Up\"}"}}, "p.cobbledDeepslateSlab": {"CriteriaName": "minecraft.picked_up:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Picked Up"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Picked Up\"}"}}, "b.diamondChestplate": {"CriteriaName": "minecraft.broken:minecraft.diamond_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Chestplate Broken"}, "json_string": "{\"text\":\"Diamond Chestplate Broken\"}"}}, "u.commandBlockMinecart": {"CriteriaName": "minecraft.used:minecraft.command_block_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Command Block Minecart Used"}, "json_string": "{\"text\":\"Command Block Minecart Used\"}"}}, "m.activatorRail": {"CriteriaName": "minecraft.mined:minecraft.activator_rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Activator Rail Mined"}, "json_string": "{\"text\":\"Activator Rail Mined\"}"}}, "p.axolotlBucket": {"CriteriaName": "minecraft.picked_up:minecraft.axolotl_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Bucket Picked Up"}, "json_string": "{\"text\":\"Axolotl Bucket Picked Up\"}"}}, "rc_minutes": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Minutes"}, "json_string": "{\"text\":\"Minutes\"}"}}, "c.andesiteSlab": {"CriteriaName": "minecraft.crafted:minecraft.andesite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Slab Crafted"}, "json_string": "{\"text\":\"Andesite Slab Crafted\"}"}}, "p.polishedBlackstoneBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Brick Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Brick Stairs Picked Up\"}"}}, "q.spyglass": {"CriteriaName": "minecraft.dropped:minecraft.spyglass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spyglass Dropped"}, "json_string": "{\"text\":\"Spyglass Dropped\"}"}}, "c.clock": {"CriteriaName": "minecraft.crafted:minecraft.clock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Clock Crafted"}, "json_string": "{\"text\":\"Clock Crafted\"}"}}, "u.stone": {"CriteriaName": "minecraft.used:minecraft.stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Used"}, "json_string": "{\"text\":\"Stone Used\"}"}}, "b.magentaCandle": {"CriteriaName": "minecraft.broken:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Broken"}, "json_string": "{\"text\":\"Magenta Candle Broken\"}"}}, "k.goat": {"CriteriaName": "minecraft.killed:minecraft.goat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Goat"}, "json_string": "{\"text\":\"Goat\"}"}}, "p.acaciaLeaves": {"CriteriaName": "minecraft.picked_up:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Picked Up"}, "json_string": "{\"text\":\"Acacia Leaves Picked Up\"}"}}, "q.barrier": {"CriteriaName": "minecraft.dropped:minecraft.barrier", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Barrier Dropped"}, "json_string": "{\"text\":\"Barrier Dropped\"}"}}, "q.netherSprouts": {"CriteriaName": "minecraft.dropped:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Dropped"}, "json_string": "{\"text\":\"Nether Sprouts Dropped\"}"}}, "c.oakSign": {"CriteriaName": "minecraft.crafted:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Crafted"}, "json_string": "{\"text\":\"Oak Sign Crafted\"}"}}, "m.pottedFern": {"CriteriaName": "minecraft.mined:minecraft.potted_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Fern Mined"}, "json_string": "{\"text\":\"Potted Fern Mined\"}"}}, "q.jungleFence": {"CriteriaName": "minecraft.dropped:minecraft.jungle_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Dropped"}, "json_string": "{\"text\":\"Jungle Fence Dropped\"}"}}, "q.smoothSandstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.smooth_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Stairs Dropped"}, "json_string": "{\"text\":\"Smooth Sandstone Stairs Dropped\"}"}}, "m.purpleWallBanner": {"CriteriaName": "minecraft.mined:minecraft.purple_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Wall Banner Mined"}, "json_string": "{\"text\":\"Purple Wall Banner Mined\"}"}}, "u.warpedPlanks": {"CriteriaName": "minecraft.used:minecraft.warped_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Planks Used"}, "json_string": "{\"text\":\"Warped Planks Used\"}"}}, "u.darkOakLeaves": {"CriteriaName": "minecraft.used:minecraft.dark_oak_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Leaves Used"}, "json_string": "{\"text\":\"Dark Oak Leaves Used\"}"}}, "u.netherBrickStairs": {"CriteriaName": "minecraft.used:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Used"}, "json_string": "{\"text\":\"Nether Brick Stairs Used\"}"}}, "b.pillagerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.pillager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Spawn Egg Broken"}, "json_string": "{\"text\":\"Pillager Spawn Egg Broken\"}"}}, "q.cutSandstone": {"CriteriaName": "minecraft.dropped:minecraft.cut_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Sandstone Dropped"}, "json_string": "{\"text\":\"Cut Sandstone Dropped\"}"}}, "b.stoneStairs": {"CriteriaName": "minecraft.broken:minecraft.stone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Stairs Broken"}, "json_string": "{\"text\":\"Stone Stairs Broken\"}"}}, "c.stoneHoe": {"CriteriaName": "minecraft.crafted:minecraft.stone_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Hoe Crafted"}, "json_string": "{\"text\":\"Stone Hoe Crafted\"}"}}, "d.fireball": {"CriteriaName": "minecraft.killed_by:minecraft.fireball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Fireball"}, "json_string": "{\"text\":\"Killed by Fireball\"}"}}, "c.redstoneBlock": {"CriteriaName": "minecraft.crafted:minecraft.redstone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Block Crafted"}, "json_string": "{\"text\":\"Redstone Block Crafted\"}"}}, "q.endStoneBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Dropped"}, "json_string": "{\"text\":\"End Stone Brick Stairs Dropped\"}"}}, "m.blackCandleCake": {"CriteriaName": "minecraft.mined:minecraft.black_candle_cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Candle Cake Mined"}, "json_string": "{\"text\":\"Black Candle Cake Mined\"}"}}, "m.pottedBirchSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Birch Sapling Mined"}, "json_string": "{\"text\":\"Potted Birch Sapling Mined\"}"}}, "b.oakFenceGate": {"CriteriaName": "minecraft.broken:minecraft.oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Fence Gate Broken"}, "json_string": "{\"text\":\"Oak Fence Gate Broken\"}"}}, "p.pinkStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.pink_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Stained Glass Picked Up"}, "json_string": "{\"text\":\"Pink Stained Glass Picked Up\"}"}}, "d.salmon": {"CriteriaName": "minecraft.killed_by:minecraft.salmon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Salmon"}, "json_string": "{\"text\":\"Killed by Salmon\"}"}}, "q.oakSlab": {"CriteriaName": "minecraft.dropped:minecraft.oak_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Slab Dropped"}, "json_string": "{\"text\":\"Oak Slab Dropped\"}"}}, "b.gildedBlackstone": {"CriteriaName": "minecraft.broken:minecraft.gilded_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gilded Blackstone Broken"}, "json_string": "{\"text\":\"Gilded Blackstone Broken\"}"}}, "m.cobbledDeepslateSlab": {"CriteriaName": "minecraft.mined:minecraft.cobbled_deepslate_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cobbled Deepslate Slab Mined"}, "json_string": "{\"text\":\"Cobbled Deepslate Slab Mined\"}"}}, "b.darkOakFenceGate": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Gate Broken"}, "json_string": "{\"text\":\"Dark Oak Fence Gate Broken\"}"}}, "c.lodestone": {"CriteriaName": "minecraft.crafted:minecraft.lodestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lodestone Crafted"}, "json_string": "{\"text\":\"Lodestone Crafted\"}"}}, "p.limeGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.lime_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Lime Glazed Terracotta Picked Up\"}"}}, "q.waxedWeatheredCutCopperSlab": {"CriteriaName": "minecraft.dropped:minecraft.waxed_weathered_cut_copper_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Weathered Cut Copper Slab Dropped"}, "json_string": "{\"text\":\"Waxed Weathered Cut Copper Slab Dropped\"}"}}, "cu.killedByGreenTeam": {"CriteriaName": "killedByTeam.green", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Green Team"}, "json_string": "{\"text\":\"Killed by Green Team\"}"}}, "c.leatherChestplate": {"CriteriaName": "minecraft.crafted:minecraft.leather_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Chestplate Crafted"}, "json_string": "{\"text\":\"Leather Chestplate Crafted\"}"}}, "p.blastFurnace": {"CriteriaName": "minecraft.picked_up:minecraft.blast_furnace", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blast Furnace Picked Up"}, "json_string": "{\"text\":\"Blast Furnace Picked Up\"}"}}, "c.netheritePickaxe": {"CriteriaName": "minecraft.crafted:minecraft.netherite_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Pickaxe Crafted"}, "json_string": "{\"text\":\"Netherite Pickaxe Crafted\"}"}}, "b.lightGrayShulkerBox": {"CriteriaName": "minecraft.broken:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Broken"}, "json_string": "{\"text\":\"Light Gray Shulker Box Broken\"}"}}, "b.vexSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.vex_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vex Spawn Egg Broken"}, "json_string": "{\"text\":\"Vex Spawn Egg Broken\"}"}}, "m.tallSeagrass": {"CriteriaName": "minecraft.mined:minecraft.tall_seagrass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Seagrass Mined"}, "json_string": "{\"text\":\"Tall Seagrass Mined\"}"}}, "q.deepslateTileWall": {"CriteriaName": "minecraft.dropped:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Dropped"}, "json_string": "{\"text\":\"Deepslate Tile Wall Dropped\"}"}}, "u.netherQuartzOre": {"CriteriaName": "minecraft.used:minecraft.nether_quartz_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Quartz Ore Used"}, "json_string": "{\"text\":\"Nether Quartz Ore Used\"}"}}, "p.tuff": {"CriteriaName": "minecraft.picked_up:minecraft.tuff", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tuff Picked Up"}, "json_string": "{\"text\":\"Tuff Picked Up\"}"}}, "p.orangeCandle": {"CriteriaName": "minecraft.picked_up:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Picked Up"}, "json_string": "{\"text\":\"Orange Candle Picked Up\"}"}}, "q.goldenLeggings": {"CriteriaName": "minecraft.dropped:minecraft.golden_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Leggings Dropped"}, "json_string": "{\"text\":\"Golden Leggings Dropped\"}"}}, "m.sandstoneWall": {"CriteriaName": "minecraft.mined:minecraft.sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sandstone Wall Mined"}, "json_string": "{\"text\":\"Sandstone Wall Mined\"}"}}, "m.oxidizedCutCopperStairs": {"CriteriaName": "minecraft.mined:minecraft.oxidized_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Stairs Mined"}, "json_string": "{\"text\":\"Oxidized Cut Copper Stairs Mined\"}"}}, "b.redWool": {"CriteriaName": "minecraft.broken:minecraft.red_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Wool Broken"}, "json_string": "{\"text\":\"Red Wool Broken\"}"}}, "c.purpleConcretePowder": {"CriteriaName": "minecraft.crafted:minecraft.purple_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Concrete Powder Crafted"}, "json_string": "{\"text\":\"Purple Concrete Powder Crafted\"}"}}, "c.elytra": {"CriteriaName": "minecraft.crafted:minecraft.elytra", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elytra Crafted"}, "json_string": "{\"text\":\"Elytra Crafted\"}"}}, "p.brownBanner": {"CriteriaName": "minecraft.picked_up:minecraft.brown_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Banner Picked Up"}, "json_string": "{\"text\":\"Brown Banner Picked Up\"}"}}, "c.goldNugget": {"CriteriaName": "minecraft.crafted:minecraft.gold_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gold Nugget Crafted"}, "json_string": "{\"text\":\"Gold Nugget Crafted\"}"}}, "u.infestedCobblestone": {"CriteriaName": "minecraft.used:minecraft.infested_cobblestone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cobblestone Used"}, "json_string": "{\"text\":\"Infested Cobblestone Used\"}"}}, "u.birchPressurePlate": {"CriteriaName": "minecraft.used:minecraft.birch_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Pressure Plate Used"}, "json_string": "{\"text\":\"Birch Pressure Plate Used\"}"}}, "c.warpedFungusOnAStick": {"CriteriaName": "minecraft.crafted:minecraft.warped_fungus_on_a_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus On A Stick Crafted"}, "json_string": "{\"text\":\"Warped Fungus On A Stick Crafted\"}"}}, "k.pillager": {"CriteriaName": "minecraft.killed:minecraft.pillager", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pillager Killed"}, "json_string": "{\"text\":\"Pillager Killed\"}"}}, "p.smoothSandstoneSlab": {"CriteriaName": "minecraft.picked_up:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Picked Up"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Picked Up\"}"}}, "q.redStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.red_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Red Stained Glass Pane Dropped\"}"}}, "u.ironChestplate": {"CriteriaName": "minecraft.used:minecraft.iron_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Chestplate Used"}, "json_string": "{\"text\":\"Iron Chestplate Used\"}"}}, "p.diamondSword": {"CriteriaName": "minecraft.picked_up:minecraft.diamond_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Sword Picked Up"}, "json_string": "{\"text\":\"Diamond Sword Picked Up\"}"}}, "m.blackStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.black_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Black Stained Glass Pane Mined\"}"}}, "p.goldenChestplate": {"CriteriaName": "minecraft.picked_up:minecraft.golden_chestplate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Chestplate Picked Up"}, "json_string": "{\"text\":\"Golden Chestplate Picked Up\"}"}}, "p.greenDye": {"CriteriaName": "minecraft.picked_up:minecraft.green_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Dye Picked Up"}, "json_string": "{\"text\":\"Green Dye Picked Up\"}"}}, "c.crimsonButton": {"CriteriaName": "minecraft.crafted:minecraft.crimson_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Button Crafted"}, "json_string": "{\"text\":\"Crimson Button Crafted\"}"}}, "u.zombieVillagerSpawnEgg": {"CriteriaName": "minecraft.used:minecraft.zombie_villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Villager Spawn Egg Used"}, "json_string": "{\"text\":\"Zombie Villager Spawn Egg Used\"}"}}, "c.pinkShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.pink_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Shulker Box Crafted"}, "json_string": "{\"text\":\"Pink Shulker Box Crafted\"}"}}, "k.piglinBrute": {"CriteriaName": "minecraft.killed:minecraft.piglin_brute", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Killed"}, "json_string": "{\"text\":\"Piglin Brute Killed\"}"}}, "p.grayDye": {"CriteriaName": "minecraft.picked_up:minecraft.gray_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Dye Picked Up"}, "json_string": "{\"text\":\"Gray Dye Picked Up\"}"}}, "p.polishedAndesiteStairs": {"CriteriaName": "minecraft.picked_up:minecraft.polished_andesite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Stairs Picked Up"}, "json_string": "{\"text\":\"Polished Andesite Stairs Picked Up\"}"}}, "tc.break_d_oak": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.break_d_oak"}, "json_string": "{\"text\":\"tc.break_d_oak\"}"}}, "p.cookedCod": {"CriteriaName": "minecraft.picked_up:minecraft.cooked_cod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Cod Picked Up"}, "json_string": "{\"text\":\"Cooked Cod Picked Up\"}"}}, "u.netheriteShovel": {"CriteriaName": "minecraft.used:minecraft.netherite_shovel", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Shovel Used"}, "json_string": "{\"text\":\"Netherite Shovel Used\"}"}}, "u.oakSign": {"CriteriaName": "minecraft.used:minecraft.oak_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Sign Used"}, "json_string": "{\"text\":\"Oak Sign Used\"}"}}, "q.creeperBannerPattern": {"CriteriaName": "minecraft.dropped:minecraft.creeper_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Banner Pattern Dropped"}, "json_string": "{\"text\":\"Creeper Banner Pattern Dropped\"}"}}, "b.chiseledPolishedBlackstone": {"CriteriaName": "minecraft.broken:minecraft.chiseled_polished_blackstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Polished Blackstone Broken"}, "json_string": "{\"text\":\"Chiseled Polished Blackstone Broken\"}"}}, "m.soulLantern": {"CriteriaName": "minecraft.mined:minecraft.soul_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Lantern Mined"}, "json_string": "{\"text\":\"Soul Lantern Mined\"}"}}, "b.flint": {"CriteriaName": "minecraft.broken:minecraft.flint", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flint Broken"}, "json_string": "{\"text\":\"Flint Broken\"}"}}, "b.sculkSensor": {"CriteriaName": "minecraft.broken:minecraft.sculk_sensor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sculk Sensor Broken"}, "json_string": "{\"text\":\"Sculk Sensor Broken\"}"}}, "q.ghastSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.ghast_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Spawn Egg Dropped"}, "json_string": "{\"text\":\"Ghast Spawn Egg Dropped\"}"}}, "q.weatheredCutCopperStairs": {"CriteriaName": "minecraft.dropped:minecraft.weathered_cut_copper_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Weathered Cut Copper Stairs Dropped"}, "json_string": "{\"text\":\"Weathered Cut Copper Stairs Dropped\"}"}}, "c.grayCarpet": {"CriteriaName": "minecraft.crafted:minecraft.gray_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Carpet Crafted"}, "json_string": "{\"text\":\"Gray Carpet Crafted\"}"}}, "p.jungleWood": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Wood Picked Up"}, "json_string": "{\"text\":\"Jungle Wood Picked Up\"}"}}, "m.basalt": {"CriteriaName": "minecraft.mined:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Mined"}, "json_string": "{\"text\":\"Basalt Mined\"}"}}, "q.netherBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Dropped"}, "json_string": "{\"text\":\"Nether Brick Stairs Dropped\"}"}}, "b.blueOrchid": {"CriteriaName": "minecraft.broken:minecraft.blue_orchid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Orchid Broken"}, "json_string": "{\"text\":\"Blue Orchid Broken\"}"}}, "d.drowned": {"CriteriaName": "minecraft.killed_by:minecraft.drowned", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Drowned"}, "json_string": "{\"text\":\"Killed by Drowned\"}"}}, "p.magentaWool": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Wool Picked Up"}, "json_string": "{\"text\":\"Magenta Wool Picked Up\"}"}}, "p.netherGoldOre": {"CriteriaName": "minecraft.picked_up:minecraft.nether_gold_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Gold Ore Picked Up"}, "json_string": "{\"text\":\"Nether Gold Ore Picked Up\"}"}}, "q.filledMap": {"CriteriaName": "minecraft.dropped:minecraft.filled_map", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Filled Map Dropped"}, "json_string": "{\"text\":\"Filled Map Dropped\"}"}}, "c.air": {"CriteriaName": "minecraft.crafted:minecraft.air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Air Crafted"}, "json_string": "{\"text\":\"Air Crafted\"}"}}, "c.endermanSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.enderman_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enderman Spawn Egg Crafted"}, "json_string": "{\"text\":\"Enderman Spawn Egg Crafted\"}"}}, "c.oakStairs": {"CriteriaName": "minecraft.crafted:minecraft.oak_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Stairs Crafted"}, "json_string": "{\"text\":\"Oak Stairs Crafted\"}"}}, "u.diamond": {"CriteriaName": "minecraft.used:minecraft.diamond", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Used"}, "json_string": "{\"text\":\"Diamond Used\"}"}}, "u.purpurPillar": {"CriteriaName": "minecraft.used:minecraft.purpur_pillar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purpur Pillar Used"}, "json_string": "{\"text\":\"Purpur Pillar Used\"}"}}, "q.redstoneOre": {"CriteriaName": "minecraft.dropped:minecraft.redstone_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Ore Dropped"}, "json_string": "{\"text\":\"Redstone Ore Dropped\"}"}}, "m.flowerPot": {"CriteriaName": "minecraft.mined:minecraft.flower_pot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Flower Pot Mined"}, "json_string": "{\"text\":\"Flower Pot Mined\"}"}}, "q.jungleLeaves": {"CriteriaName": "minecraft.dropped:minecraft.jungle_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Leaves Dropped"}, "json_string": "{\"text\":\"Jungle Leaves Dropped\"}"}}, "m.rail": {"CriteriaName": "minecraft.mined:minecraft.rail", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rail Mined"}, "json_string": "{\"text\":\"Rail Mined\"}"}}, "b.brownMushroom": {"CriteriaName": "minecraft.broken:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Broken"}, "json_string": "{\"text\":\"Brown Mushroom Broken\"}"}}, "b.musicDiscOtherside": {"CriteriaName": "minecraft.broken:minecraft.music_disc_otherside", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Otherside Broken"}, "json_string": "{\"text\":\"Music Disc Otherside Broken\"}"}}, "q.blazeSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.blaze_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Spawn Egg Dropped"}, "json_string": "{\"text\":\"Blaze Spawn Egg Dropped\"}"}}, "b.darkOakButton": {"CriteriaName": "minecraft.broken:minecraft.dark_oak_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Button Broken"}, "json_string": "{\"text\":\"Dark Oak Button Broken\"}"}}, "b.magentaBed": {"CriteriaName": "minecraft.broken:minecraft.magenta_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Bed Broken"}, "json_string": "{\"text\":\"Magenta Bed Broken\"}"}}, "m.orangeCandle": {"CriteriaName": "minecraft.mined:minecraft.orange_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Candle Mined"}, "json_string": "{\"text\":\"Orange Candle Mined\"}"}}, "p.chiseledNetherBricks": {"CriteriaName": "minecraft.picked_up:minecraft.chiseled_nether_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Nether Bricks Picked Up"}, "json_string": "{\"text\":\"Chiseled Nether Bricks Picked Up\"}"}}, "b.rawIron": {"CriteriaName": "minecraft.broken:minecraft.raw_iron", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Iron Broken"}, "json_string": "{\"text\":\"Raw Iron Broken\"}"}}, "m.darkOakFence": {"CriteriaName": "minecraft.mined:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Mined"}, "json_string": "{\"text\":\"Dark Oak Fence Mined\"}"}}, "cu.walkUnderWaterOneCm": {"CriteriaName": "minecraft.custom:minecraft.walk_under_water_one_cm", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Walk Under Water One Cm"}, "json_string": "{\"text\":\"Walk Under Water One Cm\"}"}}, "u.brickWall": {"CriteriaName": "minecraft.used:minecraft.brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brick Wall Used"}, "json_string": "{\"text\":\"Brick Wall Used\"}"}}, "u.coalOre": {"CriteriaName": "minecraft.used:minecraft.coal_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Coal Ore Used"}, "json_string": "{\"text\":\"Coal Ore Used\"}"}}, "q.blueIce": {"CriteriaName": "minecraft.dropped:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Dropped"}, "json_string": "{\"text\":\"Blue Ice Dropped\"}"}}, "m.darkPrismarineStairs": {"CriteriaName": "minecraft.mined:minecraft.dark_prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Prismarine Stairs Mined"}, "json_string": "{\"text\":\"Dark Prismarine Stairs Mined\"}"}}, "m.netherBrickStairs": {"CriteriaName": "minecraft.mined:minecraft.nether_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Stairs Mined"}, "json_string": "{\"text\":\"Nether Brick Stairs Mined\"}"}}, "q.acaciaTrapdoor": {"CriteriaName": "minecraft.dropped:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Dropped"}, "json_string": "{\"text\":\"Acacia Trapdoor Dropped\"}"}}, "q.lightWeightedPressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.light_weighted_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Weighted Pressure Plate Dropped"}, "json_string": "{\"text\":\"Light Weighted Pressure Plate Dropped\"}"}}, "p.lightBlueStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.light_blue_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Picked Up"}, "json_string": "{\"text\":\"Light Blue Stained Glass Picked Up\"}"}}, "m.dioriteSlab": {"CriteriaName": "minecraft.mined:minecraft.diorite_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Slab Mined"}, "json_string": "{\"text\":\"Diorite Slab Mined\"}"}}, "m.warpedFungus": {"CriteriaName": "minecraft.mined:minecraft.warped_fungus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Fungus Mined"}, "json_string": "{\"text\":\"Warped Fungus Mined\"}"}}, "p.basalt": {"CriteriaName": "minecraft.picked_up:minecraft.basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Basalt Picked Up"}, "json_string": "{\"text\":\"Basalt Picked Up\"}"}}, "u.polishedAndesite": {"CriteriaName": "minecraft.used:minecraft.polished_andesite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Andesite Used"}, "json_string": "{\"text\":\"Polished Andesite Used\"}"}}, "u.stonePressurePlate": {"CriteriaName": "minecraft.used:minecraft.stone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Pressure Plate Used"}, "json_string": "{\"text\":\"Stone Pressure Plate Used\"}"}}, "m.ironBars": {"CriteriaName": "minecraft.mined:minecraft.iron_bars", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Bars Mined"}, "json_string": "{\"text\":\"Iron Bars Mined\"}"}}, "p.endStoneBrickStairs": {"CriteriaName": "minecraft.picked_up:minecraft.end_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Stairs Picked Up"}, "json_string": "{\"text\":\"End Stone Brick Stairs Picked Up\"}"}}, "c.piglinBruteSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.piglin_brute_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Piglin Brute Spawn Egg Crafted"}, "json_string": "{\"text\":\"Piglin Brute Spawn Egg Crafted\"}"}}, "u.goldenApple": {"CriteriaName": "minecraft.used:minecraft.golden_apple", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Apple Used"}, "json_string": "{\"text\":\"Golden Apple Used\"}"}}, "m.yellowCandle": {"CriteriaName": "minecraft.mined:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Mined"}, "json_string": "{\"text\":\"Yellow Candle Mined\"}"}}, "q.magentaCandle": {"CriteriaName": "minecraft.dropped:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Dropped"}, "json_string": "{\"text\":\"Magenta Candle Dropped\"}"}}, "m.greenBed": {"CriteriaName": "minecraft.mined:minecraft.green_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Bed Mined"}, "json_string": "{\"text\":\"Green Bed Mined\"}"}}, "q.fern": {"CriteriaName": "minecraft.dropped:minecraft.fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fern Dropped"}, "json_string": "{\"text\":\"Fern Dropped\"}"}}, "p.boneBlock": {"CriteriaName": "minecraft.picked_up:minecraft.bone_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Block Picked Up"}, "json_string": "{\"text\":\"Bone Block Picked Up\"}"}}, "b.tntMinecart": {"CriteriaName": "minecraft.broken:minecraft.tnt_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tnt Minecart Broken"}, "json_string": "{\"text\":\"Tnt Minecart Broken\"}"}}, "u.redSandstone": {"CriteriaName": "minecraft.used:minecraft.red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Used"}, "json_string": "{\"text\":\"Red Sandstone Used\"}"}}, "q.strippedDarkOakLog": {"CriteriaName": "minecraft.dropped:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Dropped"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Dropped\"}"}}, "q.crackedPolishedBlackstoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.cracked_polished_blackstone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Polished Blackstone Bricks Dropped"}, "json_string": "{\"text\":\"Cracked Polished Blackstone Bricks Dropped\"}"}}, "m.caveAir": {"CriteriaName": "minecraft.mined:minecraft.cave_air", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Air Mined"}, "json_string": "{\"text\":\"Cave Air Mined\"}"}}, "p.armorStand": {"CriteriaName": "minecraft.picked_up:minecraft.armor_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Armor Stand Picked Up"}, "json_string": "{\"text\":\"Armor Stand Picked Up\"}"}}, "b.magentaCarpet": {"CriteriaName": "minecraft.broken:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Broken"}, "json_string": "{\"text\":\"Magenta Carpet Broken\"}"}}, "u.hopperMinecart": {"CriteriaName": "minecraft.used:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart Used"}, "json_string": "{\"text\":\"Hopper Minecart Used\"}"}}, "q.enderPearl": {"CriteriaName": "minecraft.dropped:minecraft.ender_pearl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Pearl Dropped"}, "json_string": "{\"text\":\"Ender Pearl Dropped\"}"}}, "u.goldenLeggings": {"CriteriaName": "minecraft.used:minecraft.golden_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Leggings Used"}, "json_string": "{\"text\":\"Golden Leggings Used\"}"}}, "b.soulSoil": {"CriteriaName": "minecraft.broken:minecraft.soul_soil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Soil Broken"}, "json_string": "{\"text\":\"Soul Soil Broken\"}"}}, "q.jungleLog": {"CriteriaName": "minecraft.dropped:minecraft.jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Log Dropped"}, "json_string": "{\"text\":\"Jungle Log Dropped\"}"}}, "q.smoothRedSandstoneStairs": {"CriteriaName": "minecraft.dropped:minecraft.smooth_red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Stairs Dropped"}, "json_string": "{\"text\":\"Smooth Red Sandstone Stairs Dropped\"}"}}, "b.chainmailBoots": {"CriteriaName": "minecraft.broken:minecraft.chainmail_boots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chainmail Boots Broken"}, "json_string": "{\"text\":\"Chainmail Boots Broken\"}"}}, "b.ironDoor": {"CriteriaName": "minecraft.broken:minecraft.iron_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Door Broken"}, "json_string": "{\"text\":\"Iron Door Broken\"}"}}, "p.blackDye": {"CriteriaName": "minecraft.picked_up:minecraft.black_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Dye Picked Up"}, "json_string": "{\"text\":\"Black Dye Picked Up\"}"}}, "g.playNoteblock": {"CriteriaName": "minecraft.custom:minecraft.play_noteblock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Play Noteblock"}, "json_string": "{\"text\":\"Play Noteblock\"}"}}, "b.netherBrickFence": {"CriteriaName": "minecraft.broken:minecraft.nether_brick_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Brick Fence Broken"}, "json_string": "{\"text\":\"Nether Brick Fence Broken\"}"}}, "u.lightBlueCarpet": {"CriteriaName": "minecraft.used:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Used"}, "json_string": "{\"text\":\"Light Blue Carpet Used\"}"}}, "m.chorusFlower": {"CriteriaName": "minecraft.mined:minecraft.chorus_flower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Flower Mined"}, "json_string": "{\"text\":\"Chorus Flower Mined\"}"}}, "q.lightBlueCarpet": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Carpet Dropped"}, "json_string": "{\"text\":\"Light Blue Carpet Dropped\"}"}}, "c.stick": {"CriteriaName": "minecraft.crafted:minecraft.stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stick Crafted"}, "json_string": "{\"text\":\"Stick Crafted\"}"}}, "u.jigsaw": {"CriteriaName": "minecraft.used:minecraft.jigsaw", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jigsaw Used"}, "json_string": "{\"text\":\"Jigsaw Used\"}"}}, "c.diamond": {"CriteriaName": "minecraft.crafted:minecraft.diamond", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Crafted"}, "json_string": "{\"text\":\"Diamond Crafted\"}"}}, "u.bubbleCoralFan": {"CriteriaName": "minecraft.used:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Used"}, "json_string": "{\"text\":\"Bubble Coral Fan Used\"}"}}, "u.orangeGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.orange_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Glazed Terracotta Used"}, "json_string": "{\"text\":\"Orange Glazed Terracotta Used\"}"}}, "u.oxeyeDaisy": {"CriteriaName": "minecraft.used:minecraft.oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxeye Daisy Used"}, "json_string": "{\"text\":\"Oxeye Daisy Used\"}"}}, "p.magentaCandle": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Candle Picked Up"}, "json_string": "{\"text\":\"Magenta Candle Picked Up\"}"}}, "q.brownGlazedTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.brown_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Glazed Terracotta Dropped"}, "json_string": "{\"text\":\"Brown Glazed Terracotta Dropped\"}"}}, "m.jungleStairs": {"CriteriaName": "minecraft.mined:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Mined"}, "json_string": "{\"text\":\"Jungle Stairs Mined\"}"}}, "b.cyanBed": {"CriteriaName": "minecraft.broken:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Broken"}, "json_string": "{\"text\":\"Cyan Bed Broken\"}"}}, "m.magentaStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.magenta_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Magenta Stained Glass Pane Mined\"}"}}, "m.polishedDioriteStairs": {"CriteriaName": "minecraft.mined:minecraft.polished_diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Stairs Mined"}, "json_string": "{\"text\":\"Polished Diorite Stairs Mined\"}"}}, "m.prismarineBrickSlab": {"CriteriaName": "minecraft.mined:minecraft.prismarine_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Brick Slab Mined"}, "json_string": "{\"text\":\"Prismarine Brick Slab Mined\"}"}}, "p.spawner": {"CriteriaName": "minecraft.picked_up:minecraft.spawner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spawner Picked Up"}, "json_string": "{\"text\":\"Spawner Picked Up\"}"}}, "q.orangeTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.orange_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Terracotta Dropped"}, "json_string": "{\"text\":\"Orange Terracotta Dropped\"}"}}, "q.grindstone": {"CriteriaName": "minecraft.dropped:minecraft.grindstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Grindstone Dropped"}, "json_string": "{\"text\":\"Grindstone Dropped\"}"}}, "u.jungleDoor": {"CriteriaName": "minecraft.used:minecraft.jungle_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Door Used"}, "json_string": "{\"text\":\"Jungle Door Used\"}"}}, "m.skeletonWallSkull": {"CriteriaName": "minecraft.mined:minecraft.skeleton_wall_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Wall Skull Mined"}, "json_string": "{\"text\":\"Skeleton Wall Skull Mined\"}"}}, "m.acaciaLeaves": {"CriteriaName": "minecraft.mined:minecraft.acacia_leaves", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Leaves Mined"}, "json_string": "{\"text\":\"Acacia Leaves Mined\"}"}}, "m.bigDripleafStem": {"CriteriaName": "minecraft.mined:minecraft.big_dripleaf_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Big Dripleaf Stem Mined"}, "json_string": "{\"text\":\"Big Dripleaf Stem Mined\"}"}}, "u.honeyBottle": {"CriteriaName": "minecraft.used:minecraft.honey_bottle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Honey Bottle Used"}, "json_string": "{\"text\":\"Honey Bottle Used\"}"}}, "q.cocoaBeans": {"CriteriaName": "minecraft.dropped:minecraft.cocoa_beans", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cocoa Beans Dropped"}, "json_string": "{\"text\":\"Cocoa Beans Dropped\"}"}}, "k.bee": {"CriteriaName": "minecraft.killed:minecraft.bee", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bee Killed"}, "json_string": "{\"text\":\"Bee Killed\"}"}}, "m.blueStainedGlassPane": {"CriteriaName": "minecraft.mined:minecraft.blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Stained Glass Pane Mined"}, "json_string": "{\"text\":\"Blue Stained Glass Pane Mined\"}"}}, "b.dirtPath": {"CriteriaName": "minecraft.broken:minecraft.dirt_path", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Path Broken"}, "json_string": "{\"text\":\"Dirt Path Broken\"}"}}, "b.sugar": {"CriteriaName": "minecraft.broken:minecraft.sugar", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sugar Broken"}, "json_string": "{\"text\":\"Sugar Broken\"}"}}, "q.diamondLeggings": {"CriteriaName": "minecraft.dropped:minecraft.diamond_leggings", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diamond Leggings Dropped"}, "json_string": "{\"text\":\"Diamond Leggings Dropped\"}"}}, "m.cyanConcrete": {"CriteriaName": "minecraft.mined:minecraft.cyan_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Concrete Mined"}, "json_string": "{\"text\":\"Cyan Concrete Mined\"}"}}, "m.redTerracotta": {"CriteriaName": "minecraft.mined:minecraft.red_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Terracotta Mined"}, "json_string": "{\"text\":\"Red Terracotta Mined\"}"}}, "q.acaciaDoor": {"CriteriaName": "minecraft.dropped:minecraft.acacia_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Door Dropped"}, "json_string": "{\"text\":\"Acacia Door Dropped\"}"}}, "b.damagedAnvil": {"CriteriaName": "minecraft.broken:minecraft.damaged_anvil", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Damaged Anvil Broken"}, "json_string": "{\"text\":\"Damaged Anvil Broken\"}"}}, "c.smoothRedSandstone": {"CriteriaName": "minecraft.crafted:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Crafted"}, "json_string": "{\"text\":\"Smooth Red Sandstone Crafted\"}"}}, "cu.interactWithBeacon": {"CriteriaName": "minecraft.custom:minecraft.interact_with_beacon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Interact With Beacon"}, "json_string": "{\"text\":\"Interact With Beacon\"}"}}, "p.crackedStoneBricks": {"CriteriaName": "minecraft.picked_up:minecraft.cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cracked Stone Bricks Picked Up"}, "json_string": "{\"text\":\"Cracked Stone Bricks Picked Up\"}"}}, "b.redSandstoneStairs": {"CriteriaName": "minecraft.broken:minecraft.red_sandstone_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Stairs Broken"}, "json_string": "{\"text\":\"Red Sandstone Stairs Broken\"}"}}, "u.chorusFruit": {"CriteriaName": "minecraft.used:minecraft.chorus_fruit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Fruit Used"}, "json_string": "{\"text\":\"Chorus Fruit Used\"}"}}, "b.blueDye": {"CriteriaName": "minecraft.broken:minecraft.blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Dye Broken"}, "json_string": "{\"text\":\"Blue Dye Broken\"}"}}, "q.chainCommandBlock": {"CriteriaName": "minecraft.dropped:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Dropped"}, "json_string": "{\"text\":\"Chain Command Block Dropped\"}"}}, "p.blackStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.black_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Stained Glass Picked Up"}, "json_string": "{\"text\":\"Black Stained Glass Picked Up\"}"}}, "m.tubeCoralWallFan": {"CriteriaName": "minecraft.mined:minecraft.tube_coral_wall_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Wall Fan Mined"}, "json_string": "{\"text\":\"Tube Coral Wall Fan Mined\"}"}}, "b.cookedBeef": {"CriteriaName": "minecraft.broken:minecraft.cooked_beef", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cooked Beef Broken"}, "json_string": "{\"text\":\"Cooked Beef Broken\"}"}}, "q.orangeStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.orange_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Orange Stained Glass Pane Dropped\"}"}}, "u.orangeConcrete": {"CriteriaName": "minecraft.used:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Used"}, "json_string": "{\"text\":\"Orange Concrete Used\"}"}}, "q.leatherHorseArmor": {"CriteriaName": "minecraft.dropped:minecraft.leather_horse_armor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Leather Horse Armor Dropped"}, "json_string": "{\"text\":\"Leather Horse Armor Dropped\"}"}}, "p.hornCoral": {"CriteriaName": "minecraft.picked_up:minecraft.horn_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horn Coral Picked Up"}, "json_string": "{\"text\":\"Horn Coral Picked Up\"}"}}, "p.jackOLantern": {"CriteriaName": "minecraft.picked_up:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Picked Up"}, "json_string": "{\"text\":\"Jack O Lantern Picked Up\"}"}}, "b.enderEye": {"CriteriaName": "minecraft.broken:minecraft.ender_eye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ender Eye Broken"}, "json_string": "{\"text\":\"Ender Eye Broken\"}"}}, "b.villagerSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.villager_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Villager Spawn Egg Broken"}, "json_string": "{\"text\":\"Villager Spawn Egg Broken\"}"}}, "u.redTulip": {"CriteriaName": "minecraft.used:minecraft.red_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Tulip Used"}, "json_string": "{\"text\":\"Red Tulip Used\"}"}}, "b.shield": {"CriteriaName": "minecraft.broken:minecraft.shield", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Shield Broken"}, "json_string": "{\"text\":\"Shield Broken\"}"}}, "m.cyanStainedGlass": {"CriteriaName": "minecraft.mined:minecraft.cyan_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Stained Glass Mined"}, "json_string": "{\"text\":\"Cyan Stained Glass Mined\"}"}}, "q.acaciaButton": {"CriteriaName": "minecraft.dropped:minecraft.acacia_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Button Dropped"}, "json_string": "{\"text\":\"Acacia Button Dropped\"}"}}, "d.boat": {"CriteriaName": "minecraft.killed_by:minecraft.boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Boat"}, "json_string": "{\"text\":\"Killed by Boat\"}"}}, "p.globeBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.globe_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Globe Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Globe Banner Pattern Picked Up\"}"}}, "p.lightGrayConcretePowder": {"CriteriaName": "minecraft.picked_up:minecraft.light_gray_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Concrete Powder Picked Up"}, "json_string": "{\"text\":\"Light Gray Concrete Powder Picked Up\"}"}}, "c.crimsonFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.crimson_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Gate Crafted"}, "json_string": "{\"text\":\"Crimson Fence Gate Crafted\"}"}}, "u.brownCandle": {"CriteriaName": "minecraft.used:minecraft.brown_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Candle Used"}, "json_string": "{\"text\":\"Brown Candle Used\"}"}}, "b.infestedStoneBricks": {"CriteriaName": "minecraft.broken:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Broken"}, "json_string": "{\"text\":\"Infested Stone Bricks Broken\"}"}}, "b.andesiteWall": {"CriteriaName": "minecraft.broken:minecraft.andesite_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Andesite Wall Broken"}, "json_string": "{\"text\":\"Andesite Wall Broken\"}"}}, "d.squid": {"CriteriaName": "minecraft.killed_by:minecraft.squid", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Squid"}, "json_string": "{\"text\":\"Killed by Squid\"}"}}, "c.spruceFenceGate": {"CriteriaName": "minecraft.crafted:minecraft.spruce_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Fence Gate Crafted"}, "json_string": "{\"text\":\"Spruce Fence Gate Crafted\"}"}}, "k.bat": {"CriteriaName": "minecraft.killed:minecraft.bat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bat Killed"}, "json_string": "{\"text\":\"Bat Killed\"}"}}, "m.crimsonStairs": {"CriteriaName": "minecraft.mined:minecraft.crimson_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Stairs Mined"}, "json_string": "{\"text\":\"Crimson Stairs Mined\"}"}}, "p.tropicalFish": {"CriteriaName": "minecraft.picked_up:minecraft.tropical_fish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Picked Up"}, "json_string": "{\"text\":\"Tropical Fish Picked Up\"}"}}, "c.whiteTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.white_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Terracotta Crafted"}, "json_string": "{\"text\":\"White Terracotta Crafted\"}"}}, "u.deadBubbleCoral": {"CriteriaName": "minecraft.used:minecraft.dead_bubble_coral", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Used"}, "json_string": "{\"text\":\"Dead Bubble Coral Used\"}"}}, "q.greenCandle": {"CriteriaName": "minecraft.dropped:minecraft.green_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Candle Dropped"}, "json_string": "{\"text\":\"Green Candle Dropped\"}"}}, "p.magentaDye": {"CriteriaName": "minecraft.picked_up:minecraft.magenta_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Dye Picked Up"}, "json_string": "{\"text\":\"Magenta Dye Picked Up\"}"}}, "q.azalea": {"CriteriaName": "minecraft.dropped:minecraft.azalea", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Azalea Dropped"}, "json_string": "{\"text\":\"Azalea Dropped\"}"}}, "q.mossyStoneBrickStairs": {"CriteriaName": "minecraft.dropped:minecraft.mossy_stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Stairs Dropped"}, "json_string": "{\"text\":\"Mossy Stone Brick Stairs Dropped\"}"}}, "c.lightBlueBanner": {"CriteriaName": "minecraft.crafted:minecraft.light_blue_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Banner Crafted"}, "json_string": "{\"text\":\"Light Blue Banner Crafted\"}"}}, "b.lilyPad": {"CriteriaName": "minecraft.broken:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Broken"}, "json_string": "{\"text\":\"Lily Pad Broken\"}"}}, "m.redstoneWire": {"CriteriaName": "minecraft.mined:minecraft.redstone_wire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Redstone Wire Mined"}, "json_string": "{\"text\":\"Redstone Wire Mined\"}"}}, "p.ironSword": {"CriteriaName": "minecraft.picked_up:minecraft.iron_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Sword Picked Up"}, "json_string": "{\"text\":\"Iron Sword Picked Up\"}"}}, "p.sweetBerries": {"CriteriaName": "minecraft.picked_up:minecraft.sweet_berries", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sweet Berries Picked Up"}, "json_string": "{\"text\":\"Sweet Berries Picked Up\"}"}}, "c.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Crafted"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Crafted\"}"}}, "m.lightGrayBed": {"CriteriaName": "minecraft.mined:minecraft.light_gray_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Bed Mined"}, "json_string": "{\"text\":\"Light Gray Bed Mined\"}"}}, "m.orangeWallBanner": {"CriteriaName": "minecraft.mined:minecraft.orange_wall_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Wall Banner Mined"}, "json_string": "{\"text\":\"Orange Wall Banner Mined\"}"}}, "p.yellowStainedGlass": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Stained Glass Picked Up"}, "json_string": "{\"text\":\"Yellow Stained Glass Picked Up\"}"}}, "m.chiseledStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Stone Bricks Mined"}, "json_string": "{\"text\":\"Chiseled Stone Bricks Mined\"}"}}, "c.ancientDebris": {"CriteriaName": "minecraft.crafted:minecraft.ancient_debris", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ancient Debris Crafted"}, "json_string": "{\"text\":\"Ancient Debris Crafted\"}"}}, "p.ironPickaxe": {"CriteriaName": "minecraft.picked_up:minecraft.iron_pickaxe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Pickaxe Picked Up"}, "json_string": "{\"text\":\"Iron Pickaxe Picked Up\"}"}}, "q.rootedDirt": {"CriteriaName": "minecraft.dropped:minecraft.rooted_dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rooted Dirt Dropped"}, "json_string": "{\"text\":\"Rooted Dirt Dropped\"}"}}, "m.orangeCarpet": {"CriteriaName": "minecraft.mined:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Mined"}, "json_string": "{\"text\":\"Orange Carpet Mined\"}"}}, "b.mossyStoneBrickSlab": {"CriteriaName": "minecraft.broken:minecraft.mossy_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Slab Broken"}, "json_string": "{\"text\":\"Mossy Stone Brick Slab Broken\"}"}}, "q.bubbleCoralFan": {"CriteriaName": "minecraft.dropped:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Dropped"}, "json_string": "{\"text\":\"Bubble Coral Fan Dropped\"}"}}, "p.zombieSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.zombie_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Zombie Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Zombie Spawn Egg Picked Up\"}"}}, "b.buddingAmethyst": {"CriteriaName": "minecraft.broken:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Broken"}, "json_string": "{\"text\":\"Budding Amethyst Broken\"}"}}, "b.netherSprouts": {"CriteriaName": "minecraft.broken:minecraft.nether_sprouts", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Sprouts Broken"}, "json_string": "{\"text\":\"Nether Sprouts Broken\"}"}}, "u.chiseledQuartzBlock": {"CriteriaName": "minecraft.used:minecraft.chiseled_quartz_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chiseled Quartz Block Used"}, "json_string": "{\"text\":\"Chiseled Quartz Block Used\"}"}}, "p.polarBearSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.polar_bear_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polar Bear Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Polar Bear Spawn Egg Picked Up\"}"}}, "m.jackOLantern": {"CriteriaName": "minecraft.mined:minecraft.jack_o_lantern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jack O Lantern Mined"}, "json_string": "{\"text\":\"Jack O Lantern Mined\"}"}}, "p.brainCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.brain_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brain Coral Fan Picked Up"}, "json_string": "{\"text\":\"Brain Coral Fan Picked Up\"}"}}, "c.cyanBed": {"CriteriaName": "minecraft.crafted:minecraft.cyan_bed", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Bed Crafted"}, "json_string": "{\"text\":\"Cyan Bed Crafted\"}"}}, "k.cat": {"CriteriaName": "minecraft.killed:minecraft.cat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Killed"}, "json_string": "{\"text\":\"Cat Killed\"}"}}, "b.elderGuardianSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.elder_guardian_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Elder Guardian Spawn Egg Broken"}, "json_string": "{\"text\":\"Elder Guardian Spawn Egg Broken\"}"}}, "p.rawGoldBlock": {"CriteriaName": "minecraft.picked_up:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Picked Up"}, "json_string": "{\"text\":\"Raw Gold Block Picked Up\"}"}}, "b.oakLog": {"CriteriaName": "minecraft.broken:minecraft.oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oak Log Broken"}, "json_string": "{\"text\":\"Oak Log Broken\"}"}}, "q.whiteTulip": {"CriteriaName": "minecraft.dropped:minecraft.white_tulip", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Tulip Dropped"}, "json_string": "{\"text\":\"White Tulip Dropped\"}"}}, "u.smoothRedSandstoneSlab": {"CriteriaName": "minecraft.used:minecraft.smooth_red_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Slab Used"}, "json_string": "{\"text\":\"Smooth Red Sandstone Slab Used\"}"}}, "q.infestedStone": {"CriteriaName": "minecraft.dropped:minecraft.infested_stone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Dropped"}, "json_string": "{\"text\":\"Infested Stone Dropped\"}"}}, "m.limeConcrete": {"CriteriaName": "minecraft.mined:minecraft.lime_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lime Concrete Mined"}, "json_string": "{\"text\":\"Lime Concrete Mined\"}"}}, "p.ironNugget": {"CriteriaName": "minecraft.picked_up:minecraft.iron_nugget", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Iron Nugget Picked Up"}, "json_string": "{\"text\":\"Iron Nugget Picked Up\"}"}}, "u.cake": {"CriteriaName": "minecraft.used:minecraft.cake", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cake Used"}, "json_string": "{\"text\":\"Cake Used\"}"}}, "u.pinkConcretePowder": {"CriteriaName": "minecraft.used:minecraft.pink_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Concrete Powder Used"}, "json_string": "{\"text\":\"Pink Concrete Powder Used\"}"}}, "p.debugStick": {"CriteriaName": "minecraft.picked_up:minecraft.debug_stick", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Debug Stick Picked Up"}, "json_string": "{\"text\":\"Debug Stick Picked Up\"}"}}, "c.magentaShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.magenta_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Shulker Box Crafted"}, "json_string": "{\"text\":\"Magenta Shulker Box Crafted\"}"}}, "b.smoothRedSandstone": {"CriteriaName": "minecraft.broken:minecraft.smooth_red_sandstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Red Sandstone Broken"}, "json_string": "{\"text\":\"Smooth Red Sandstone Broken\"}"}}, "m.cutCopper": {"CriteriaName": "minecraft.mined:minecraft.cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cut Copper Mined"}, "json_string": "{\"text\":\"Cut Copper Mined\"}"}}, "u.wheat": {"CriteriaName": "minecraft.used:minecraft.wheat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Used"}, "json_string": "{\"text\":\"Wheat Used\"}"}}, "m.brownConcretePowder": {"CriteriaName": "minecraft.mined:minecraft.brown_concrete_powder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Concrete Powder Mined"}, "json_string": "{\"text\":\"Brown Concrete Powder Mined\"}"}}, "b.fishingRod": {"CriteriaName": "minecraft.broken:minecraft.fishing_rod", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Fishing Rod Broken"}, "json_string": "{\"text\":\"Fishing Rod Broken\"}"}}, "q.magentaTerracotta": {"CriteriaName": "minecraft.dropped:minecraft.magenta_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Terracotta Dropped"}, "json_string": "{\"text\":\"Magenta Terracotta Dropped\"}"}}, "p.bubbleCoralFan": {"CriteriaName": "minecraft.picked_up:minecraft.bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Fan Picked Up"}, "json_string": "{\"text\":\"Bubble Coral Fan Picked Up\"}"}}, "p.skeletonSkull": {"CriteriaName": "minecraft.picked_up:minecraft.skeleton_skull", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Skull Picked Up"}, "json_string": "{\"text\":\"Skeleton Skull Picked Up\"}"}}, "c.acaciaPlanks": {"CriteriaName": "minecraft.crafted:minecraft.acacia_planks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Planks Crafted"}, "json_string": "{\"text\":\"Acacia Planks Crafted\"}"}}, "c.cyanBanner": {"CriteriaName": "minecraft.crafted:minecraft.cyan_banner", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Banner Crafted"}, "json_string": "{\"text\":\"Cyan Banner Crafted\"}"}}, "m.prismarineStairs": {"CriteriaName": "minecraft.mined:minecraft.prismarine_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Stairs Mined"}, "json_string": "{\"text\":\"Prismarine Stairs Mined\"}"}}, "m.deepslateCopperOre": {"CriteriaName": "minecraft.mined:minecraft.deepslate_copper_ore", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Copper Ore Mined"}, "json_string": "{\"text\":\"Deepslate Copper Ore Mined\"}"}}, "u.brownDye": {"CriteriaName": "minecraft.used:minecraft.brown_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Dye Used"}, "json_string": "{\"text\":\"Brown Dye Used\"}"}}, "b.snow": {"CriteriaName": "minecraft.broken:minecraft.snow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Broken"}, "json_string": "{\"text\":\"Snow Broken\"}"}}, "p.soulCampfire": {"CriteriaName": "minecraft.picked_up:minecraft.soul_campfire", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Campfire Picked Up"}, "json_string": "{\"text\":\"Soul Campfire Picked Up\"}"}}, "p.hopperMinecart": {"CriteriaName": "minecraft.picked_up:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart Picked Up"}, "json_string": "{\"text\":\"Hopper Minecart Picked Up\"}"}}, "b.strippedJungleLog": {"CriteriaName": "minecraft.broken:minecraft.stripped_jungle_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Jungle Log Broken"}, "json_string": "{\"text\":\"Stripped Jungle Log Broken\"}"}}, "p.yellowCandle": {"CriteriaName": "minecraft.picked_up:minecraft.yellow_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Yellow Candle Picked Up"}, "json_string": "{\"text\":\"Yellow Candle Picked Up\"}"}}, "u.cactus": {"CriteriaName": "minecraft.used:minecraft.cactus", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cactus Used"}, "json_string": "{\"text\":\"Cactus Used\"}"}}, "b.blazeSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.blaze_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blaze Spawn Egg Broken"}, "json_string": "{\"text\":\"Blaze Spawn Egg Broken\"}"}}, "p.prismarineCrystals": {"CriteriaName": "minecraft.picked_up:minecraft.prismarine_crystals", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crystals Picked Up"}, "json_string": "{\"text\":\"Prismarine Crystals Picked Up\"}"}}, "b.mossCarpet": {"CriteriaName": "minecraft.broken:minecraft.moss_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Moss Carpet Broken"}, "json_string": "{\"text\":\"Moss Carpet Broken\"}"}}, "q.warpedNylium": {"CriteriaName": "minecraft.dropped:minecraft.warped_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Nylium Dropped"}, "json_string": "{\"text\":\"Warped Nylium Dropped\"}"}}, "m.orangeShulkerBox": {"CriteriaName": "minecraft.mined:minecraft.orange_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Shulker Box Mined"}, "json_string": "{\"text\":\"Orange Shulker Box Mined\"}"}}, "u.dioriteStairs": {"CriteriaName": "minecraft.used:minecraft.diorite_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Diorite Stairs Used"}, "json_string": "{\"text\":\"Diorite Stairs Used\"}"}}, "m.granite": {"CriteriaName": "minecraft.mined:minecraft.granite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Granite Mined"}, "json_string": "{\"text\":\"Granite Mined\"}"}}, "d.areaEffectCloud": {"CriteriaName": "minecraft.killed_by:minecraft.area_effect_cloud", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Area Effect Cloud"}, "json_string": "{\"text\":\"Killed by Area Effect Cloud\"}"}}, "p.sand": {"CriteriaName": "minecraft.picked_up:minecraft.sand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sand Picked Up"}, "json_string": "{\"text\":\"Sand Picked Up\"}"}}, "u.book": {"CriteriaName": "minecraft.used:minecraft.book", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Book Used"}, "json_string": "{\"text\":\"Book Used\"}"}}, "b.deadBubbleCoralFan": {"CriteriaName": "minecraft.broken:minecraft.dead_bubble_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Bubble Coral Fan Broken"}, "json_string": "{\"text\":\"Dead Bubble Coral Fan Broken\"}"}}, "q.grayStainedGlass": {"CriteriaName": "minecraft.dropped:minecraft.gray_stained_glass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Stained Glass Dropped"}, "json_string": "{\"text\":\"Gray Stained Glass Dropped\"}"}}, "b.warpedDoor": {"CriteriaName": "minecraft.broken:minecraft.warped_door", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Door Broken"}, "json_string": "{\"text\":\"Warped Door Broken\"}"}}, "b.musicDiscMellohi": {"CriteriaName": "minecraft.broken:minecraft.music_disc_mellohi", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mellohi Broken"}, "json_string": "{\"text\":\"Music Disc Mellohi Broken\"}"}}, "p.musicDiscMall": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_mall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Mall Picked Up"}, "json_string": "{\"text\":\"Music Disc Mall Picked Up\"}"}}, "q.bubbleCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.bubble_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bubble Coral Block Dropped"}, "json_string": "{\"text\":\"Bubble Coral Block Dropped\"}"}}, "q.sheepSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.sheep_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Spawn Egg Dropped"}, "json_string": "{\"text\":\"Sheep Spawn Egg Dropped\"}"}}, "p.enchantingTable": {"CriteriaName": "minecraft.picked_up:minecraft.enchanting_table", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Enchanting Table Picked Up"}, "json_string": "{\"text\":\"Enchanting Table Picked Up\"}"}}, "p.orangeCarpet": {"CriteriaName": "minecraft.picked_up:minecraft.orange_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Carpet Picked Up"}, "json_string": "{\"text\":\"Orange Carpet Picked Up\"}"}}, "b.hangingRoots": {"CriteriaName": "minecraft.broken:minecraft.hanging_roots", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hanging Roots Broken"}, "json_string": "{\"text\":\"Hanging Roots Broken\"}"}}, "c.sunflower": {"CriteriaName": "minecraft.crafted:minecraft.sunflower", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sunflower Crafted"}, "json_string": "{\"text\":\"Sunflower Crafted\"}"}}, "m.whiteGlazedTerracotta": {"CriteriaName": "minecraft.mined:minecraft.white_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Glazed Terracotta Mined"}, "json_string": "{\"text\":\"White Glazed Terracotta Mined\"}"}}, "p.mojangBannerPattern": {"CriteriaName": "minecraft.picked_up:minecraft.mojang_banner_pattern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mojang Banner Pattern Picked Up"}, "json_string": "{\"text\":\"Mojang Banner Pattern Picked Up\"}"}}, "m.rawGoldBlock": {"CriteriaName": "minecraft.mined:minecraft.raw_gold_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Block Mined"}, "json_string": "{\"text\":\"Raw Gold Block Mined\"}"}}, "u.bone": {"CriteriaName": "minecraft.used:minecraft.bone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bone Used"}, "json_string": "{\"text\":\"Bone Used\"}"}}, "u.pinkGlazedTerracotta": {"CriteriaName": "minecraft.used:minecraft.pink_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pink Glazed Terracotta Used"}, "json_string": "{\"text\":\"Pink Glazed Terracotta Used\"}"}}, "q.prismarineCrystals": {"CriteriaName": "minecraft.dropped:minecraft.prismarine_crystals", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Crystals Dropped"}, "json_string": "{\"text\":\"Prismarine Crystals Dropped\"}"}}, "u.birchSign": {"CriteriaName": "minecraft.used:minecraft.birch_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sign Used"}, "json_string": "{\"text\":\"Birch Sign Used\"}"}}, "b.snowBlock": {"CriteriaName": "minecraft.broken:minecraft.snow_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snow Block Broken"}, "json_string": "{\"text\":\"Snow Block Broken\"}"}}, "m.deadTubeCoralBlock": {"CriteriaName": "minecraft.mined:minecraft.dead_tube_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Tube Coral Block Mined"}, "json_string": "{\"text\":\"Dead Tube Coral Block Mined\"}"}}, "m.jungleFenceGate": {"CriteriaName": "minecraft.mined:minecraft.jungle_fence_gate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Fence Gate Mined"}, "json_string": "{\"text\":\"Jungle Fence Gate Mined\"}"}}, "q.whiteWool": {"CriteriaName": "minecraft.dropped:minecraft.white_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Wool Dropped"}, "json_string": "{\"text\":\"White Wool Dropped\"}"}}, "q.repeater": {"CriteriaName": "minecraft.dropped:minecraft.repeater", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Repeater Dropped"}, "json_string": "{\"text\":\"Repeater Dropped\"}"}}, "p.darkOakWood": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Wood Picked Up"}, "json_string": "{\"text\":\"Dark Oak Wood Picked Up\"}"}}, "q.smoothQuartz": {"CriteriaName": "minecraft.dropped:minecraft.smooth_quartz", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Quartz Dropped"}, "json_string": "{\"text\":\"Smooth Quartz Dropped\"}"}}, "q.observer": {"CriteriaName": "minecraft.dropped:minecraft.observer", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Observer Dropped"}, "json_string": "{\"text\":\"Observer Dropped\"}"}}, "c.skeletonSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.skeleton_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Skeleton Spawn Egg Crafted"}, "json_string": "{\"text\":\"Skeleton Spawn Egg Crafted\"}"}}, "q.polishedBlackstonePressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.polished_blackstone_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Pressure Plate Dropped"}, "json_string": "{\"text\":\"Polished Blackstone Pressure Plate Dropped\"}"}}, "q.polishedDiorite": {"CriteriaName": "minecraft.dropped:minecraft.polished_diorite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Diorite Dropped"}, "json_string": "{\"text\":\"Polished Diorite Dropped\"}"}}, "m.ladder": {"CriteriaName": "minecraft.mined:minecraft.ladder", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ladder Mined"}, "json_string": "{\"text\":\"Ladder Mined\"}"}}, "b.acaciaWood": {"CriteriaName": "minecraft.broken:minecraft.acacia_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Wood Broken"}, "json_string": "{\"text\":\"Acacia Wood Broken\"}"}}, "p.dolphinSpawnEgg": {"CriteriaName": "minecraft.picked_up:minecraft.dolphin_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Spawn Egg Picked Up"}, "json_string": "{\"text\":\"Dolphin Spawn Egg Picked Up\"}"}}, "m.dirt": {"CriteriaName": "minecraft.mined:minecraft.dirt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dirt Mined"}, "json_string": "{\"text\":\"Dirt Mined\"}"}}, "p.cyanCandle": {"CriteriaName": "minecraft.picked_up:minecraft.cyan_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cyan Candle Picked Up"}, "json_string": "{\"text\":\"Cyan Candle Picked Up\"}"}}, "m.composter": {"CriteriaName": "minecraft.mined:minecraft.composter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Composter Mined"}, "json_string": "{\"text\":\"Composter Mined\"}"}}, "q.hopperMinecart": {"CriteriaName": "minecraft.dropped:minecraft.hopper_minecart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Hopper Minecart Dropped"}, "json_string": "{\"text\":\"Hopper Minecart Dropped\"}"}}, "p.musicDiscStal": {"CriteriaName": "minecraft.picked_up:minecraft.music_disc_stal", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Music Disc Stal Picked Up"}, "json_string": "{\"text\":\"Music Disc Stal Picked Up\"}"}}, "u.deadHornCoralBlock": {"CriteriaName": "minecraft.used:minecraft.dead_horn_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Horn Coral Block Used"}, "json_string": "{\"text\":\"Dead Horn Coral Block Used\"}"}}, "p.pufferfish": {"CriteriaName": "minecraft.picked_up:minecraft.pufferfish", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pufferfish Picked Up"}, "json_string": "{\"text\":\"Pufferfish Picked Up\"}"}}, "b.melon": {"CriteriaName": "minecraft.broken:minecraft.melon", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Melon Broken"}, "json_string": "{\"text\":\"Melon Broken\"}"}}, "m.whiteCarpet": {"CriteriaName": "minecraft.mined:minecraft.white_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Carpet Mined"}, "json_string": "{\"text\":\"White Carpet Mined\"}"}}, "m.caveVines": {"CriteriaName": "minecraft.mined:minecraft.cave_vines", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cave Vines Mined"}, "json_string": "{\"text\":\"Cave Vines Mined\"}"}}, "c.peony": {"CriteriaName": "minecraft.crafted:minecraft.peony", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Peony Crafted"}, "json_string": "{\"text\":\"Peony Crafted\"}"}}, "m.pottedSpruceSapling": {"CriteriaName": "minecraft.mined:minecraft.potted_spruce_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Spruce Sapling Mined"}, "json_string": "{\"text\":\"Potted Spruce Sapling Mined\"}"}}, "b.bedrock": {"CriteriaName": "minecraft.broken:minecraft.bedrock", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bedrock Broken"}, "json_string": "{\"text\":\"Bedrock Broken\"}"}}, "d.item": {"CriteriaName": "minecraft.killed_by:minecraft.item", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Item"}, "json_string": "{\"text\":\"Killed by Item\"}"}}, "u.crimsonFence": {"CriteriaName": "minecraft.used:minecraft.crimson_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Fence Used"}, "json_string": "{\"text\":\"Crimson Fence Used\"}"}}, "b.horseSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.horse_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Horse Spawn Egg Broken"}, "json_string": "{\"text\":\"Horse Spawn Egg Broken\"}"}}, "b.netheriteSword": {"CriteriaName": "minecraft.broken:minecraft.netherite_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Sword Broken"}, "json_string": "{\"text\":\"Netherite Sword Broken\"}"}}, "b.structureBlock": {"CriteriaName": "minecraft.broken:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Broken"}, "json_string": "{\"text\":\"Structure Block Broken\"}"}}, "u.acaciaTrapdoor": {"CriteriaName": "minecraft.used:minecraft.acacia_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Acacia Trapdoor Used"}, "json_string": "{\"text\":\"Acacia Trapdoor Used\"}"}}, "u.lightBlueCandle": {"CriteriaName": "minecraft.used:minecraft.light_blue_candle", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Candle Used"}, "json_string": "{\"text\":\"Light Blue Candle Used\"}"}}, "p.crimsonNylium": {"CriteriaName": "minecraft.picked_up:minecraft.crimson_nylium", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Crimson Nylium Picked Up"}, "json_string": "{\"text\":\"Crimson Nylium Picked Up\"}"}}, "u.blueWool": {"CriteriaName": "minecraft.used:minecraft.blue_wool", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Wool Used"}, "json_string": "{\"text\":\"Blue Wool Used\"}"}}, "p.greenStainedGlassPane": {"CriteriaName": "minecraft.picked_up:minecraft.green_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Stained Glass Pane Picked Up"}, "json_string": "{\"text\":\"Green Stained Glass Pane Picked Up\"}"}}, "c.inkSac": {"CriteriaName": "minecraft.crafted:minecraft.ink_sac", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ink Sac Crafted"}, "json_string": "{\"text\":\"Ink Sac Crafted\"}"}}, "c.glassPane": {"CriteriaName": "minecraft.crafted:minecraft.glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glass Pane Crafted"}, "json_string": "{\"text\":\"Glass Pane Crafted\"}"}}, "p.pumpkinPie": {"CriteriaName": "minecraft.picked_up:minecraft.pumpkin_pie", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Pumpkin Pie Picked Up"}, "json_string": "{\"text\":\"Pumpkin Pie Picked Up\"}"}}, "k.sheep": {"CriteriaName": "minecraft.killed:minecraft.sheep", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Sheep Killed"}, "json_string": "{\"text\":\"Sheep Killed\"}"}}, "p.blueIce": {"CriteriaName": "minecraft.picked_up:minecraft.blue_ice", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Ice Picked Up"}, "json_string": "{\"text\":\"Blue Ice Picked Up\"}"}}, "m.strippedCrimsonStem": {"CriteriaName": "minecraft.mined:minecraft.stripped_crimson_stem", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Crimson Stem Mined"}, "json_string": "{\"text\":\"Stripped Crimson Stem Mined\"}"}}, "u.witherRose": {"CriteriaName": "minecraft.used:minecraft.wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wither Rose Used"}, "json_string": "{\"text\":\"Wither Rose Used\"}"}}, "p.polishedBlackstoneWall": {"CriteriaName": "minecraft.picked_up:minecraft.polished_blackstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Blackstone Wall Picked Up"}, "json_string": "{\"text\":\"Polished Blackstone Wall Picked Up\"}"}}, "q.snowball": {"CriteriaName": "minecraft.dropped:minecraft.snowball", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Snowball Dropped"}, "json_string": "{\"text\":\"Snowball Dropped\"}"}}, "c.spruceTrapdoor": {"CriteriaName": "minecraft.crafted:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Crafted"}, "json_string": "{\"text\":\"Spruce Trapdoor Crafted\"}"}}, "c.tubeCoralFan": {"CriteriaName": "minecraft.crafted:minecraft.tube_coral_fan", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tube Coral Fan Crafted"}, "json_string": "{\"text\":\"Tube Coral Fan Crafted\"}"}}, "q.lectern": {"CriteriaName": "minecraft.dropped:minecraft.lectern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lectern Dropped"}, "json_string": "{\"text\":\"Lectern Dropped\"}"}}, "q.smoker": {"CriteriaName": "minecraft.dropped:minecraft.smoker", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smoker Dropped"}, "json_string": "{\"text\":\"Smoker Dropped\"}"}}, "q.sprucePressurePlate": {"CriteriaName": "minecraft.dropped:minecraft.spruce_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Pressure Plate Dropped"}, "json_string": "{\"text\":\"Spruce Pressure Plate Dropped\"}"}}, "b.farmland": {"CriteriaName": "minecraft.broken:minecraft.farmland", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Farmland Broken"}, "json_string": "{\"text\":\"Farmland Broken\"}"}}, "c.redSandstoneWall": {"CriteriaName": "minecraft.crafted:minecraft.red_sandstone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Sandstone Wall Crafted"}, "json_string": "{\"text\":\"Red Sandstone Wall Crafted\"}"}}, "q.brownMushroom": {"CriteriaName": "minecraft.dropped:minecraft.brown_mushroom", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Mushroom Dropped"}, "json_string": "{\"text\":\"Brown Mushroom Dropped\"}"}}, "p.wheatSeeds": {"CriteriaName": "minecraft.picked_up:minecraft.wheat_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Wheat Seeds Picked Up"}, "json_string": "{\"text\":\"Wheat Seeds Picked Up\"}"}}, "q.smoothSandstoneSlab": {"CriteriaName": "minecraft.dropped:minecraft.smooth_sandstone_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Smooth Sandstone Slab Dropped"}, "json_string": "{\"text\":\"Smooth Sandstone Slab Dropped\"}"}}, "b.dandelion": {"CriteriaName": "minecraft.broken:minecraft.dandelion", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dandelion Broken"}, "json_string": "{\"text\":\"Dandelion Broken\"}"}}, "c.endStoneBrickSlab": {"CriteriaName": "minecraft.crafted:minecraft.end_stone_brick_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "End Stone Brick Slab Crafted"}, "json_string": "{\"text\":\"End Stone Brick Slab Crafted\"}"}}, "m.pottedOxeyeDaisy": {"CriteriaName": "minecraft.mined:minecraft.potted_oxeye_daisy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Oxeye Daisy Mined"}, "json_string": "{\"text\":\"Potted Oxeye Daisy Mined\"}"}}, "q.copperBlock": {"CriteriaName": "minecraft.dropped:minecraft.copper_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Copper Block Dropped"}, "json_string": "{\"text\":\"Copper Block Dropped\"}"}}, "p.beetrootSeeds": {"CriteriaName": "minecraft.picked_up:minecraft.beetroot_seeds", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Beetroot Seeds Picked Up"}, "json_string": "{\"text\":\"Beetroot Seeds Picked Up\"}"}}, "c.stonecutter": {"CriteriaName": "minecraft.crafted:minecraft.stonecutter", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stonecutter Crafted"}, "json_string": "{\"text\":\"Stonecutter Crafted\"}"}}, "q.rawGold": {"CriteriaName": "minecraft.dropped:minecraft.raw_gold", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Raw Gold Dropped"}, "json_string": "{\"text\":\"Raw Gold Dropped\"}"}}, "b.stoneBrickStairs": {"CriteriaName": "minecraft.broken:minecraft.stone_brick_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stone Brick Stairs Broken"}, "json_string": "{\"text\":\"Stone Brick Stairs Broken\"}"}}, "q.infestedChiseledStoneBricks": {"CriteriaName": "minecraft.dropped:minecraft.infested_chiseled_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Chiseled Stone Bricks Dropped"}, "json_string": "{\"text\":\"Infested Chiseled Stone Bricks Dropped\"}"}}, "q.magentaCarpet": {"CriteriaName": "minecraft.dropped:minecraft.magenta_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Magenta Carpet Dropped"}, "json_string": "{\"text\":\"Magenta Carpet Dropped\"}"}}, "c.lightGrayShulkerBox": {"CriteriaName": "minecraft.crafted:minecraft.light_gray_shulker_box", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Gray Shulker Box Crafted"}, "json_string": "{\"text\":\"Light Gray Shulker Box Crafted\"}"}}, "m.waxedOxidizedCutCopper": {"CriteriaName": "minecraft.mined:minecraft.waxed_oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Oxidized Cut Copper Mined"}, "json_string": "{\"text\":\"Waxed Oxidized Cut Copper Mined\"}"}}, "u.redCarpet": {"CriteriaName": "minecraft.used:minecraft.red_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Red Carpet Used"}, "json_string": "{\"text\":\"Red Carpet Used\"}"}}, "q.lightBlueStainedGlassPane": {"CriteriaName": "minecraft.dropped:minecraft.light_blue_stained_glass_pane", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Stained Glass Pane Dropped"}, "json_string": "{\"text\":\"Light Blue Stained Glass Pane Dropped\"}"}}, "m.spruceWood": {"CriteriaName": "minecraft.mined:minecraft.spruce_wood", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Wood Mined"}, "json_string": "{\"text\":\"Spruce Wood Mined\"}"}}, "u.grayConcrete": {"CriteriaName": "minecraft.used:minecraft.gray_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Gray Concrete Used"}, "json_string": "{\"text\":\"Gray Concrete Used\"}"}}, "p.darkOakFence": {"CriteriaName": "minecraft.picked_up:minecraft.dark_oak_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Fence Picked Up"}, "json_string": "{\"text\":\"Dark Oak Fence Picked Up\"}"}}, "q.orangeConcrete": {"CriteriaName": "minecraft.dropped:minecraft.orange_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Orange Concrete Dropped"}, "json_string": "{\"text\":\"Orange Concrete Dropped\"}"}}, "d.creeper": {"CriteriaName": "minecraft.killed_by:minecraft.creeper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Creeper"}, "json_string": "{\"text\":\"Killed by Creeper\"}"}}, "p.blackGlazedTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.black_glazed_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Glazed Terracotta Picked Up"}, "json_string": "{\"text\":\"Black Glazed Terracotta Picked Up\"}"}}, "m.buddingAmethyst": {"CriteriaName": "minecraft.mined:minecraft.budding_amethyst", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Budding Amethyst Mined"}, "json_string": "{\"text\":\"Budding Amethyst Mined\"}"}}, "b.birchButton": {"CriteriaName": "minecraft.broken:minecraft.birch_button", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Button Broken"}, "json_string": "{\"text\":\"Birch Button Broken\"}"}}, "duraPing.config": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Durability Ping Config"}, "json_string": "{\"text\":\"Durability Ping Config\"}"}}, "p.polishedBasalt": {"CriteriaName": "minecraft.picked_up:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Picked Up"}, "json_string": "{\"text\":\"Polished Basalt Picked Up\"}"}}, "p.largeFern": {"CriteriaName": "minecraft.picked_up:minecraft.large_fern", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Large Fern Picked Up"}, "json_string": "{\"text\":\"Large Fern Picked Up\"}"}}, "b.birchSapling": {"CriteriaName": "minecraft.broken:minecraft.birch_sapling", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Sapling Broken"}, "json_string": "{\"text\":\"Birch Sapling Broken\"}"}}, "b.ghastSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.ghast_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Ghast Spawn Egg Broken"}, "json_string": "{\"text\":\"Ghast Spawn Egg Broken\"}"}}, "q.birchFence": {"CriteriaName": "minecraft.dropped:minecraft.birch_fence", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Fence Dropped"}, "json_string": "{\"text\":\"Birch Fence Dropped\"}"}}, "q.creeperSpawnEgg": {"CriteriaName": "minecraft.dropped:minecraft.creeper_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Creeper Spawn Egg Dropped"}, "json_string": "{\"text\":\"Creeper Spawn Egg Dropped\"}"}}, "u.purpleDye": {"CriteriaName": "minecraft.used:minecraft.purple_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Purple Dye Used"}, "json_string": "{\"text\":\"Purple Dye Used\"}"}}, "m.junglePressurePlate": {"CriteriaName": "minecraft.mined:minecraft.jungle_pressure_plate", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Pressure Plate Mined"}, "json_string": "{\"text\":\"Jungle Pressure Plate Mined\"}"}}, "c.catSpawnEgg": {"CriteriaName": "minecraft.crafted:minecraft.cat_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Cat Spawn Egg Crafted"}, "json_string": "{\"text\":\"Cat Spawn Egg Crafted\"}"}}, "b.endermiteSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.endermite_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Endermite Spawn Egg Broken"}, "json_string": "{\"text\":\"Endermite Spawn Egg Broken\"}"}}, "m.chorusPlant": {"CriteriaName": "minecraft.mined:minecraft.chorus_plant", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chorus Plant Mined"}, "json_string": "{\"text\":\"Chorus Plant Mined\"}"}}, "u.brownCarpet": {"CriteriaName": "minecraft.used:minecraft.brown_carpet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brown Carpet Used"}, "json_string": "{\"text\":\"Brown Carpet Used\"}"}}, "d.parrot": {"CriteriaName": "minecraft.killed_by:minecraft.parrot", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Parrot"}, "json_string": "{\"text\":\"Killed by Parrot\"}"}}, "u.prismarineShard": {"CriteriaName": "minecraft.used:minecraft.prismarine_shard", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Prismarine Shard Used"}, "json_string": "{\"text\":\"Prismarine Shard Used\"}"}}, "m.soulWallTorch": {"CriteriaName": "minecraft.mined:minecraft.soul_wall_torch", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Soul Wall Torch Mined"}, "json_string": "{\"text\":\"Soul Wall Torch Mined\"}"}}, "q.lilyOfTheValley": {"CriteriaName": "minecraft.dropped:minecraft.lily_of_the_valley", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Of The Valley Dropped"}, "json_string": "{\"text\":\"Lily Of The Valley Dropped\"}"}}, "u.tropicalFishBucket": {"CriteriaName": "minecraft.used:minecraft.tropical_fish_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tropical Fish Bucket Used"}, "json_string": "{\"text\":\"Tropical Fish Bucket Used\"}"}}, "c.greenTerracotta": {"CriteriaName": "minecraft.crafted:minecraft.green_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Green Terracotta Crafted"}, "json_string": "{\"text\":\"Green Terracotta Crafted\"}"}}, "u.lightBlueConcrete": {"CriteriaName": "minecraft.used:minecraft.light_blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Light Blue Concrete Used"}, "json_string": "{\"text\":\"Light Blue Concrete Used\"}"}}, "m.mossyStoneBrickWall": {"CriteriaName": "minecraft.mined:minecraft.mossy_stone_brick_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Stone Brick Wall Mined"}, "json_string": "{\"text\":\"Mossy Stone Brick Wall Mined\"}"}}, "c.darkOakBoat": {"CriteriaName": "minecraft.crafted:minecraft.dark_oak_boat", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dark Oak Boat Crafted"}, "json_string": "{\"text\":\"Dark Oak Boat Crafted\"}"}}, "c.birchSlab": {"CriteriaName": "minecraft.crafted:minecraft.birch_slab", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Birch Slab Crafted"}, "json_string": "{\"text\":\"Birch Slab Crafted\"}"}}, "c.netheriteSword": {"CriteriaName": "minecraft.crafted:minecraft.netherite_sword", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Netherite Sword Crafted"}, "json_string": "{\"text\":\"Netherite Sword Crafted\"}"}}, "p.strippedDarkOakLog": {"CriteriaName": "minecraft.picked_up:minecraft.stripped_dark_oak_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Dark Oak Log Picked Up"}, "json_string": "{\"text\":\"Stripped Dark Oak Log Picked Up\"}"}}, "q.axolotlBucket": {"CriteriaName": "minecraft.dropped:minecraft.axolotl_bucket", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Axolotl Bucket Dropped"}, "json_string": "{\"text\":\"Axolotl Bucket Dropped\"}"}}, "c.structureBlock": {"CriteriaName": "minecraft.crafted:minecraft.structure_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Structure Block Crafted"}, "json_string": "{\"text\":\"Structure Block Crafted\"}"}}, "m.pottedWitherRose": {"CriteriaName": "minecraft.mined:minecraft.potted_wither_rose", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Potted Wither Rose Mined"}, "json_string": "{\"text\":\"Potted Wither Rose Mined\"}"}}, "d.endermite": {"CriteriaName": "minecraft.killed_by:minecraft.endermite", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Endermite"}, "json_string": "{\"text\":\"Killed by Endermite\"}"}}, "b.spruceTrapdoor": {"CriteriaName": "minecraft.broken:minecraft.spruce_trapdoor", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Trapdoor Broken"}, "json_string": "{\"text\":\"Spruce Trapdoor Broken\"}"}}, "q.deadBrainCoralBlock": {"CriteriaName": "minecraft.dropped:minecraft.dead_brain_coral_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dead Brain Coral Block Dropped"}, "json_string": "{\"text\":\"Dead Brain Coral Block Dropped\"}"}}, "u.lilyPad": {"CriteriaName": "minecraft.used:minecraft.lily_pad", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Lily Pad Used"}, "json_string": "{\"text\":\"Lily Pad Used\"}"}}, "m.chainCommandBlock": {"CriteriaName": "minecraft.mined:minecraft.chain_command_block", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Chain Command Block Mined"}, "json_string": "{\"text\":\"Chain Command Block Mined\"}"}}, "m.blueConcrete": {"CriteriaName": "minecraft.mined:minecraft.blue_concrete", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Concrete Mined"}, "json_string": "{\"text\":\"Blue Concrete Mined\"}"}}, "p.egg": {"CriteriaName": "minecraft.picked_up:minecraft.egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Egg Picked Up"}, "json_string": "{\"text\":\"Egg Picked Up\"}"}}, "q.netherWart": {"CriteriaName": "minecraft.dropped:minecraft.nether_wart", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Nether Wart Dropped"}, "json_string": "{\"text\":\"Nether Wart Dropped\"}"}}, "b.brewingStand": {"CriteriaName": "minecraft.broken:minecraft.brewing_stand", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Brewing Stand Broken"}, "json_string": "{\"text\":\"Brewing Stand Broken\"}"}}, "q.spectralArrow": {"CriteriaName": "minecraft.dropped:minecraft.spectral_arrow", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spectral Arrow Dropped"}, "json_string": "{\"text\":\"Spectral Arrow Dropped\"}"}}, "b.goldenHelmet": {"CriteriaName": "minecraft.broken:minecraft.golden_helmet", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Helmet Broken"}, "json_string": "{\"text\":\"Golden Helmet Broken\"}"}}, "p.glowstone": {"CriteriaName": "minecraft.picked_up:minecraft.glowstone", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Glowstone Picked Up"}, "json_string": "{\"text\":\"Glowstone Picked Up\"}"}}, "q.whiteDye": {"CriteriaName": "minecraft.dropped:minecraft.white_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "White Dye Dropped"}, "json_string": "{\"text\":\"White Dye Dropped\"}"}}, "m.mossyCobblestoneWall": {"CriteriaName": "minecraft.mined:minecraft.mossy_cobblestone_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Mossy Cobblestone Wall Mined"}, "json_string": "{\"text\":\"Mossy Cobblestone Wall Mined\"}"}}, "m.warpedHyphae": {"CriteriaName": "minecraft.mined:minecraft.warped_hyphae", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Warped Hyphae Mined"}, "json_string": "{\"text\":\"Warped Hyphae Mined\"}"}}, "b.squidSpawnEgg": {"CriteriaName": "minecraft.broken:minecraft.squid_spawn_egg", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Squid Spawn Egg Broken"}, "json_string": "{\"text\":\"Squid Spawn Egg Broken\"}"}}, "m.infestedCrackedStoneBricks": {"CriteriaName": "minecraft.mined:minecraft.infested_cracked_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Cracked Stone Bricks Mined"}, "json_string": "{\"text\":\"Infested Cracked Stone Bricks Mined\"}"}}, "k.dolphin": {"CriteriaName": "minecraft.killed:minecraft.dolphin", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Dolphin Killed"}, "json_string": "{\"text\":\"Dolphin Killed\"}"}}, "p.blackTerracotta": {"CriteriaName": "minecraft.picked_up:minecraft.black_terracotta", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Black Terracotta Picked Up"}, "json_string": "{\"text\":\"Black Terracotta Picked Up\"}"}}, "b.tallGrass": {"CriteriaName": "minecraft.broken:minecraft.tall_grass", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Tall Grass Broken"}, "json_string": "{\"text\":\"Tall Grass Broken\"}"}}, "b.waxedExposedCutCopper": {"CriteriaName": "minecraft.broken:minecraft.waxed_exposed_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Waxed Exposed Cut Copper Broken"}, "json_string": "{\"text\":\"Waxed Exposed Cut Copper Broken\"}"}}, "p.jungleStairs": {"CriteriaName": "minecraft.picked_up:minecraft.jungle_stairs", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Jungle Stairs Picked Up"}, "json_string": "{\"text\":\"Jungle Stairs Picked Up\"}"}}, "u.spruceSign": {"CriteriaName": "minecraft.used:minecraft.spruce_sign", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Spruce Sign Used"}, "json_string": "{\"text\":\"Spruce Sign Used\"}"}}, "u.vine": {"CriteriaName": "minecraft.used:minecraft.vine", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Vine Used"}, "json_string": "{\"text\":\"Vine Used\"}"}}, "u.bowl": {"CriteriaName": "minecraft.used:minecraft.bowl", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Bowl Used"}, "json_string": "{\"text\":\"Bowl Used\"}"}}, "q.polishedBasalt": {"CriteriaName": "minecraft.dropped:minecraft.polished_basalt", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Polished Basalt Dropped"}, "json_string": "{\"text\":\"Polished Basalt Dropped\"}"}}, "q.rabbit": {"CriteriaName": "minecraft.dropped:minecraft.rabbit", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Rabbit Dropped"}, "json_string": "{\"text\":\"Rabbit Dropped\"}"}}, "u.strippedAcaciaLog": {"CriteriaName": "minecraft.used:minecraft.stripped_acacia_log", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Stripped Acacia Log Used"}, "json_string": "{\"text\":\"Stripped Acacia Log Used\"}"}}, "tc.temp": {"CriteriaName": "dummy", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "tc.temp"}, "json_string": "{\"text\":\"tc.temp\"}"}}, "d.glowItemFrame": {"CriteriaName": "minecraft.killed_by:minecraft.glow_item_frame", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Killed by Glow Item Frame"}, "json_string": "{\"text\":\"Killed by Glow Item Frame\"}"}}, "u.blueDye": {"CriteriaName": "minecraft.used:minecraft.blue_dye", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Blue Dye Used"}, "json_string": "{\"text\":\"Blue Dye Used\"}"}}, "m.deepslateTileWall": {"CriteriaName": "minecraft.mined:minecraft.deepslate_tile_wall", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Deepslate Tile Wall Mined"}, "json_string": "{\"text\":\"Deepslate Tile Wall Mined\"}"}}, "q.oxidizedCutCopper": {"CriteriaName": "minecraft.dropped:minecraft.oxidized_cut_copper", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Oxidized Cut Copper Dropped"}, "json_string": "{\"text\":\"Oxidized Cut Copper Dropped\"}"}}, "c.goldenHoe": {"CriteriaName": "minecraft.crafted:minecraft.golden_hoe", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Golden Hoe Crafted"}, "json_string": "{\"text\":\"Golden Hoe Crafted\"}"}}, "c.infestedStoneBricks": {"CriteriaName": "minecraft.crafted:minecraft.infested_stone_bricks", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Infested Stone Bricks Crafted"}, "json_string": "{\"text\":\"Infested Stone Bricks Crafted\"}"}}, "q.scaffolding": {"CriteriaName": "minecraft.dropped:minecraft.scaffolding", "RenderType": "integer", "DisplayName": {"json_dict": {"text": "Scaffolding Dropped"}, "json_string": "{\"text\":\"Scaffolding Dropped\"}"}}}, "PlayerScores": {"The_Doctor_EV": {"p.peony": 4, "q.woodenHoe": 1, "m.campfire": 1, "c.birchBoat": 1, "p.glass": 16, "m.whiteTerracotta": 624, "q.greenCarpet": 1, "u.deepslateIronOre": 53, "u.waterBucket": 195, "b.leatherBoots": 1, "u.acaciaPlanks": 25, "c.bricks": 1848, "g.raidTrigger": 1, "cu.boatOneCm": 9502280, "k.mooshroom": 1, "p.spruceFence": 5, "p.deepslate": 533, "cu.playTime": 3643833, "p.rawCopper": 1716, "q.jungleFence": 4, "c.pinkDye": 73, "u.jungleSlab": 157, "d.creeper": 2, "m.tallSeagrass": 2, "p.stoneBrickStairs": 24, "m.clay": 925, "p.poisonousPotato": 9, "u.azalea": 4, "c.pinkWool": 5, "m.spruceLog": 18, "q.filledMap": 2, "p.chestMinecart": 1, "c.cauldron": 1, "u.yellowBed": 29, "u.terracotta": 4, "m.tnt": 1, "p.smoothBasalt": 5, "k.zombieVillager": 1, "cu.interactWithAnvil": 5, "p.purpleBed": 11, "u.lapisOre": 8, "m.whiteBanner": 1, "u.craftingTable": 19, "q.tuff": 916, "u.clay": 462, "g.health": 20, "p.salmon": 6, "g.damageDealt": 56028, "u.chiseledStoneBricks": 30, "c.oakDoor": 6, "q.shulkerBox": 1, "m.caveVinesPlant": 8, "c.darkOakStairs": 24, "m.melon": 32, "m.blueOrchid": 21, "u.sugarCane": 35, "p.stoneBrickSlab": 26, "u.melonSeeds": 19, "q.acaciaPlanks": 4, "m.cocoa": 1, "p.mutton": 11, "p.glassBottle": 5, "p.cookedRabbit": 2, "p.clayBall": 3556, "m.rail": 140, "p.shield": 1, "m.rawIronBlock": 2, "u.glassPane": 43, "m.redTulip": 23, "p.rawIron": 304, "p.shulkerBox": 6, "m.pinkConcrete": 1, "p.goldenApple": 2, "p.grassBlock": 1, "u.cobblestone": 375, "g.sneakTime": 103277, "m.cauldron": 1, "m.azureBluet": 23, "p.dirt": 5691, "q.coalOre": 2, "q.junglePlanks": 224, "g.air": 300, "b.ironShovel": 5, "m.snowBlock": 14, "c.lantern": 9, "tc.use_netherite": 0, "q.lapisLazuli": 67, "k.spider": 24, "c.spruceFence": 120, "p.mossyCobblestone": 10, "b.ironAxe": 2, "u.stonecutter": 3, "u.diamondSword": 764, "p.slimeBall": 6, "u.floweringAzalea": 12, "p.yellowConcrete": 2, "p.redstoneOre": 8, "m.sugarCane": 136, "p.deepslateGoldOre": 9, "u.darkOakStairs": 4, "m.sandstone": 196, "u.bakedPotato": 202, "p.sunflower": 257, "p.jungleBoat": 49, "c.birchStairs": 20, "m.stoneBricks": 70, "p.blackWool": 1, "m.pumpkinStem": 11, "m.pointedDripstone": 3, "p.beef": 5, "c.birchSlab": 198, "u.rawIronBlock": 1, "u.stonePickaxe": 263, "g.fillCauldron": 2, "m.stoneBrickStairs": 26, "q.ironAxe": 1, "u.pinkConcrete": 1, "k.salmon": 11, "u.fletchingTable": 1, "u.deepslateCopperOre": 70, "p.redTerracotta": 517, "m.jungleFence": 7, "g.interactWithCartographyTable": 1, "m.tuff": 1991, "u.spruceFence": 125, "p.bricks": 223, "c.shears": 1, "m.jungleStairs": 3, "m.floweringAzalea": 24, "g.timeSinceRest": 11031, "q.scaffolding": 71, "m.powderSnow": 7, "p.dispenser": 2, "p.jungleLog": 354, "g.mobKills": 386, "q.rabbitHide": 1, "m.cutCopperStairs": 70, "c.wheat": 153, "m.glowstone": 22, "q.ironIngot": 27, "u.stoneBrickStairs": 49, "m.bookshelf": 16, "m.dripstoneBlock": 19, "cu.interactWithCartographyTable": 1, "p.diamond": 87, "g.interactWithStonecutter": 34, "u.deepslateBricks": 1446, "m.kelp": 1, "q.sprucePlanks": 12, "m.oakLog": 9, "tc.use_iron": 0, "p.whiteBed": 20, "u.redstoneOre": 8, "m.cartographyTable": 1, "p.chest": 14, "tc.use_wood": 0, "u.glass": 24, "p.furnace": 20, "q.pumpkinSeeds": 5, "u.gravel": 3, "k.slime": 3, "b.stonePickaxe": 2, "c.brick": 1848, "c.oakPlanks": 308, "p.glassPane": 5, "u.whiteBanner": 2, "c.ironHoe": 1, "q.leatherBoots": 1, "p.coarseDirt": 8, "m.birchStairs": 1, "c.shield": 1, "u.ironHoe": 185, "p.playerHead": 5, "p.polishedGranite": 491, "u.cookedChicken": 6, "c.furnace": 14, "g.interactWithGrindstone": 5, "p.rabbitHide": 1, "u.composter": 2, "c.cookedPorkchop": 19, "q.dirt": 672, "c.darkOakPlanks": 264, "u.diamondShovel": 7467, "p.pinkTulip": 3, "p.boneMeal": 97, "q.spiderEye": 3, "p.goldIngot": 14, "g.useCauldron": 1, "p.snowball": 24, "p.coalOre": 437, "rc_display": 0, "g.openChest": 1436, "p.deepslateIronOre": 53, "k.skeleton": 95, "m.cobbledDeepslate": 58, "p.magmaCream": 1, "p.jungleSapling": 41, "c.scaffolding": 150, "u.tuff": 407, "m.dandelion": 23, "c.emerald": 9, "p.egg": 20, "p.cookedChicken": 12, "u.jungleSign": 9, "k.pig": 10, "m.shulkerBox": 5, "u.glowBerries": 16, "c.diamondPickaxe": 3, "u.cookedSalmon": 4, "u.darkOakDoor": 3, "p.rawIronBlock": 2, "p.composter": 1, "m.redstoneBlock": 1, "q.dripstoneBlock": 7, "p.bamboo": 100, "m.sunflower": 72, "m.smoothStone": 1, "c.diamondAxe": 1, "q.bread": 24, "c.air": 0, "u.cookedCod": 3, "q.granite": 8, "u.bow": 98, "p.leatherBoots": 1, "c.spruceDoor": 3, "c.stoneSword": 1, "q.diamondShovel": 1, "u.obsidian": 1, "m.grassBlock": 3623, "p.whiteTulip": 33, "cu.interactWithSmoker": 21, "m.jungleSapling": 6, "q.jungleBoat": 1, "p.book": 48, "m.azalea": 4, "q.deepslate": 211, "m.redstoneWire": 3, "p.diamondPickaxe": 3, "p.smoothStone": 1, "m.lightGrayTerracotta": 129, "p.pinkDye": 40, "k.zombie": 135, "q.stoneSword": 1, "u.lantern": 9, "m.beetroots": 1, "g.openShulkerBox": 70, "p.oakLog": 126, "p.gunpowder": 19, "c.loom": 1, "u.loom": 1, "m.whiteTulip": 15, "m.terracotta": 223, "q.rottenFlesh": 66, "tc.temp": 1561, "m.ironOre": 224, "c.ironHelmet": 2, "m.darkOakLog": 13, "m.amethystBlock": 8, "p.copperIngot": 155, "u.ironShovel": 1297, "p.azureBluet": 40, "u.birchStairs": 21, "p.acaciaPlanks": 97, "u.string": 2, "c.melonSeeds": 48, "q.jungleSlab": 1, "u.book": 6, "p.pinkBed": 12, "q.darkOakFence": 2, "g.interactWithAnvil": 5, "g.totalWorldTime": 3643833, "p.goldenHelmet": 2, "q.flint": 46, "g.timeSinceDeath": 303857, "p.hayBlock": 17, "c.campfire": 2, "m.darkOakPlanks": 31, "p.jungleFence": 13, "m.jungleLog": 8, "k.enderman": 1, "cu.walkOnWaterOneCm": 412138, "p.cookie": 2, "u.whiteTerracotta": 510, "k.caveSpider": 2, "p.diamondAxe": 1, "m.deepslateLapisOre": 17, "u.stoneBrickSlab": 26, "m.goldOre": 8, "c.cookedSalmon": 4, "p.granite": 979, "b.ironPickaxe": 7, "cu.fallOneCm": 438541, "m.potatoes": 274, "q.goldNugget": 3, "tc.valid": 0, "m.playerWallHead": 1, "q.spyglass": 1, "u.cookedMutton": 6, "c.rail": 532, "c.torch": 696, "m.scaffolding": 119, "m.pumpkin": 65, "u.map": 2, "m.cutCopperSlab": 258, "p.melon": 25, "q.sand": 439, "m.deepslateIronOre": 111, "c.ironPickaxe": 7, "m.spruceLeaves": 13, "c.smoothStone": 8, "u.egg": 8, "cu.interactWithBlastFurnace": 93, "cu.climbOneCm": 297575, "u.woodenPickaxe": 50, "u.ironOre": 72, "k.magmaCube": 16, "k.bat": 1, "u.cookedPorkchop": 22, "u.emeraldOre": 3, "g.enchantItem": 8, "q.poisonousPotato": 2, "p.spruceSlab": 11, "u.deepslateLapisOre": 6, "p.stick": 480, "m.acaciaLog": 6, "m.yellowTerracotta": 203, "u.polishedDiorite": 143, "p.grass": 4, "m.farmland": 38, "m.glass": 2, "p.rottenFlesh": 189, "c.whiteConcretePowder": 376, "p.apple": 6, "tc.use_diamond": 0, "q.oakSapling": 4, "q.diamondAxe": 1, "m.spruceFence": 5, "cusNetPor": 0, "m.mossyCobblestone": 8, "g.damageBlockedByShield": 470, "p.brownTerracotta": 51, "p.calcite": 318, "c.pinkBed": 1, "u.blastFurnace": 2, "c.goldIngot": 23, "m.caveVines": 5, "c.glassPane": 48, "m.polishedDiorite": 97, "p.suspiciousStew": 1, "m.vine": 5, "p.spruceStairs": 3, "g.interactWithCraftingTable": 273, "m.jungleWallSign": 2, "p.coal": 1266, "c.pumpkinSeeds": 20, "p.whiteBanner": 4, "m.composter": 1, "q.torch": 18, "p.mossCarpet": 3, "u.jungleDoor": 2, "p.lapisLazuli": 505, "c.ironBoots": 2, "m.wallTorch": 69, "c.jungleStairs": 8, "q.rawGold": 1, "p.bone": 97, "p.redTulip": 54, "u.redTerracotta": 21, "u.diamondPickaxe": 13599, "p.spiderEye": 10, "p.birchPlanks": 28, "p.wheatSeeds": 1835, "b.diamondPickaxe": 1, "p.orangeTulip": 81, "p.cocoaBeans": 3, "p.ladder": 1, "m.redTerracotta": 272, "p.cauldron": 1, "p.deepslateTiles": 6, "m.spruceStairs": 2, "k.witch": 3, "g.bellRing": 13, "p.birchLog": 101, "u.furnace": 30, "cu.crouchOneCm": 305855, "p.darkOakSlab": 4, "m.oakPlanks": 5, "m.mossBlock": 1, "p.stonecutter": 1, "m.redstoneOre": 19, "m.snow": 4, "q.spruceStairs": 2, "q.wheat": 1, "c.sugar": 132, "k.drowned": 2, "c.jungleSlab": 336, "m.birchPlanks": 4, "q.string": 43, "q.sunflower": 64, "p.woodenHoe": 1, "p.birchBoat": 24, "TreeCapitator": 0, "u.birchSlab": 134, "g.interactWithSmoker": 21, "p.cornflower": 16, "p.cobblestone": 856, "c.ladder": 42, "u.sand": 51, "c.minecart": 2, "q.carrot": 5, "p.birchSapling": 33, "u.poweredRail": 31, "p.lapisOre": 8, "p.junglePlanks": 87, "cu.interactWithStonecutter": 34, "m.granite": 725, "b.ironHelmet": 1, "m.spruceSlab": 10, "m.diorite": 200, "u.cauldron": 2, "q.wheatSeeds": 76, "m.calcite": 287, "m.birchSlab": 10, "p.floweringAzalea": 23, "p.diorite": 185, "duraPing": 0, "m.poweredRail": 2, "u.apple": 6, "u.stone": 45, "m.amethystCluster": 4, "p.orangeTerracotta": 23, "m.hayBlock": 17, "u.woodenSword": 32, "m.emeraldOre": 13, "u.melonSlice": 17, "m.junglePlanks": 3, "p.cookedPorkchop": 3, "p.diamondShovel": 1, "m.copperOre": 694, "m.torch": 126, "p.tripwireHook": 3, "p.polishedDiorite": 185, "m.wheat": 441, "u.deepslateDiamondOre": 11, "u.diamondAxe": 1485, "q.gunpowder": 1, "u.boneMeal": 592, "p.lightGrayTerracotta": 246, "cu.flyOneCm": 1057247, "m.poppy": 1, "u.deepslateTiles": 62, "m.whiteConcretePowder": 2, "m.chest": 16, "q.bone": 6, "c.jungleFence": 223, "k.glowSquid": 2, "p.pinkConcretePowder": 202, "p.darkOakLog": 104, "u.diamondHoe": 1409, "q.rawCopper": 24, "p.emeraldOre": 3, "c.bookshelf": 25, "m.bricks": 237, "p.yellowBed": 29, "p.carrot": 472, "p.saddle": 2, "p.ironSword": 1, "u.stoneBricks": 1367, "tc.damage": 152, "c.birchPlanks": 380, "u.smoker": 2, "c.leatherBoots": 2, "m.tripwireHook": 3, "m.andesite": 35, "p.porkchop": 19, "p.lilyPad": 47, "q.polishedDiorite": 1, "u.ladder": 7, "p.darkOakSapling": 7, "c.cookedBeef": 5, "q.snowball": 24, "p.cutCopperSlab": 262, "m.whiteBed": 21, "g.armor": 1, "c.glass": 322, "b.stoneAxe": 1, "m.dirtPath": 1, "p.goldenLeggings": 2, "g.sleepInBed": 163, "g.jump": 28162, "m.rootedDirt": 2, "p.brownMushroom": 3, "u.birchBoat": 24, "p.acaciaLog": 32, "u.whiteConcrete": 179, "g.deathCount": 14, "q.bakedPotato": 1, "b.woodenPickaxe": 1, "p.filledMap": 3, "p.beetrootSeeds": 4, "p.amethystShard": 31, "p.oakPlanks": 416, "m.deepslateBricks": 60, "c.fletchingTable": 1, "u.potato": 490, "p.charcoal": 2, "p.spruceSapling": 71, "p.whiteConcretePowder": 154, "c.clay": 443, "c.jungleDoor": 3, "q.tripwireHook": 1, "p.deepslateDiamondOre": 11, "g.playMinutes": 3036, "u.oakBoat": 4, "c.woodenShovel": 2, "p.azalea": 7, "c.stick": 588, "q.ironHoe": 1, "c.junglePlanks": 658, "p.jungleSign": 7, "u.scaffolding": 755, "p.acaciaSapling": 13, "k.sheep": 8, "m.packedIce": 32, "g.hunger": 20, "c.craftingTable": 11, "m.deepslateCopperOre": 177, "cu.swimOneCm": 38114, "m.stone": 2340, "p.minecart": 11, "u.cutCopperStairs": 197, "q.whiteConcretePowder": 528, "c.redstoneBlock": 31, "c.jungleBoat": 1, "p.whiteDye": 17, "p.ironIngot": 90, "c.stone": 1198, "p.polishedDioriteSlab": 128, "p.scaffolding": 764, "cu.walkUnderWaterOneCm": 427254, "g.level": 29, "q.pinkConcretePowder": 64, "p.spruceLog": 324, "rc_help": 0, "cu.interactWithGrindstone": 5, "p.rail": 210, "c.stonecutter": 1, "q.woodenSword": 1, "b.diamondShovel": 1, "c.diamondSword": 1, "p.goldenHoe": 2, "m.basalt": 536, "c.itemFrame": 8, "m.deepslateDiamondOre": 56, "p.basalt": 1, "q.melonSlice": 18, "q.arrow": 8, "u.carrot": 335, "color": 0, "u.ironPickaxe": 1742, "p.deepslateLapisOre": 6, "p.darkOakPlanks": 17, "q.purpleBed": 1, "k.chicken": 7, "p.bow": 11, "m.yellowBed": 28, "cu.interactWithCraftingTable": 273, "p.oakSapling": 86, "q.stone": 431, "p.bucket": 1, "p.feather": 2, "c.stonePickaxe": 2, "u.ironAxe": 220, "q.mossyCobblestone": 10, "c.blastFurnace": 2, "u.jungleStairs": 11, "c.ironIngot": 600, "q.orangeTerracotta": 23, "p.leatherLeggings": 3, "c.copperBlock": 160, "p.arrow": 119, "u.stoneBrickWall": 9, "m.dirt": 1705, "c.oakBoat": 1, "p.melonSlice": 43, "q.beetrootSeeds": 3, "c.stoneBricks": 488, "p.cobbledDeepslate": 1759, "g.play": 3036, "m.spruceSapling": 8, "u.woodenShovel": 87, "p.goldenBoots": 2, "p.pumpkin": 70, "m.netherrack": 575, "q.emerald": 2, "p.darkOakFence": 2, "u.spruceDoor": 1, "c.copperIngot": 1464, "c.bread": 218, "p.ironAxe": 1, "d.skeleton": 1, "cu.sprintOneCm": 7680325, "p.stoneBrickWall": 8, "c.cookedMutton": 8, "q.darkOakSlab": 4, "c.ironLeggings": 2, "u.cookedBeef": 5, "cu.walkOneCm": 14610821, "cu.tradedWithVillager": 30, "p.redstoneBlock": 1, "m.orangeTulip": 27, "c.darkOakDoor": 3, "p.oakLeaves": 7, "c.ironAxe": 2, "c.book": 29, "u.pumpkinSeeds": 30, "q.cobblestone": 230, "q.yellowTerracotta": 14, "p.deepslateRedstoneOre": 27, "p.birchStairs": 2, "c.diamondHoe": 1, "p.cookedBeef": 3, "cu.interactWithFurnace": 536, "p.whiteConcrete": 555, "p.jungleStairs": 3, "tc.disabled": 0, "p.string": 65, "u.deepslate": 256, "m.darkOakSlab": 4, "m.deepslateRedstoneOre": 74, "u.shield": 16, "c.boneMeal": 303, "u.rail": 667, "m.purpleBed": 10, "p.glowstone": 20, "u.bookshelf": 25, "m.furnace": 22, "tc.sneak": 0, "u.bread": 97, "p.flint": 112, "p.clay": 19, "p.emerald": 20, "q.grass": 2, "p.whiteWool": 13, "k.creeper": 18, "p.terracotta": 388, "m.whiteConcrete": 179, "u.dirt": 2878, "p.lilac": 3, "u.tnt": 1, "u.enchantedBook": 1, "p.whiteTerracotta": 754, "c.spyglass": 1, "tc.use_stone": 0, "p.potato": 1362, "u.deepslateGoldOre": 7, "u.stoneAxe": 35, "m.cornflower": 16, "k.pillager": 9, "u.cutCopperSlab": 497, "m.mediumAmethystBud": 1, "g.openBarrel": 33, "u.coalOre": 389, "q.bucket": 1, "p.copperOre": 474, "p.glowInkSac": 20, "p.oakBoat": 3, "u.calcite": 20, "u.copperOre": 138, "m.lapisOre": 27, "u.oakDoor": 2, "p.pumpkinSeeds": 21, "q.ironNugget": 6, "q.glowstone": 15, "u.darkOakPlanks": 188, "m.tallGrass": 59, "c.composter": 1, "c.bucket": 3, "u.chest": 36, "p.andesite": 34, "c.acaciaPlanks": 128, "m.deepslateTiles": 6, "p.tuff": 1978, "p.cartographyTable": 1, "c.diamondShovel": 2, "u.stoneSword": 106, "c.whiteDye": 64, "u.flintAndSteel": 1, "u.bucket": 195, "m.jungleSlab": 10, "u.potion": 1, "q.redstone": 8, "m.deepslateGoldOre": 15, "c.ironSword": 1, "p.musicDiscFar": 1, "p.deepslateCopperOre": 70, "c.chest": 25, "tc.use_gold": 0, "cu.sleepInBed": 163, "p.gravel": 1091, "m.cobblestone": 63, "q.cobbledDeepslate": 157, "m.cobweb": 39, "q.pointedDripstone": 8, "u.spruceSapling": 24, "u.wheatSeeds": 422, "m.grass": 497, "b.woodenShovel": 1, "k.rabbit": 2, "m.smoothBasalt": 5, "u.whiteBed": 23, "q.birchStairs": 1, "u.polishedGranite": 330, "p.leatherChestplate": 1, "b.ironBoots": 1, "m.blackstone": 56, "p.leather": 7, "m.orangeTerracotta": 26, "p.birchSlab": 10, "u.itemFrame": 10, "c.stoneBrickSlab": 108, "u.bricks": 485, "q.bow": 7, "p.amethystBlock": 8, "u.jungleFenceGate": 3, "m.sprucePlanks": 6, "m.acaciaPlanks": 1, "p.goldenShovel": 1, "c.rawIron": 9, "g.playTime": 3643833, "m.stoneBrickWall": 9, "p.pinkConcrete": 129, "u.campfire": 2, "u.cartographyTable": 1, "u.pinkBed": 13, "m.coarseDirt": 8, "p.oakDoor": 2, "u.spruceSlab": 167, "k.cow": 2, "u.playerHead": 5, "u.shulkerBox": 8, "q.darkOakLog": 4, "u.cobbledDeepslate": 85, "u.minecart": 11, "u.cookedRabbit": 1, "m.ladder": 1, "p.spyglass": 1, "p.dandelion": 43, "p.ironOre": 82, "c.stoneAxe": 1, "p.glowBerries": 10, "m.sand": 1251, "u.jungleBoat": 48, "u.salmon": 2, "u.birchPlanks": 72, "g.leaveGame": 44, "m.craftingTable": 6, "p.sugarCane": 217, "q.phantomMembrane": 1, "u.torch": 900, "q.gravel": 494, "u.oakPlanks": 43, "m.coalOre": 1187, "c.pinkConcretePowder": 264, "p.itemFrame": 2, "g.drop": 503, "p.rawGold": 29, "p.greenCarpet": 1, "q.glowInkSac": 3, "m.peony": 3, "c.stoneBrickStairs": 20, "c.ironShovel": 5, "p.yellowTerracotta": 222, "p.stoneBricks": 70, "m.birchLog": 16, "u.purpleBed": 10, "c.bakedPotato": 316, "p.sprucePlanks": 8, "u.sprucePlanks": 74, "p.blueOrchid": 21, "q.oakLeaves": 7, "cu.talkedToVillager": 56, "u.sunflower": 1, "m.darkOakFence": 2, "cu.minecartOneCm": 223901, "c.bow": 2, "m.oakLeaves": 29, "m.podzol": 40, "c.sprucePlanks": 532, "p.cutCopperStairs": 74, "p.poweredRail": 3, "q.jungleSapling": 4, "m.deepslate": 2616, "p.deepslateBricks": 58, "c.smoker": 2, "p.stone": 1366, "q.suspiciousStew": 2, "u.pinkConcretePowder": 2, "q.diamondPickaxe": 3, "q.coarseDirt": 1, "p.redstone": 300, "c.ironChestplate": 2, "m.polishedGranite": 272, "u.whiteConcretePowder": 2, "m.repeater": 1, "m.pinkBed": 12, "p.wheat": 460, "m.carrots": 116, "cu.damageBlockedByShield": 470, "u.jungleSapling": 21, "q.whiteWool": 3, "m.pinkTulip": 1, "m.dispenser": 2, "d.witch": 1, "p.pointedDripstone": 11, "c.ironBlock": 31, "q.andesite": 21, "p.craftingTable": 6, "u.spyglass": 160, "c.poweredRail": 72, "g.tradedWithVillager": 30, "q.coal": 1, "q.lilyPad": 32, "p.sand": 963, "p.dripstoneBlock": 12, "c.spruceSlab": 204, "u.redstoneBlock": 25, "q.stick": 29, "p.jungleSlab": 9, "u.jungleFence": 229, "m.pinkConcretePowder": 2, "q.musicDiscFar": 1, "p.torch": 205, "k.blaze": 1, "m.stoneBrickSlab": 22, "p.bakedPotato": 5, "m.gravel": 1237, "q.birchPlanks": 43, "g.talkedToVillager": 56, "p.crossbow": 1, "q.mossCarpet": 3, "c.lapisBlock": 36, "c.charcoal": 62, "g.interactWithBlastFurnace": 93, "u.deepslateRedstoneOre": 27, "m.brownTerracotta": 66, "g.damageTaken": 20936, "c.shulkerBox": 3, "c.jungleFenceGate": 3, "g.interactWithFurnace": 536, "u.ironSword": 170, "q.smoothStone": 1, "q.oakPlanks": 324, "p.phantomMembrane": 2}, "Andre759": {"p.trident": 1, "cu.interactWithStonecutter": 69, "m.granite": 4, "p.glass": 4, "b.ironHelmet": 1, "u.waterBucket": 47, "m.diorite": 1, "u.oxeyeDaisy": 2, "u.cauldron": 1, "p.redBanner": 15, "q.wheatSeeds": 48, "cu.boatOneCm": 873177, "d.spider": 1, "p.diorite": 1, "cu.playTime": 2383488, "duraPing": 0, "c.pinkDye": 8, "u.apple": 36, "p.grayWool": 1, "d.creeper": 2, "u.stone": 1, "m.tallSeagrass": 1, "p.stoneBrickStairs": 13, "m.hayBlock": 60, "m.spruceDoor": 1, "c.pinkWool": 8, "m.spruceLog": 7, "m.emeraldOre": 2, "q.oakSlab": 5, "c.cauldron": 1, "p.netherBrickSlab": 12, "m.bamboo": 124, "c.woodenPickaxe": 1, "p.smoothBasalt": 1, "k.zombieVillager": 5, "m.torch": 128, "m.wheat": 356, "q.gunpowder": 1, "u.craftingTable": 15, "q.tuff": 321, "u.boneMeal": 98, "p.strippedOakLog": 1, "g.health": 20, "p.shears": 1, "p.salmon": 5, "cu.flyOneCm": 1207610, "g.damageDealt": 34524, "m.poppy": 177, "u.deepslateTiles": 435, "m.netherBricks": 739, "m.mossyStoneBricks": 28, "m.chest": 4, "q.bone": 5, "m.netherBrickFence": 34, "m.bricks": 33, "u.ironBars": 36, "p.carrot": 568, "c.flowerBannerPattern": 1, "p.redWool": 3, "u.crackedStoneBricks": 161, "u.netherBricks": 212, "c.redBanner": 8, "u.stoneBricks": 2286, "tc.damage": 42, "g.animalsBred": 2, "u.redBanner": 23, "d.enderman": 1, "c.birchPlanks": 240, "m.andesite": 48, "m.rail": 39, "u.ladder": 17, "p.stoneSword": 2, "q.snowball": 8, "u.glassPane": 327, "g.armor": 15, "p.rawIron": 229, "u.trident": 9, "p.cod": 7, "c.glass": 821, "c.oakPressurePlate": 2, "p.crackedDeepslateBricks": 3, "b.stoneAxe": 8, "m.dirtPath": 2, "u.cobblestone": 112, "g.sleepInBed": 61, "g.sneakTime": 67890, "g.jump": 17203, "m.glassPane": 10, "p.dirt": 3204, "u.dandelion": 4, "u.cod": 1, "g.air": 300, "g.deathCount": 37, "m.snowBlock": 16, "p.netherBrickFence": 33, "b.woodenPickaxe": 1, "q.grayWool": 1, "c.lantern": 38, "u.pumpkin": 3, "b.ironSword": 1, "tc.use_netherite": 0, "p.oakPlanks": 261, "k.spider": 13, "c.oakSlab": 12, "c.cookedCod": 6, "m.deepslateBricks": 8, "p.mossyCobblestone": 3, "m.oakSapling": 3, "u.potato": 3, "u.stonecutter": 4, "p.spruceSapling": 14, "u.hayBlock": 25, "c.jungleDoor": 3, "p.goldNugget": 133, "m.sugarCane": 8, "g.playMinutes": 1986, "u.oakBoat": 28, "m.redWallBanner": 11, "c.stick": 656, "c.stoneBrickWall": 38, "p.sunflower": 1, "c.junglePlanks": 8, "p.jungleSign": 1, "u.scaffolding": 176, "m.packedIce": 2, "c.craftingTable": 7, "g.hunger": 20, "m.stone": 1648, "cu.swimOneCm": 194134, "c.netherBrickSlab": 82, "m.stoneBricks": 423, "p.roseBush": 35, "p.ironIngot": 1, "c.stone": 2389, "p.scaffolding": 176, "m.chain": 3, "c.goldenCarrot": 56, "cu.walkUnderWaterOneCm": 251447, "u.stonePickaxe": 4586, "g.level": 40, "g.fillCauldron": 1, "m.stoneBrickStairs": 13, "p.spruceLog": 32, "k.salmon": 6, "m.netherGoldOre": 32, "rc_help": 0, "p.blazeRod": 1, "cu.interactWithGrindstone": 1, "u.stoneShovel": 4258, "u.snowball": 49, "p.rail": 53, "c.stonecutter": 1, "g.interactWithCartographyTable": 1, "p.soulLantern": 17, "q.basalt": 5, "m.tuff": 322, "p.bricks": 33, "u.spruceLog": 1, "c.shears": 1, "q.redStainedGlassPane": 7, "c.redStainedGlassPane": 48, "u.stoneHoe": 40, "q.diorite": 1, "m.basalt": 5, "g.timeSinceRest": 12494, "u.oakLog": 175, "p.netherrack": 4, "m.powderSnow": 3, "m.deepslateDiamondOre": 30, "p.basalt": 5, "p.oxeyeDaisy": 3, "p.jungleLog": 128, "g.mobKills": 260, "q.arrow": 3, "u.carrot": 355, "u.woodenAxe": 31, "q.oakFence": 5, "c.wheat": 324, "q.pufferfish": 1, "color": 0, "q.dandelion": 1, "u.stoneBrickStairs": 66, "u.ironPickaxe": 2783, "m.chiseledDeepslate": 1, "p.pinkWool": 5, "m.dripstoneBlock": 2, "cu.interactWithCartographyTable": 1, "p.diamond": 30, "p.crackedStoneBricks": 47, "g.interactWithStonecutter": 69, "u.redStainedGlassPane": 41, "p.bow": 8, "u.deepslateBricks": 1, "m.oakLog": 196, "cu.interactWithCraftingTable": 220, "tc.use_iron": 0, "p.oakSapling": 378, "p.lantern": 10, "p.chest": 4, "tc.use_wood": 0, "u.glass": 372, "p.furnace": 4, "d.ghast": 1, "p.pufferfish": 1, "c.stonePickaxe": 36, "c.paper": 3, "b.woodenAxe": 1, "u.gravel": 1, "u.netherBrickStairs": 114, "b.stonePickaxe": 34, "c.ironIngot": 229, "c.oakPlanks": 1356, "c.crackedStoneBricks": 148, "c.ironNugget": 387, "p.arrow": 46, "u.stoneBrickWall": 49, "c.woodenAxe": 1, "m.soulLantern": 17, "m.dirt": 300, "k.witherSkeleton": 4, "c.oakBoat": 2, "p.cobbledDeepslate": 2532, "u.oakFence": 28, "g.play": 1986, "p.playerHead": 4, "p.pumpkin": 15, "m.netherrack": 3, "c.furnace": 9, "p.spruceDoor": 1, "g.interactWithGrindstone": 1, "u.composter": 2, "p.soulSand": 2, "u.spruceDoor": 4, "d.blaze": 1, "c.bread": 214, "q.dirt": 1857, "d.skeleton": 5, "p.ironChestplate": 1, "c.oakFenceGate": 5, "cu.sprintOneCm": 5637581, "p.boneMeal": 27, "p.stoneBrickWall": 8, "p.ironBars": 4, "q.spiderEye": 3, "c.ironLeggings": 2, "p.snowball": 57, "cu.walkOneCm": 8515855, "q.pinkWool": 3, "c.deepslateBricks": 1, "rc_display": 0, "g.openChest": 820, "m.sculkSensor": 3, "k.skeleton": 101, "c.scaffolding": 18, "q.glowLichen": 1, "m.dandelion": 29, "q.cobblestone": 280, "p.egg": 2, "k.polarBear": 2, "cu.interactWithFurnace": 479, "m.glowLichen": 7, "tc.disabled": 0, "q.sweetBerries": 3, "u.jungleSign": 2, "p.string": 28, "c.redWool": 106, "u.cookedSalmon": 4, "p.netherBricks": 722, "p.composter": 1, "m.deepslateRedstoneOre": 30, "q.dripstoneBlock": 2, "p.bamboo": 1497, "c.boneMeal": 75, "m.sunflower": 1, "m.roseBush": 35, "q.bamboo": 5, "p.sweetBerries": 141, "p.netherBrickStairs": 6, "c.air": 0, "m.furnace": 4, "u.cookedCod": 6, "q.granite": 2, "u.bow": 17, "tc.sneak": 0, "c.spruceDoor": 3, "b.trident": 1, "c.stoneSword": 4, "q.copperIngot": 2, "c.stoneShovel": 32, "m.grassBlock": 2812, "c.soulTorch": 8, "u.bread": 169, "m.stonecutter": 3, "p.flint": 8, "p.oakFence": 14, "p.emerald": 2, "u.netherrack": 1, "q.furnace": 1, "p.whiteWool": 129, "k.creeper": 2, "u.dirt": 945, "k.zombie": 82, "q.stoneSword": 2, "u.lantern": 46, "c.netherBrickStairs": 44, "c.oakFence": 45, "m.oakFenceGate": 1, "b.ironLeggings": 1, "tc.use_stone": 0, "p.potato": 1, "p.oakLog": 713, "p.gunpowder": 2, "c.loom": 1, "u.stoneAxe": 704, "m.cornflower": 1, "k.pillager": 11, "u.loom": 1, "m.netherBrickStairs": 6, "p.bell": 5, "g.openBarrel": 22, "q.rottenFlesh": 3, "tc.temp": 131, "m.ironOre": 196, "c.ironHelmet": 2, "u.birchSapling": 5, "p.oakBoat": 27, "p.copperIngot": 2, "m.lapisOre": 7, "u.milkBucket": 1, "m.tallGrass": 140, "c.composter": 1, "c.bucket": 2, "u.chest": 15, "q.craftingTable": 1, "p.pinkBed": 4, "g.totalWorldTime": 2383488, "p.andesite": 48, "p.goldenHelmet": 1, "c.lead": 4, "u.crossbow": 9, "m.deepslateTiles": 43, "g.timeSinceDeath": 12471, "p.hayBlock": 96, "u.granite": 2, "p.tuff": 321, "g.fishCaught": 12, "u.stoneSword": 625, "d.witherSkeleton": 2, "u.bucket": 49, "c.spruceStairs": 4, "c.redDye": 246, "cu.walkOnWaterOneCm": 167893, "q.redstone": 52, "m.deepslateGoldOre": 42, "c.ironSword": 3, "c.chest": 11, "tc.use_gold": 0, "u.soulLantern": 9, "m.deepslateLapisOre": 20, "cu.sleepInBed": 61, "p.inkSac": 2, "p.gravel": 54, "q.cobbledDeepslate": 1564, "m.cobblestone": 6, "m.goldOre": 12, "m.lantern": 2, "u.spruceSapling": 6, "u.wheatSeeds": 1025, "c.cookedSalmon": 4, "m.grass": 818, "q.smoothBasalt": 1, "p.granite": 4, "c.stoneHoe": 1, "b.ironPickaxe": 11, "cu.fallOneCm": 279329, "u.sweetBerries": 118, "c.soulLantern": 8, "m.smoothBasalt": 1, "cu.interactWithBrewingstand": 1, "tc.valid": 0, "m.playerWallHead": 1, "b.ironBoots": 2, "u.oakPressurePlate": 2, "c.torch": 964, "d.zombie": 8, "u.bricks": 33, "m.scaffolding": 120, "q.ironChestplate": 2, "q.bow": 3, "m.pumpkin": 9, "m.sprucePlanks": 2, "m.redBanner": 4, "m.deepslateIronOre": 34, "g.playTime": 2383488, "c.ironBars": 32, "c.ironPickaxe": 12, "m.stoneBrickWall": 8, "m.spruceLeaves": 9, "p.oakFenceGate": 1, "u.egg": 2, "u.pinkBed": 6, "p.stoneShovel": 2, "m.strippedOakLog": 1, "cu.climbOneCm": 99159, "p.glowLichen": 1, "u.woodenPickaxe": 59, "d.drowned": 5, "u.playerHead": 4, "m.grayWool": 1, "u.cobbledDeepslate": 1, "g.enchantItem": 1, "c.string": 44, "p.stick": 190, "p.dandelion": 29, "c.chain": 9, "c.stoneAxe": 11, "p.tropicalFish": 1, "m.netherBrickSlab": 12, "u.oakFenceGate": 5, "m.sand": 839, "q.shears": 1, "u.salmon": 1, "u.redWool": 60, "g.leaveGame": 63, "m.farmland": 1, "m.glass": 122, "q.birchSapling": 1, "m.craftingTable": 10, "p.sugarCane": 12, "p.rottenFlesh": 124, "u.torch": 1012, "p.apple": 36, "q.gravel": 53, "tc.use_diamond": 0, "k.ghast": 1, "u.oakPlanks": 885, "p.vine": 64, "m.coalOre": 878, "g.drop": 165, "p.rawGold": 54, "cusNetPor": 0, "m.mossyCobblestone": 3, "p.stoneHoe": 1, "m.ironBars": 4, "c.stoneBrickStairs": 38, "cu.interactWithLoom": 4, "c.pinkBed": 2, "p.stoneBricks": 420, "m.birchLog": 11, "c.goldIngot": 55, "b.stoneSword": 4, "p.sprucePlanks": 2, "c.glassPane": 528, "u.sprucePlanks": 2, "c.mossyCobblestoneWall": 1, "cu.talkedToVillager": 4, "c.bow": 1, "m.oakLeaves": 74, "c.sprucePlanks": 24, "m.bell": 2, "p.spruceStairs": 5, "g.interactWithCraftingTable": 220, "m.jungleWallSign": 1, "p.coal": 872, "q.chiseledDeepslate": 1, "m.oxeyeDaisy": 2, "m.deepslate": 2571, "p.whiteBanner": 4, "u.andesite": 1, "g.interactWithLoom": 4, "q.deepslateBricks": 1, "m.soulSand": 3, "m.composter": 1, "p.deepslateBricks": 8, "p.flintAndSteel": 1, "m.sweetBerryBush": 30, "c.deepslateTiles": 6, "u.spruceStairs": 9, "u.jungleDoor": 1, "u.oakSapling": 81, "p.lapisLazuli": 177, "m.oakFence": 14, "c.ironBoots": 3, "m.wallTorch": 40, "p.redstone": 131, "c.ironChestplate": 3, "c.yellowDye": 26, "p.chain": 3, "b.stoneShovel": 30, "c.hayBlock": 1, "p.bone": 57, "m.pinkBed": 4, "p.wheat": 330, "m.carrots": 156, "m.crackedDeepslateBricks": 3, "c.goldNugget": 324, "u.netherBrickFence": 2, "b.ironChestplate": 1, "p.mossyStoneBricks": 28, "p.spiderEye": 4, "d.witch": 1, "p.birchPlanks": 20, "q.andesite": 47, "p.wheatSeeds": 1074, "p.craftingTable": 9, "p.ladder": 3, "p.deepslateTiles": 43, "m.spruceStairs": 5, "k.witch": 1, "g.bellRing": 3, "q.coal": 2, "p.dripstoneBlock": 2, "p.birchLog": 60, "p.sand": 821, "k.stray": 1, "q.stick": 2, "u.furnace": 16, "cu.crouchOneCm": 181335, "u.chain": 8, "p.chiseledDeepslate": 1, "cu.horseOneCm": 159199, "m.oakPlanks": 99, "u.rottenFlesh": 126, "p.torch": 202, "k.blaze": 2, "p.stonecutter": 3, "m.seagrass": 1, "m.gravel": 62, "u.goldenSword": 111, "m.snow": 1, "g.talkedToVillager": 4, "c.mossyStoneBricks": 64, "k.drowned": 18, "p.crossbow": 1, "q.tropicalFish": 1, "q.string": 2, "b.goldenSword": 2, "u.cornflower": 1, "g.damageTaken": 21322, "u.mossyStoneBricks": 91, "g.interactWithBrewingstand": 1, "m.crackedStoneBricks": 47, "TreeCapitator": 0, "u.netherBrickSlab": 174, "g.interactWithFurnace": 479, "p.nautilusShell": 1, "p.cornflower": 1, "p.cobblestone": 1699, "c.ladder": 24, "u.ironSword": 404, "p.poppy": 176, "u.fishingRod": 17, "p.goldenSword": 2, "q.netherrack": 3, "u.bamboo": 22, "u.goldenCarrot": 4, "p.birchSapling": 29}, "SailorJaden": {"cu.interactWithStonecutter": 1, "c.air": 0, "m.furnace": 1, "m.granite": 7, "u.bow": 23, "tc.sneak": 0, "u.waterBucket": 14, "m.diorite": 8, "m.grassBlock": 10, "q.wheatSeeds": 6, "u.bread": 68, "p.flint": 10, "q.stoneAxe": 1, "p.diorite": 5, "p.rawCopper": 4, "cu.playTime": 181372, "duraPing": 0, "p.whiteWool": 1, "d.creeper": 1, "p.rabbit": 1, "k.creeper": 4, "u.dirt": 6, "k.zombie": 38, "c.arrow": 36, "p.lilac": 1, "m.hayBlock": 56, "u.woodenSword": 47, "tc.use_stone": 0, "p.oakLog": 24, "p.gunpowder": 7, "c.woodenPickaxe": 1, "u.stoneAxe": 52, "m.copperOre": 1, "k.pillager": 1, "m.torch": 1, "cu.interactWithAnvil": 3, "g.openBarrel": 2, "q.rottenFlesh": 14, "u.craftingTable": 9, "q.brownWool": 1, "m.ironOre": 49, "c.ironHelmet": 1, "p.glowInkSac": 13, "g.health": 20, "p.salmon": 1, "g.damageDealt": 18539, "cu.flyOneCm": 658354, "m.lapisOre": 3, "m.tallGrass": 30, "k.glowSquid": 7, "c.bucket": 1, "m.cobblestoneStairs": 1, "u.chest": 2, "g.interactWithAnvil": 3, "q.stonePickaxe": 1, "g.totalWorldTime": 181372, "k.squid": 1, "g.timeSinceDeath": 6725, "p.hayBlock": 56, "p.tuff": 56, "g.fishCaught": 7, "c.diamondShovel": 1, "p.mutton": 2, "u.flintAndSteel": 6, "c.fishingRod": 1, "u.bucket": 15, "p.porkchop": 17, "cu.walkOnWaterOneCm": 26360, "m.deepslateGoldOre": 51, "p.chicken": 17, "g.armor": 15, "p.rawIron": 98, "c.chest": 2, "p.cod": 4, "tc.use_gold": 0, "m.deepslateLapisOre": 4, "u.cobblestone": 113, "g.sneakTime": 3918, "g.sleepInBed": 3, "cu.sleepInBed": 3, "g.jump": 3354, "p.inkSac": 2, "p.gravel": 108, "q.cobbledDeepslate": 1, "m.cobblestone": 19, "p.dirt": 33, "g.air": 300, "g.deathCount": 5, "m.grass": 63, "b.woodenPickaxe": 1, "cu.fallOneCm": 113225, "p.bread": 2, "k.rabbit": 1, "tc.use_netherite": 0, "tc.valid": 0, "k.spider": 10, "p.leather": 2, "u.diamondSword": 270, "c.torch": 240, "g.playMinutes": 151, "u.anvil": 1, "c.stick": 148, "q.bow": 1, "q.ironPickaxe": 1, "k.sheep": 3, "c.craftingTable": 1, "g.hunger": 20, "c.woodenSword": 1, "cu.swimOneCm": 28458, "m.stone": 264, "m.deepslateIronOre": 49, "g.playTime": 181372, "c.ironPickaxe": 1, "m.pointedDripstone": 1, "p.beef": 4, "p.ironIngot": 2, "g.playerKills": 2, "p.obsidian": 14, "cu.walkUnderWaterOneCm": 13230, "u.stonePickaxe": 65, "cu.climbOneCm": 6752, "u.woodenPickaxe": 42, "g.level": 20, "k.cow": 2, "k.bat": 1, "q.ironAxe": 1, "u.cobbledDeepslate": 20, "u.cookedPorkchop": 8, "g.enchantItem": 2, "p.stick": 2, "c.diamondSword": 1, "m.tuff": 56, "c.stoneAxe": 1, "g.timeSinceRest": 6753, "p.brownWool": 1, "m.deepslateDiamondOre": 22, "g.mobKills": 135, "g.leaveGame": 3, "m.craftingTable": 8, "q.fishingRod": 1, "c.wheat": 504, "p.rottenFlesh": 51, "u.torch": 222, "color": 0, "tc.use_diamond": 0, "q.oakSapling": 6, "u.ironPickaxe": 248, "m.obsidian": 14, "p.cobblestoneStairs": 1, "u.oakPlanks": 16, "m.coalOre": 90, "m.dripstoneBlock": 24, "g.drop": 31, "p.rawGold": 49, "p.diamond": 22, "g.interactWithStonecutter": 1, "cusNetPor": 0, "g.damageBlockedByShield": 1375, "k.chicken": 17, "p.bow": 2, "m.oakLog": 24, "cu.interactWithCraftingTable": 44, "tc.use_iron": 0, "p.oakSapling": 6, "c.goldIngot": 37, "b.woodenSword": 1, "tc.use_wood": 0, "p.furnace": 1, "p.pufferfish": 2, "p.feather": 19, "cu.talkedToVillager": 3, "c.stonePickaxe": 1, "u.ironAxe": 39, "c.bow": 2, "m.oakLeaves": 13, "c.anvil": 1, "c.ironIngot": 67, "c.oakPlanks": 172, "g.interactWithCraftingTable": 44, "p.coal": 109, "m.deepslate": 459, "p.arrow": 23, "m.dirt": 24, "p.cobbledDeepslate": 428, "g.play": 151, "c.shield": 1, "p.lapisLazuli": 43, "c.ironBoots": 1, "m.wallTorch": 2, "p.playerHead": 2, "c.furnace": 1, "p.redstone": 163, "c.ironChestplate": 1, "c.cookedPorkchop": 16, "c.bread": 167, "p.ironAxe": 1, "p.bone": 27, "d.skeleton": 1, "cu.sprintOneCm": 428001, "u.diamondShovel": 137, "cu.damageBlockedByShield": 1375, "u.diamondPickaxe": 851, "c.ironLeggings": 1, "m.fire": 3, "p.spiderEye": 3, "cu.walkOneCm": 344872, "c.ironBlock": 3, "g.openChest": 58, "p.wheatSeeds": 6, "p.craftingTable": 8, "k.skeleton": 34, "c.ironAxe": 1, "p.dripstoneBlock": 2, "u.furnace": 2, "cu.crouchOneCm": 9317, "m.dandelion": 1, "m.lilac": 1, "q.lilac": 1, "p.torch": 4, "cu.interactWithFurnace": 46, "m.gravel": 118, "m.glowLichen": 1, "tc.disabled": 0, "k.pig": 9, "g.talkedToVillager": 3, "p.string": 8, "q.wheat": 3, "c.diamondPickaxe": 2, "p.enchantedBook": 1, "g.damageTaken": 4817, "m.deepslateRedstoneOre": 36, "TreeCapitator": 0, "g.interactWithFurnace": 46, "p.cobblestone": 266, "q.dripstoneBlock": 2, "u.shield": 40, "u.fishingRod": 15, "q.bread": 31}, ".GorgonX32": {"p.peony": 7, "q.oakButton": 1, "m.granite": 73, "tc.sneak": 0, "m.diorite": 35, "c.stoneShovel": 2, "m.grassBlock": 308, "u.bread": 1, "p.flint": 2, "p.oakFence": 3, "cu.boatOneCm": 160679, "d.spider": 5, "p.diorite": 28, "p.rawCopper": 135, "cu.playTime": 579205, "duraPing": 0, "c.pinkDye": 64, "p.emerald": 3, "d.creeper": 3, "u.dirt": 268, "p.stoneBrickStairs": 6, "m.emeraldOre": 2, "u.yellowBed": 1, "tc.use_stone": 0, "p.oakLog": 6, "c.woodenPickaxe": 3, "u.pinkStainedGlass": 28, "u.stoneAxe": 178, "m.copperOre": 49, "k.pillager": 1, "m.torch": 4, "g.openBarrel": 7, "u.craftingTable": 4, "tc.temp": 131, "m.ironOre": 32, "g.health": 20, "g.damageDealt": 2030, "cu.flyOneCm": 12009, "u.ironShovel": 411, "u.oakDoor": 1, "m.chest": 1, "q.bone": 1, "m.tallGrass": 6, "p.yellowBed": 1, "u.chest": 5, "q.stonePickaxe": 1, "g.totalWorldTime": 579205, "p.andesite": 134, "u.sugarCane": 1, "g.timeSinceDeath": 330, "tc.damage": 4, "p.tuff": 4, "u.poppy": 1, "d.enderman": 1, "p.mutton": 4, "c.oakButton": 1, "m.andesite": 137, "p.porkchop": 3, "u.ladder": 9, "cu.walkOnWaterOneCm": 60206, "p.chicken": 1, "g.armor": 0, "p.rawIron": 30, "c.chest": 4, "tc.use_gold": 0, "c.glass": 64, "b.stoneAxe": 2, "m.dirtPath": 3, "u.cobblestone": 14, "g.sneakTime": 30401, "g.sleepInBed": 6, "cu.sleepInBed": 6, "g.jump": 2355, "p.gravel": 13, "m.cobblestone": 1, "p.dirt": 787, "g.air": 300, "g.deathCount": 30, "m.grass": 92, "b.woodenShovel": 1, "b.ironShovel": 1, "p.granite": 70, "b.woodenPickaxe": 3, "c.stoneHoe": 1, "b.ironPickaxe": 5, "cu.fallOneCm": 86929, "tc.use_netherite": 0, "tc.valid": 0, "p.oakButton": 1, "c.torch": 184, "d.zombie": 3, "m.sugarCane": 3, "g.playMinutes": 482, "c.deepslate": 64, "c.stick": 232, "k.sheep": 1, "c.craftingTable": 3, "g.hunger": 20, "m.stone": 2678, "g.playTime": 579205, "c.ironPickaxe": 6, "p.blackWool": 1, "m.pointedDripstone": 5, "p.roseBush": 1, "c.stone": 64, "p.oakDoor": 1, "cu.walkUnderWaterOneCm": 50898, "u.stonePickaxe": 1700, "cu.climbOneCm": 5612, "u.woodenPickaxe": 183, "g.level": 6, "d.drowned": 2, "m.stoneBrickStairs": 6, "c.pinkStainedGlass": 40, "g.enchantItem": 5, "rc_help": 0, "u.stoneShovel": 278, "p.stick": 63, "m.tuff": 4, "c.stoneAxe": 3, "m.sand": 92, "u.stoneHoe": 68, "g.timeSinceRest": 362, "g.mobKills": 10, "g.leaveGame": 13, "q.arrow": 1, "m.craftingTable": 1, "u.woodenAxe": 25, "q.oakFence": 3, "p.sugarCane": 15, "p.rottenFlesh": 6, "u.torch": 119, "color": 0, "tc.use_diamond": 0, "u.stoneBrickStairs": 18, "u.ironPickaxe": 1732, "m.coalOre": 140, "m.dripstoneBlock": 11, "g.drop": 15, "cusNetPor": 0, "k.chicken": 2, "m.peony": 7, "c.stoneBrickStairs": 12, "c.ironShovel": 3, "u.dripstoneBlock": 2, "m.yellowBed": 1, "m.oakLog": 6, "cu.interactWithCraftingTable": 42, "tc.use_iron": 0, "p.oakSapling": 1, "p.chest": 1, "tc.use_wood": 0, "p.feather": 2, "c.stonePickaxe": 13, "m.oakLeaves": 2, "b.stonePickaxe": 13, "q.ironShovel": 1, "c.ironIngot": 23, "c.oakPlanks": 24, "g.interactWithCraftingTable": 42, "p.coal": 137, "m.deepslate": 245, "p.arrow": 3, "q.torch": 1, "m.dirt": 456, "c.stoneBricks": 20, "p.cobbledDeepslate": 233, "g.play": 482, "u.roseBush": 1, "u.woodenShovel": 60, "m.wallTorch": 10, "c.furnace": 4, "b.stoneShovel": 2, "p.bone": 1, "q.dirt": 55, "d.skeleton": 7, "cu.sprintOneCm": 36465, "u.peony": 12, "cu.walkOneCm": 1982359, "p.pointedDripstone": 9, "rc_display": 0, "g.openChest": 44, "p.wheatSeeds": 15, "p.craftingTable": 1, "k.skeleton": 1, "p.dripstoneBlock": 8, "p.sand": 72, "u.furnace": 4, "cu.crouchOneCm": 32098, "q.cobblestone": 130, "p.stonePickaxe": 1, "p.egg": 2, "u.rottenFlesh": 4, "p.torch": 68, "cu.interactWithFurnace": 23, "m.gravel": 18, "tc.disabled": 0, "k.pig": 2, "p.string": 3, "g.damageTaken": 8480, "TreeCapitator": 0, "g.interactWithFurnace": 23, "p.cobblestone": 2523, "c.ladder": 9, "p.poppy": 1, "p.ironShovel": 1, "m.roseBush": 1}, "TheDesuComplex": {"q.woodenHoe": 1, "c.jungleTrapdoor": 36, "p.diamondSword": 3, "m.campfire": 3, "p.darkOakLeaves": 194, "c.enderEye": 14, "p.coalBlock": 2, "u.deepslateIronOre": 400, "q.mossBlock": 6, "c.acaciaFenceGate": 8, "d.spider": 1, "p.rawCopper": 24197, "m.jungleTrapdoor": 36, "p.grayWool": 186, "m.grayTerracotta": 50, "u.jungleSlab": 9, "d.creeper": 3, "p.stoneBrickStairs": 9, "m.clay": 385, "p.purpurPillar": 1, "m.spruceLog": 120, "u.leatherBoots": 1, "q.filledMap": 5, "p.chestMinecart": 4, "p.stoneSlab": 16, "c.cauldron": 1, "u.yellowBed": 23, "p.smoothBasalt": 150, "p.chiseledSandstone": 19, "cu.interactWithAnvil": 76, "m.ice": 97, "p.orangeGlazedTerracotta": 63, "u.lapisOre": 122, "u.darkOakLog": 33, "u.boneBlock": 81, "u.magentaStainedGlass": 1, "m.whiteBanner": 3, "u.craftingTable": 71, "q.tuff": 3, "u.strippedWarpedStem": 6, "g.health": 20, "p.sculkSensor": 21, "p.salmon": 32, "c.whiteWool": 629, "p.flowerPot": 7, "m.netherBricks": 4, "u.stickyPiston": 3, "c.lectern": 32, "q.cobbledDeepslateSlab": 3, "m.cyanShulkerBox": 12, "m.playerHead": 5, "p.mushroomStew": 1, "u.sandstone": 31, "u.ironBars": 88, "u.yellowStainedGlassPane": 48, "u.lightGrayStainedGlass": 240, "u.enderPearl": 203, "m.blueOrchid": 39, "u.sugarCane": 213, "p.stoneBrickSlab": 48, "u.pinkStainedGlassPane": 46, "u.poppy": 1, "d.enderman": 1, "m.cocoa": 283, "p.mutton": 503, "p.daylightDetector": 7, "u.blueTerracotta": 3, "p.cookedRabbit": 1, "c.cutSandstone": 512, "m.boneBlock": 13, "m.rail": 628, "u.amethystCluster": 41, "q.glassBottle": 13, "p.chicken": 238, "m.redNetherBrickStairs": 13, "c.melon": 6, "q.waterBucket": 2, "m.cauldron": 3, "m.glassPane": 1, "p.dirt": 8458, "q.boneMeal": 9, "m.darkOakStairs": 5, "g.air": 300, "p.cutSandstoneSlab": 35, "b.ironShovel": 1, "u.stoneButton": 7, "p.crimsonStem": 204, "c.acaciaFence": 54, "q.lapisLazuli": 3, "c.oakSlab": 246, "c.spruceFence": 24, "p.mossyCobblestone": 49, "m.brownMushroomBlock": 358, "u.stonecutter": 3, "u.diamondSword": 9293, "m.deepslateBrickSlab": 8, "p.goldNugget": 2342, "c.pinkShulkerBox": 1, "p.deepslateGoldOre": 291, "p.magmaBlock": 105, "u.bakedPotato": 301, "c.polishedGranite": 210, "m.brownShulkerBox": 20, "p.woodenAxe": 1, "p.barrel": 28, "u.netheriteShovel": 13277, "q.spruceSapling": 10, "p.blackWool": 8, "m.pointedDripstone": 405, "p.beef": 370, "p.roseBush": 165, "m.enderChest": 11, "g.playerKills": 2, "c.driedKelpBlock": 128, "q.cobblestoneWall": 1, "u.stonePickaxe": 1001, "g.fillCauldron": 1, "k.salmon": 2, "p.redTerracotta": 428, "m.twistingVines": 2, "p.ancientDebris": 46, "p.bricks": 701, "u.spruceLog": 94, "c.shears": 28, "p.endStone": 315, "m.coalBlock": 2, "p.blueDye": 8, "m.floweringAzalea": 2, "c.whiteTerracotta": 128, "p.brownWool": 6, "m.powderSnow": 10, "p.jungleLog": 3673, "m.glowstone": 73, "c.wheat": 1155, "u.warpedPlanks": 12, "c.coalBlock": 345, "u.stoneSlab": 184, "u.stoneBrickStairs": 39, "m.bookshelf": 197, "p.enderPearl": 2510, "m.kelpPlant": 200, "p.pinkWool": 14, "m.dripstoneBlock": 495, "p.diamond": 836, "q.brownConcretePowder": 128, "u.comparator": 2, "p.strippedOakWood": 1, "m.infestedStoneBricks": 156, "c.polishedGraniteStairs": 64, "k.endermite": 1, "c.purpleTerracotta": 128, "tc.use_wood": 0, "u.glass": 32, "p.furnace": 89, "p.pufferfish": 22, "u.purpurPillar": 1, "u.beetrootSeeds": 160, "c.leatherHelmet": 2, "b.woodenAxe": 3, "p.lightBlueGlazedTerracotta": 4, "u.gravel": 318, "q.jungleLog": 128, "k.slime": 30, "c.brick": 34, "m.crimsonNylium": 70, "c.woodenAxe": 3, "b.shield": 1, "q.stonePressurePlate": 1, "m.endStoneBrickSlab": 1, "p.polishedGranite": 2, "u.redNetherBricks": 53, "p.strippedCrimsonStem": 32, "p.soulSand": 111, "q.blueIce": 14, "c.cookedPorkchop": 93, "c.smoothQuartz": 2, "c.acaciaSign": 12, "q.dirt": 196, "u.diamondShovel": 19552, "c.darkOakPlanks": 710, "p.pinkTulip": 6, "p.boneMeal": 353, "p.emeraldBlock": 2, "p.jungleLeaves": 162, "q.spiderEye": 4, "p.ironBars": 172, "p.goldIngot": 155, "m.fire": 31, "p.coalOre": 1288, "u.beetroot": 2, "p.deepslateBrickSlab": 8, "m.cobbledDeepslate": 25, "c.redStainedGlass": 64, "c.scaffolding": 696, "u.goldenHelmet": 1, "c.emerald": 274, "p.redstoneTorch": 6, "p.egg": 107, "c.rawCopper": 21438, "p.cookedChicken": 11, "m.deadBush": 25, "u.crimsonStem": 32, "g.interactWithSmithingTable": 8, "u.jungleSign": 14, "c.redWool": 96, "u.cookedSalmon": 3, "p.blackstone": 512, "p.composter": 9, "u.birchSign": 8, "p.grayTerracotta": 49, "p.cookedCod": 7, "q.dripstoneBlock": 5, "q.potion": 9, "c.diamondAxe": 8, "m.warpedRoots": 28, "q.inkSac": 1, "u.soulSand": 85, "c.blackWool": 4, "q.ironBlock": 8, "c.air": 0, "u.cookedCod": 17, "u.purpurSlab": 49, "c.spruceDoor": 12, "c.birchSign": 30, "q.goldIngot": 1, "q.copperIngot": 1, "u.obsidian": 67, "m.grassBlock": 5844, "m.enchantingTable": 2, "q.obsidian": 2, "p.book": 528, "c.glowItemFrame": 32, "q.deepslate": 16, "m.redstoneWire": 1, "p.rabbit": 42, "q.stoneSword": 1, "m.oakFenceGate": 1, "c.cobbledDeepslateSlab": 1392, "u.enderChest": 15, "p.oakLog": 755, "p.gunpowder": 167, "p.chiseledStoneBricks": 3, "q.tnt": 2, "c.enchantingTable": 2, "p.acaciaLeaves": 475, "p.cookedSalmon": 7, "m.terracotta": 980, "c.dropper": 128, "c.darkOakFence": 36, "u.deepslateTileStairs": 89, "m.darkOakLeaves": 194, "c.ironHelmet": 2, "m.darkOakLog": 179, "m.yellowGlazedTerracotta": 37, "p.blackShulkerBox": 11, "m.amethystBlock": 12, "u.diamondBlock": 9, "p.azureBluet": 3, "q.painting": 1, "p.deepslateBrickStairs": 9, "u.string": 1, "p.ice": 91, "m.detectorRail": 1, "p.pinkBed": 8, "u.cookie": 1, "g.interactWithAnvil": 76, "g.totalWorldTime": 10461523, "k.squid": 32, "m.warpedFungus": 19, "cu.potFlower": 2, "c.endStoneBricks": 234, "u.cobblestoneStairs": 101, "c.flowerPot": 2, "q.flint": 718, "m.cyanTerracotta": 149, "c.crimsonTrapdoor": 16, "q.blackstone": 25, "m.darkOakPlanks": 11, "c.redDye": 218, "cu.walkOnWaterOneCm": 354869, "c.lightBlueWool": 4, "u.oakStairs": 44, "p.cookie": 1, "k.caveSpider": 15, "u.acaciaLeaves": 307, "p.diamondAxe": 3, "c.observer": 64, "c.cookedSalmon": 1, "c.sprucePressurePlate": 2, "m.stoneButton": 1, "p.birchLeaves": 150, "cu.fallOneCm": 1724971, "c.warpedSign": 12, "p.bread": 13, "q.goldNugget": 10, "cu.interactWithBrewingstand": 91, "m.ancientDebris": 33, "tc.valid": 0, "m.playerWallHead": 13, "q.spyglass": 1, "q.brownMushroom": 1, "u.sprucePressurePlate": 2, "p.purpurBlock": 92, "m.birchFence": 2, "q.lapisOre": 20, "p.cactus": 114, "m.grindstone": 10, "m.scaffolding": 303, "m.jungleLeaves": 185, "p.allium": 18, "m.pumpkin": 868, "u.junglePlanks": 41, "p.melon": 61, "q.sand": 97, "m.deepslateIronOre": 632, "m.pottedPoppy": 1, "c.purpurBlock": 2, "q.bowl": 1, "p.lightGrayGlazedTerracotta": 29, "p.oakFenceGate": 1, "u.deepslateBrickSlab": 46, "p.stoneShovel": 1, "u.fireCharge": 2, "cu.interactWithBlastFurnace": 933, "m.strippedOakLog": 32, "q.enderPearl": 13980, "p.glowLichen": 15, "u.ironOre": 1543, "u.cookedPorkchop": 199, "m.smoker": 108, "c.string": 2288, "c.netheriteLeggings": 1, "p.goldBlock": 11, "c.warpedFence": 24, "c.repeater": 32, "u.spruceTrapdoor": 12, "u.fireworkRocket": 509, "u.redWool": 138, "p.brownShulkerBox": 21, "k.husk": 13, "q.elytra": 6, "u.polishedDiorite": 206, "p.birchTrapdoor": 37, "p.grass": 1, "m.farmland": 57, "c.lightGrayStainedGlass": 224, "m.crimsonRoots": 31, "c.deepslateBrickSlab": 90, "q.darkOakSapling": 3, "c.pumpkinPie": 96, "cusNetPor": 0, "g.damageBlockedByShield": 13120, "p.brownTerracotta": 73, "m.deepslateBrickStairs": 10, "c.pinkBed": 6, "u.blastFurnace": 381, "m.polishedGraniteStairs": 7, "p.suspiciousStew": 1, "q.rawIron": 6, "q.leatherChestplate": 6, "u.podzol": 1, "u.piston": 85, "u.barrel": 96, "c.candle": 42, "p.coal": 3868, "c.hopper": 70, "c.pumpkinSeeds": 68, "m.jackOLantern": 31, "p.whiteBanner": 18, "g.interactWithLoom": 1, "q.torch": 304, "p.comparator": 15, "m.strippedBirchLog": 32, "c.deepslateTiles": 104, "m.oakFence": 1253, "c.ironBoots": 1, "c.yellowDye": 132, "b.stoneShovel": 2, "u.yellowStainedGlass": 200, "c.hayBlock": 75, "m.cutCopper": 7, "u.diamondPickaxe": 62109, "p.redstoneLamp": 4, "p.blueStainedGlassPane": 9, "p.mossyStoneBricks": 927, "c.blackTerracotta": 128, "p.sandstone": 122, "q.pumpkin": 12, "u.snowBlock": 12, "p.purpleStainedGlassPane": 10, "u.suspiciousStew": 5, "p.cocoaBeans": 1544, "p.cauldron": 9, "p.endStoneBricks": 37, "p.netherQuartzOre": 1026, "u.greenBed": 1, "c.yellowStainedGlassPane": 64, "k.wanderingTrader": 8, "k.witch": 1, "p.birchLog": 831, "q.lead": 3, "m.cyanGlazedTerracotta": 1, "u.dispenser": 5, "u.furnace": 479, "cu.crouchOneCm": 1185625, "p.darkOakSlab": 7, "p.stonePickaxe": 1, "c.piston": 128, "c.polishedBasalt": 64, "c.whiteBed": 4, "q.fireworkRocket": 128, "u.rottenFlesh": 11, "p.stonecutter": 3, "p.diamondChestplate": 1, "p.musicDiscStal": 1, "u.yellowConcrete": 96, "k.drowned": 39, "c.cobblestoneStairs": 128, "c.jungleSlab": 252, "m.endRod": 1, "m.birchPlanks": 30, "p.woodenHoe": 18, "b.shears": 5, "u.grayShulkerBox": 23, "p.nautilusShell": 3, "g.interactWithSmoker": 263, "u.fishingRod": 135, "u.sand": 608, "q.carrot": 6, "p.birchSapling": 317, "p.lapisOre": 142, "u.stoneStairs": 250, "p.junglePlanks": 11, "m.acaciaSapling": 2, "q.crimsonFungus": 1, "q.wheatSeeds": 66, "u.yellowShulkerBox": 22, "m.calcite": 42, "p.packedIce": 1524, "p.floweringAzalea": 2, "p.diorite": 1341, "c.sandstone": 560, "m.poweredRail": 9, "c.limeWool": 32, "m.brownStainedGlass": 2, "p.cyanGlazedTerracotta": 1, "m.amethystCluster": 188, "m.hayBlock": 179, "u.cutSandstoneSlab": 91, "u.cutSandstone": 437, "u.melonSlice": 12, "p.diamondShovel": 1, "c.netheriteShovel": 1, "c.detectorRail": 60, "u.glowstone": 16, "q.potato": 12, "m.wheat": 250, "p.podzol": 1, "u.redstoneLamp": 34, "q.gunpowder": 25, "p.lightGrayTerracotta": 138, "c.deepslateBrickStairs": 88, "m.poppy": 2, "p.redShulkerBox": 3, "m.chest": 272, "u.woodenHoe": 16, "c.brickSlab": 18, "c.jungleFence": 78, "u.netherWartBlock": 6, "p.smoker": 24, "c.oakSign": 84, "u.diamondHoe": 3655, "p.emeraldOre": 2, "c.bookshelf": 106, "c.cobbledDeepslateStairs": 404, "p.yellowBed": 21, "c.blackCarpet": 6, "u.cyanShulkerBox": 12, "p.carrot": 8714, "p.saddle": 6, "u.birchTrapdoor": 37, "q.carvedPumpkin": 1, "p.ironSword": 1, "u.crackedStoneBricks": 1, "u.mutton": 1, "p.grindstone": 10, "q.beef": 22, "c.leatherBoots": 7, "m.andesite": 1319, "p.porkchop": 287, "m.redStainedGlassPane": 2, "q.polishedDiorite": 1, "u.ladder": 352, "p.stoneSword": 3, "c.cookedBeef": 29, "p.diamondHorseArmor": 2, "m.chiseledStoneBricks": 3, "p.cod": 58, "b.stoneAxe": 3, "m.dirtPath": 383, "p.stonePressurePlate": 2, "g.sleepInBed": 366, "u.birchBoat": 22, "p.polishedGraniteSlab": 8, "c.crimsonSign": 36, "g.deathCount": 10, "p.boneBlock": 13, "q.bakedPotato": 20, "u.blackWool": 1, "u.cobbledDeepslateSlab": 1371, "b.ironSword": 2, "p.beetrootSeeds": 7074, "c.acaciaSlab": 72, "q.allium": 18, "m.deepslateBricks": 19, "c.fletchingTable": 16, "q.crimsonStem": 33, "p.charcoal": 1504, "u.goldBlock": 2, "q.shield": 1, "q.goldenBoots": 1, "c.clay": 1, "p.sporeBlossom": 2, "c.netheriteIngot": 18, "u.pinkShulkerBox": 2, "p.stoneButton": 11, "p.deepslateDiamondOre": 306, "g.playMinutes": 8717, "u.oakBoat": 1, "p.woodenSword": 2, "u.amethystBlock": 81, "c.honeycombBlock": 12, "m.strippedSpruceLog": 32, "k.sheep": 163, "p.strippedSpruceLog": 32, "m.packedIce": 1519, "m.warpedNylium": 51, "g.hunger": 13, "cu.swimOneCm": 799522, "m.stone": 11841, "p.minecart": 30, "c.netherBrickSlab": 60, "u.redstone": 112, "p.ironIngot": 41, "c.stone": 245, "p.scaffolding": 1132, "m.chain": 25, "cu.walkUnderWaterOneCm": 1810924, "q.crossbow": 1, "c.warpedDoor": 12, "p.redNetherBrickSlab": 37, "p.blazeRod": 28, "cu.interactWithGrindstone": 40, "c.stonecutter": 12, "m.largeAmethystBud": 1, "c.diamondSword": 7, "p.goldenHoe": 1, "u.greenCarpet": 3, "c.redStainedGlassPane": 64, "q.diorite": 6, "m.basalt": 477, "m.brickSlab": 7, "c.itemFrame": 86, "p.netherrack": 16192, "c.endStoneBrickSlab": 18, "p.hopper": 7, "u.smoothStoneSlab": 2, "u.chiseledSandstone": 15, "q.heartOfTheSea": 2, "q.paper": 9, "p.endRod": 1, "m.crimsonStem": 61, "m.spawner": 7, "p.ironNugget": 20, "color": 0, "p.oakStairs": 7, "q.kelp": 12, "u.ironPickaxe": 1777, "p.deepslateLapisOre": 135, "u.redStainedGlassPane": 2, "c.stoneStairs": 256, "u.cocoaBeans": 277, "c.redNetherBricks": 614, "u.redStainedGlass": 52, "q.goldenChestplate": 3, "c.brownTerracotta": 128, "p.lantern": 17, "q.stone": 15, "p.orangeShulkerBox": 4, "q.netheriteChestplate": 1, "c.leatherLeggings": 4, "p.bucket": 4, "c.stonePickaxe": 12, "c.paper": 3285, "c.blastFurnace": 16, "m.anvil": 2, "c.purpurPillar": 10, "k.bee": 1, "c.noteBlock": 30, "p.arrow": 2590, "u.redstoneTorch": 14, "c.diamond": 315, "m.dirt": 4096, "k.witherSkeleton": 26, "p.melonSlice": 4363, "q.beetrootSeeds": 16, "c.stoneBricks": 432, "u.roseBush": 4, "p.goldenBoots": 1, "m.netherrack": 17250, "p.pumpkin": 922, "q.emerald": 1, "q.redBed": 1, "q.stoneBrickSlab": 481, "q.apple": 15, "p.ironAxe": 2, "cu.sprintOneCm": 21797097, "m.redWool": 62, "q.rabbit": 4, "m.honeyBlock": 2, "c.barrel": 113, "cu.walkOneCm": 34994893, "c.cobblestone": 3, "c.deepslateBricks": 458, "p.netherWart": 2530, "cu.tradedWithVillager": 295, "m.sculkSensor": 26, "m.pinkStainedGlassPane": 8, "c.purpleDye": 64, "m.tintedGlass": 3, "c.darkOakDoor": 12, "c.book": 372, "c.oakStairs": 60, "u.pumpkinSeeds": 32, "p.deepslateRedstoneOre": 592, "u.vine": 4, "c.diamondHoe": 3, "p.cookedBeef": 16, "c.jackOLantern": 160, "g.openEnderchest": 305, "c.blackstoneWall": 36, "u.observer": 17, "c.spruceFenceGate": 8, "p.string": 743, "p.yellowWool": 140, "u.deepslate": 4595, "p.piston": 4, "u.chippedAnvil": 1, "u.ironDoor": 3, "m.darkOakSlab": 7, "u.redShulkerBox": 3, "p.polishedAndesite": 32, "c.oakTrapdoor": 16, "u.darkOakSign": 6, "p.rabbitFoot": 6, "u.honeyBottle": 8, "u.shield": 401, "u.rail": 929, "u.repeater": 1, "p.repeater": 15, "u.bookshelf": 255, "p.smithingTable": 3, "p.brownCandle": 8, "c.jukebox": 1, "u.goldOre": 90, "m.observer": 10, "q.ladder": 392, "m.warpedWartBlock": 318, "u.netherrack": 3057, "p.emerald": 36, "q.grass": 1, "cu.aviateOneCm": 28692929, "q.diamondSword": 2, "p.orangeDye": 17, "c.netherBrickStairs": 24, "p.goldenCarrot": 12, "c.oakFence": 27, "c.spyglass": 2, "u.deepslateGoldOre": 388, "p.oakSign": 26, "u.packedIce": 36, "q.ironHorseArmor": 1, "p.cyanTerracotta": 149, "g.openBarrel": 5387, "m.redMushroomBlock": 448, "p.brick": 14, "u.coalOre": 1632, "q.bucket": 1, "p.copperOre": 4963, "m.largeFern": 6, "q.cookedCod": 5, "p.shulkerShell": 194, "u.birchSapling": 75, "p.redStainedGlass": 4, "m.lapisOre": 250, "u.copperOre": 3118, "u.oakDoor": 5, "p.pumpkinSeeds": 707, "q.ironNugget": 42, "u.endStoneBrickSlab": 71, "q.emeraldBlock": 8, "m.cobblestoneStairs": 41, "u.darkOakSapling": 320, "m.lightBlueGlazedTerracotta": 4, "c.yellowConcretePowder": 384, "p.fishingRod": 3, "m.deepslateTiles": 1, "p.stickyPiston": 13, "c.stonePressurePlate": 10, "c.diamondShovel": 8, "u.stoneSword": 76, "u.flintAndSteel": 32, "u.bucket": 466, "p.lead": 26, "m.loom": 3, "q.diamondLeggings": 1, "c.endStoneBrickStairs": 20, "u.honeycombBlock": 12, "cu.sleepInBed": 366, "p.writableBook": 6, "q.pointedDripstone": 19, "m.lantern": 2, "p.lever": 6, "m.smoothBasalt": 136, "p.brickStairs": 29, "m.lightGrayStainedGlass": 20, "m.carvedPumpkin": 176, "c.stoneButton": 25, "u.redMushroom": 3, "m.orangeTerracotta": 254, "u.itemFrame": 1, "c.polishedAndesite": 233, "q.netheriteIngot": 4, "c.stoneBrickSlab": 889, "q.dragonEgg": 1, "q.magentaStainedGlass": 2, "m.netherSprouts": 2, "c.cutSandstoneSlab": 234, "q.bow": 5, "q.stoneBrickStairs": 128, "p.amethystBlock": 18, "m.sprucePlanks": 14, "p.warpedWartBlock": 1851, "m.stoneBrickWall": 2, "c.netheriteChestplate": 1, "c.grayTerracotta": 128, "p.strippedDarkOakLog": 32, "u.cartographyTable": 2, "m.redShulkerBox": 3, "p.oakDoor": 5, "k.cow": 121, "u.playerHead": 20, "c.lever": 37, "c.pinkStainedGlass": 752, "m.birchLeaves": 159, "u.cobbledDeepslate": 423, "p.dandelion": 32, "c.chain": 90, "c.diamondChestplate": 6, "c.stoneAxe": 4, "p.whiteShulkerBox": 4, "m.waterCauldron": 7, "p.glowBerries": 9, "c.enchantedBook": 21, "m.sand": 8926, "m.ironDoor": 1, "p.redMushroom": 126, "m.cactus": 46, "p.pinkShulkerBox": 2, "p.copperBlock": 2, "m.deepslateTileStairs": 3, "p.tintedGlass": 3, "p.sugarCane": 3873, "m.blackCarpet": 1, "g.eatCakeSlice": 3, "q.enchantedBook": 1, "p.detectorRail": 1, "c.blackConcretePowder": 24, "u.oakPlanks": 151, "g.drop": 1462, "p.greenCarpet": 3, "g.raidWin": 1, "m.peony": 5, "c.stoneBrickStairs": 168, "m.greenCarpet": 3, "p.yellowTerracotta": 237, "m.birchLog": 189, "b.woodenSword": 5, "u.redNetherBrickStairs": 161, "b.stoneSword": 1, "p.polishedGraniteStairs": 7, "u.sprucePlanks": 70, "m.smithingTable": 3, "p.warpedNylium": 51, "m.oakLeaves": 393, "c.bow": 131, "p.poweredRail": 14, "q.jungleSapling": 6, "m.deepslate": 12935, "c.lightGrayTerracotta": 48, "p.quartz": 2089, "u.andesite": 162, "m.soulSand": 118, "u.glowInkSac": 14, "m.strippedOakWood": 1, "p.deepslateBricks": 19, "u.lilac": 2, "q.diamondHorseArmor": 2, "u.spruceStairs": 79, "q.goldenHoe": 2, "q.diamondPickaxe": 3, "p.melonSeeds": 4, "p.redstone": 3494, "c.ironChestplate": 1, "k.traderLlama": 16, "m.polishedGranite": 12, "m.pinkBed": 10, "p.wheat": 1819, "m.carrots": 196, "u.detectorRail": 1, "p.lightBlueDye": 11, "u.jungleSapling": 143, "q.whiteWool": 34, "p.netherBrick": 512, "p.pointedDripstone": 700, "m.fern": 55, "q.trident": 1, "m.cutSandstoneSlab": 25, "c.ironBlock": 436, "p.craftingTable": 43, "p.oakSlab": 4, "q.crimsonRoots": 30, "g.tradedWithVillager": 295, "q.endStoneBricks": 4, "p.sand": 9047, "q.stick": 180, "p.jungleSlab": 9, "q.chest": 8, "u.chain": 26, "m.twistingVinesPlant": 7, "u.porkchop": 3, "u.cobbledDeepslateStairs": 363, "u.grassBlock": 1039, "p.ironBlock": 12, "p.torch": 1043, "m.stoneBrickSlab": 42, "m.gravel": 10694, "c.brownDye": 64, "g.talkedToVillager": 181, "u.lever": 6, "p.crossbow": 3, "c.yellowShulkerBox": 1, "c.lapisBlock": 417, "u.jackOLantern": 173, "c.netheriteBoots": 1, "c.charcoal": 294, "p.smoothStoneSlab": 48, "p.brownStainedGlass": 1, "g.damageTaken": 23158, "c.polishedAndesiteStairs": 16, "m.yellowConcrete": 96, "u.netherBrickSlab": 4, "m.crackedStoneBricks": 775, "g.interactWithFurnace": 774, "c.glassBottle": 378, "q.smoothStone": 1, "c.netherBricks": 256, "p.trident": 1, "p.ironLeggings": 1, "p.peony": 69, "u.spruceSign": 18, "c.birchBoat": 1, "p.glass": 5, "p.kelp": 1674, "m.whiteTerracotta": 251, "p.bookshelf": 24, "u.waterBucket": 446, "p.loom": 3, "b.leatherBoots": 1, "u.acaciaPlanks": 8, "p.ironDoor": 1, "c.bricks": 512, "c.darkOakSign": 12, "q.stoneAxe": 4, "cu.boatOneCm": 5842630, "p.ghastTear": 16, "p.deepslate": 8083, "cu.playTime": 10461523, "c.pinkDye": 256, "q.yellowConcretePowder": 384, "c.crimsonFence": 24, "p.spruceTrapdoor": 14, "m.tallSeagrass": 23, "q.netheriteSword": 1, "m.yellowShulkerBox": 22, "p.poisonousPotato": 68, "m.deepslateTileSlab": 9, "c.pinkWool": 80, "p.observer": 24, "m.cobbledDeepslateSlab": 47, "c.enderChest": 5, "k.wolf": 5, "m.tnt": 9, "m.bamboo": 1308, "u.pinkStainedGlass": 695, "p.yellowGlazedTerracotta": 37, "u.polishedGraniteStairs": 55, "k.zombieVillager": 7, "u.lavaBucket": 9, "p.spruceLeaves": 166, "u.clay": 13, "p.strippedOakLog": 32, "p.enchantedGoldenApple": 2, "g.damageDealt": 576419, "u.warpedSign": 2, "q.sandstone": 3, "c.oakDoor": 12, "m.crimsonFungus": 1, "q.hayBlock": 14, "p.beetroot": 1721, "c.redNetherBrickStairs": 148, "u.painting": 2, "u.lightGrayWool": 4, "p.lightGrayStainedGlass": 19, "m.caveVinesPlant": 2, "c.cyanDye": 6, "c.polishedGraniteSlab": 48, "c.darkOakStairs": 56, "m.melon": 887, "m.whiteShulkerBox": 2, "u.melonSeeds": 32, "p.grayCarpet": 6, "p.nameTag": 3, "u.hopper": 41, "m.redBed": 2, "p.clayBall": 1488, "p.honeycomb": 21, "u.glassPane": 1, "p.rawIron": 3892, "m.endStone": 319, "u.trident": 31, "p.shulkerBox": 300, "m.brickStairs": 30, "u.smithingTable": 3, "p.goldenApple": 5, "p.grassBlock": 2702, "u.cobblestone": 1801, "g.sneakTime": 413177, "c.blazePowder": 46, "q.endStoneBrickSlab": 1, "m.snowBlock": 22, "q.grayWool": 41, "c.lantern": 74, "u.pumpkin": 177, "tc.use_netherite": 0, "k.spider": 82, "p.greenCandle": 8, "b.ironAxe": 2, "p.slimeBall": 49, "p.yellowConcrete": 476, "q.goldenSword": 3, "p.honeyBlock": 6, "p.redstoneOre": 43, "c.tintedGlass": 208, "c.quartzBlock": 480, "m.sugarCane": 2259, "m.yellowStainedGlassPane": 4, "c.rawCopperBlock": 2232, "u.darkOakStairs": 12, "m.sandstone": 126, "p.cryingObsidian": 8, "p.redCandle": 10, "p.sunflower": 147, "c.blackDye": 148, "q.spruceLog": 78, "c.crossbow": 2, "q.diamondBoots": 1, "c.darkOakTrapdoor": 24, "c.birchStairs": 40, "m.blueTerracotta": 318, "c.woodenSword": 4, "u.lead": 1, "m.stoneBricks": 1645, "c.birchSlab": 18, "q.goldBlock": 8, "c.cyanShulkerBox": 4, "c.goldenCarrot": 80, "m.stoneBrickStairs": 9, "u.deepslateCopperOre": 67, "m.jungleFence": 2, "b.stoneHoe": 3, "m.tuff": 1220, "u.oakSlab": 90, "g.timeSinceRest": 5572, "u.oakLog": 47, "q.scaffolding": 140, "p.oxeyeDaisy": 3, "g.mobKills": 20859, "q.rabbitHide": 4, "u.copperBlock": 62, "p.dragonHead": 2, "u.diorite": 137, "c.netheriteAxe": 1, "p.crackedStoneBricks": 759, "g.interactWithStonecutter": 32, "m.lightGrayGlazedTerracotta": 29, "c.birchFenceGate": 8, "q.cocoaBeans": 3, "u.deepslateBricks": 328, "m.lightGrayShulkerBox": 3, "p.yellowDye": 7, "m.kelp": 24, "m.oakLog": 253, "tc.use_iron": 0, "p.whiteBed": 14, "u.redstoneOre": 43, "p.fireCharge": 1, "m.cartographyTable": 2, "p.chest": 298, "c.diamondHelmet": 6, "u.limeWool": 10, "c.lapisLazuli": 1521, "u.polishedGraniteSlab": 52, "u.oakLeaves": 6, "b.stonePickaxe": 3, "c.anvil": 8, "p.blackGlazedTerracotta": 21, "c.oakPlanks": 892, "m.pinkShulkerBox": 2, "u.whiteBanner": 20, "m.darkOakSapling": 12, "c.ironDoor": 6, "q.leatherBoots": 4, "p.painting": 2, "p.coarseDirt": 430, "c.heavyWeightedPressurePlate": 2, "u.oakFence": 39, "u.brickSlab": 8, "c.redstoneLamp": 38, "m.birchStairs": 4, "c.shield": 18, "p.playerHead": 100, "u.cookedChicken": 36, "c.furnace": 43, "q.goldenShovel": 1, "g.interactWithGrindstone": 40, "p.rabbitHide": 34, "u.composter": 13, "u.warpedStem": 40, "q.leatherLeggings": 2, "u.brownMushroom": 5, "q.weepingVines": 35, "c.painting": 1, "p.ironPickaxe": 1, "c.pinkTerracotta": 128, "p.snowball": 16, "p.crimsonRoots": 31, "p.blueTerracotta": 316, "rc_display": 0, "m.netherWart": 100, "g.openChest": 8355, "m.blueIce": 59, "p.deepslateIronOre": 266, "k.skeleton": 1279, "m.bambooSapling": 3, "p.magmaCream": 140, "u.enderEye": 9, "p.jungleSapling": 365, "q.cauldron": 7, "u.tuff": 259, "m.dandelion": 10, "q.brick": 34, "m.stoneStairs": 10, "u.ancientDebris": 2, "c.leather": 64, "p.tnt": 14, "p.elytra": 10, "u.glassBottle": 177, "k.pig": 86, "m.shulkerBox": 300, "c.diamondPickaxe": 19, "u.endStone": 56, "p.lightGrayShulkerBox": 3, "p.netherBricks": 4, "c.cutCopper": 544, "m.redstoneBlock": 6, "p.honeyBottle": 15, "c.magentaDye": 64, "p.snowBlock": 22, "c.blackShulkerBox": 5, "p.bamboo": 14471, "m.sunflower": 18, "m.smoothStone": 3, "c.brownConcretePowder": 128, "u.redBed": 2, "p.cyanShulkerBox": 12, "p.deepslateTileSlab": 10, "q.granite": 4, "u.bow": 279, "p.potion": 5, "q.yellowBed": 3, "p.leatherBoots": 4, "k.shulker": 121, "p.diamondHelmet": 1, "c.stoneSword": 1, "u.blackCarpet": 2, "p.cobbledDeepslateSlab": 42, "c.stoneShovel": 6, "u.netheriteAxe": 3473, "cu.interactWithSmoker": 263, "c.acaciaDoor": 12, "p.oakFence": 1234, "m.jungleSapling": 13, "u.polishedDioriteStairs": 4, "c.cookedChicken": 50, "m.azalea": 3, "q.diamondChestplate": 3, "p.diamondPickaxe": 4, "p.smoothStone": 131, "m.lightGrayTerracotta": 138, "k.zombie": 281, "c.cartographyTable": 15, "g.potFlowers": 2, "u.lantern": 18, "m.beetroots": 99, "c.netherBrickFence": 48, "g.openShulkerBox": 1186, "c.loom": 8, "q.stonecutter": 1, "m.lightGrayCarpet": 8, "u.polishedAndesiteStairs": 4, "c.polishedDeepslate": 544, "u.loom": 3, "m.whiteWallBanner": 2, "q.rottenFlesh": 133, "m.ironOre": 2789, "tc.temp": 2031, "u.warpedWartBlock": 79, "p.copperIngot": 538, "u.ironShovel": 252, "m.ironBlock": 9, "u.birchStairs": 4, "m.birchTrapdoor": 5, "u.poisonousPotato": 1, "u.milkBucket": 11, "p.acaciaPlanks": 8, "c.melonSeeds": 87, "m.pinkStainedGlass": 9, "c.limeDye": 48, "u.netherWart": 120, "u.crimsonSign": 24, "c.blueDye": 124, "p.goldenHelmet": 3, "u.grindstone": 12, "g.timeSinceDeath": 3640175, "p.hayBlock": 200, "g.fishCaught": 52, "u.blackstone": 44, "u.melon": 3, "u.lectern": 78, "m.cutSandstone": 152, "m.grayShulkerBox": 23, "m.brownMushroom": 48, "u.wheat": 2, "u.lightBlueWool": 2, "q.mossyStoneBrickSlab": 1, "p.greenBed": 1, "p.darkOakStairs": 5, "c.acaciaStairs": 60, "p.jungleFence": 2, "m.jungleLog": 232, "k.enderman": 17715, "u.enchantingTable": 4, "q.map": 1, "c.dripstoneBlock": 139, "u.whiteTerracotta": 222, "m.deepslateLapisOre": 267, "c.coal": 99, "p.inkSac": 123, "u.stoneBrickSlab": 328, "m.goldOre": 168, "p.cutSandstone": 108, "q.smoothBasalt": 6, "p.granite": 1661, "c.redstone": 855, "g.playRecord": 1, "b.ironPickaxe": 2, "m.potatoes": 306, "u.pumpkinPie": 58, "p.redBed": 3, "u.cookedMutton": 120, "u.smoothBasalt": 13, "c.rail": 1024, "m.oakStairs": 7, "q.chicken": 38, "c.torch": 5728, "m.stickyPiston": 3, "p.redStainedGlassPane": 4, "u.map": 2, "m.diamondOre": 24, "m.piston": 4, "c.dispenser": 64, "c.ironPickaxe": 11, "u.redNetherBrickSlab": 543, "m.spruceLeaves": 244, "p.warpedFungus": 19, "p.weepingVines": 103, "c.cookedRabbit": 2, "p.mossyStoneBrickSlab": 1, "c.smoothStone": 32, "cu.interactWithSmithingTable": 8, "u.egg": 1, "q.sugarCane": 17, "u.lightGrayCarpet": 68, "cu.climbOneCm": 744773, "u.woodenPickaxe": 48, "k.magmaCube": 305, "k.bat": 27, "p.jackOLantern": 63, "g.enchantItem": 234, "p.purpleCandle": 5, "p.spruceSign": 6, "q.poisonousPotato": 39, "m.diamondBlock": 1, "u.deepslateLapisOre": 128, "u.smoothStone": 2, "p.stick": 3023, "p.cutCopper": 6, "q.ironOre": 1, "u.hopperMinecart": 8, "m.acaciaLog": 121, "m.orangeShulkerBox": 4, "m.copperBlock": 2, "p.crimsonFungus": 1, "u.lapisBlock": 8, "p.cobweb": 84, "m.yellowTerracotta": 231, "c.lightBlueTerracotta": 128, "c.spruceSign": 24, "m.hopper": 5, "u.noteBlock": 1, "m.glass": 5, "q.fishingRod": 2, "p.rottenFlesh": 791, "c.cobbledDeepslate": 30, "p.glisteringMelonSlice": 4, "p.apple": 109, "k.zombifiedPiglin": 5, "tc.use_diamond": 0, "q.oakSapling": 31, "m.obsidian": 147, "p.cobblestoneStairs": 41, "q.diamondAxe": 4, "u.mushroomStew": 1, "u.birchLog": 50, "m.rawCopperBlock": 2, "u.flowerPot": 5, "c.orangeShulkerBox": 3, "m.mossyCobblestone": 48, "p.calcite": 53, "m.ironBars": 71, "cu.interactWithLoom": 1, "c.goldIngot": 890, "p.redNetherBrickStairs": 13, "c.glassPane": 160, "c.hopperMinecart": 4, "p.glowstoneDust": 57, "m.polishedDiorite": 20, "c.lightGrayCarpet": 60, "u.grayCarpet": 45, "c.stoneSlab": 282, "u.ironBlock": 12, "q.limeCarpet": 25, "m.vine": 195, "q.goldenHelmet": 1, "p.spruceStairs": 13, "g.interactWithCraftingTable": 1117, "m.jungleWallSign": 1, "m.oxeyeDaisy": 1, "c.goldBlock": 154, "p.strippedWarpedStem": 38, "m.composter": 9, "c.diamondBoots": 6, "p.enderChest": 10, "p.twistingVines": 38, "m.warpedStem": 98, "m.polishedAndesite": 32, "p.mossCarpet": 321, "u.oakSapling": 40, "p.lapisLazuli": 4142, "m.wallTorch": 272, "c.jungleStairs": 80, "c.jungleSign": 30, "c.grayDye": 128, "u.endRod": 1, "u.heavyWeightedPressurePlate": 4, "p.chain": 24, "b.goldenHelmet": 1, "p.crimsonNylium": 60, "q.clayBall": 12, "p.bone": 2959, "u.cutCopper": 219, "c.goldNugget": 1361, "q.mutton": 69, "q.rabbitFoot": 2, "q.calcite": 5, "u.diamondOre": 12, "p.spiderEye": 139, "q.playerHead": 4, "p.birchPlanks": 30, "p.stoneStairs": 11, "p.wheatSeeds": 7586, "c.limeStainedGlass": 128, "p.ladder": 303, "m.redTerracotta": 429, "m.oakDoor": 5, "u.daylightDetector": 9, "p.deepslateTiles": 1, "m.spruceStairs": 13, "g.bellRing": 12, "c.birchFence": 30, "m.blastFurnace": 376, "m.blueWool": 2, "p.amethystCluster": 105, "p.warpedStem": 308, "u.deepslateTileSlab": 58, "cu.horseOneCm": 28955, "m.oakPlanks": 2172, "p.diamondOre": 12, "m.mossBlock": 49, "c.comparator": 32, "m.redstoneOre": 85, "c.lightGrayDye": 128, "m.snow": 1, "q.wheat": 13, "c.sugar": 210, "q.bookshelf": 1, "p.redNetherBricks": 13, "q.string": 42, "u.cornflower": 2, "p.mossBlock": 56, "g.interactWithBrewingstand": 91, "u.netherGoldOre": 280, "u.darkOakSlab": 7, "p.birchBoat": 22, "TreeCapitator": 0, "p.cornflower": 4, "c.ladder": 393, "p.cobblestone": 5658, "m.yellowStainedGlass": 4, "p.poppy": 29, "q.netherrack": 1049, "c.minecart": 43, "u.poweredRail": 177, "cu.interactWithStonecutter": 32, "u.purpurBlock": 44, "m.granite": 1562, "c.netheriteHoe": 1, "u.oxeyeDaisy": 2, "m.diorite": 1318, "u.honeyBlock": 14, "u.cauldron": 1, "m.strippedCrimsonStem": 32, "duraPing": 0, "u.apple": 5, "p.rawCopperBlock": 2, "u.stone": 5518, "u.netherQuartzOre": 1026, "p.orangeTerracotta": 254, "u.shroomlight": 4, "m.emeraldOre": 2, "u.woodenSword": 141, "p.yellowShulkerBox": 22, "m.heavyWeightedPressurePlate": 2, "q.feather": 28, "m.junglePlanks": 11, "p.waterBucket": 2, "p.cookedPorkchop": 1, "c.netheritePickaxe": 1, "m.copperOre": 8340, "m.torch": 399, "p.brickSlab": 7, "u.orangeShulkerBox": 4, "c.whiteBanner": 109, "c.honeyBlock": 23, "m.barrel": 28, "c.redShulkerBox": 3, "p.polishedDiorite": 19, "u.deepslateDiamondOre": 372, "u.diamondAxe": 10269, "u.boneMeal": 2424, "q.cutSandstone": 4, "p.shears": 1, "cu.flyOneCm": 20648670, "u.deepslateTiles": 17, "c.orangeTerracotta": 8, "c.redstoneTorch": 229, "m.mossyStoneBricks": 914, "p.netherWartBlock": 1824, "q.bone": 6, "p.yellowStainedGlassPane": 10, "k.glowSquid": 10, "p.darkOakLog": 3432, "m.bricks": 701, "g.inspectHopper": 169, "p.redWool": 64, "u.netherBricks": 4, "u.oakSign": 100, "u.stoneBricks": 889, "c.cutCopperStairs": 128, "c.orangeDye": 64, "g.animalsBred": 208, "tc.damage": 6, "c.birchPlanks": 1032, "u.smoker": 104, "m.grayCarpet": 13, "c.cutCopperSlab": 16, "m.purpurSlab": 7, "p.warpedRoots": 39, "m.sporeBlossom": 2, "p.darkOakSapling": 457, "m.dragonWallHead": 1, "m.whiteBed": 14, "p.anvil": 2, "g.armor": 0, "c.glass": 64, "u.netheritePickaxe": 22800, "k.hoglin": 4, "g.jump": 100372, "m.strippedWarpedStem": 38, "p.brownMushroom": 164, "u.dandelion": 5, "p.acaciaLog": 448, "m.redNetherBrickSlab": 34, "c.grindstone": 8, "c.goldenHelmet": 5, "u.basalt": 280, "b.woodenPickaxe": 1, "p.pinkStainedGlass": 25, "p.filledMap": 5, "p.amethystShard": 672, "q.stickyPiston": 3, "p.oakPlanks": 2232, "c.cookedCod": 2, "m.oakSapling": 5, "q.musicDiscCat": 1, "u.potato": 414, "q.grayCarpet": 6, "p.spruceSapling": 396, "c.grayCarpet": 102, "k.strider": 3, "q.charcoal": 160, "m.cryingObsidian": 6, "c.stick": 3404, "u.darkOakFence": 1, "u.elytra": 2, "c.junglePlanks": 2680, "p.magentaStainedGlassPane": 5, "p.lightBlueStainedGlassPane": 2, "p.jungleSign": 1, "p.map": 7, "u.scaffolding": 1384, "u.deepslateBrickStairs": 117, "p.acaciaSapling": 193, "c.craftingTable": 35, "m.deepslateCopperOre": 160, "m.endStoneBricks": 37, "c.redstoneBlock": 393, "p.whiteDye": 8, "c.birchTrapdoor": 10, "u.warpedDoor": 2, "p.obsidian": 163, "g.level": 39, "m.mossCarpet": 3, "c.glisteringMelonSlice": 64, "m.cobblestoneWall": 1, "p.spruceLog": 1503, "m.netherGoldOre": 571, "c.warpedTrapdoor": 16, "rc_help": 0, "u.snowball": 98, "u.stoneShovel": 558, "p.rail": 671, "p.blackCarpet": 2, "q.woodenSword": 1, "m.redNetherBricks": 13, "q.basalt": 55, "m.goldBlock": 11, "c.warpedPlanks": 308, "u.lightGrayDye": 12, "u.stoneHoe": 290, "p.basalt": 497, "m.deepslateDiamondOre": 678, "m.buddingAmethyst": 2, "u.emeraldBlock": 2, "p.birchFence": 2, "u.cobweb": 20, "q.arrow": 44, "u.carrot": 258, "u.woodenAxe": 143, "q.oakFence": 6, "m.redStainedGlass": 6, "p.deepslateCoalOre": 8, "p.cobbledDeepslateStairs": 15, "m.magentaStainedGlass": 3, "p.darkOakPlanks": 11, "u.lightGrayShulkerBox": 3, "u.kelp": 7, "q.diamond": 17, "k.chicken": 139, "p.bow": 103, "u.endStoneBricks": 134, "m.yellowBed": 19, "p.oakSapling": 566, "cu.interactWithCraftingTable": 1117, "u.stonePressurePlate": 1, "q.diamondHelmet": 2, "m.deepslateCoalOre": 8, "c.fireworkRocket": 759, "c.darkOakSlab": 12, "u.shears": 3620, "q.cookedMutton": 64, "p.feather": 264, "u.ironAxe": 328, "p.strippedBirchLog": 32, "u.jungleStairs": 32, "p.goldenHorseArmor": 1, "p.heavyWeightedPressurePlate": 2, "u.netherBrickStairs": 24, "u.polishedAndesite": 219, "m.weepingVinesPlant": 10, "c.ironIngot": 1818, "m.blackShulkerBox": 11, "c.ironNugget": 729, "c.copperBlock": 2839, "u.stoneBrickWall": 24, "p.goldOre": 78, "p.cobbledDeepslate": 4873, "g.play": 8717, "m.spruceSapling": 4, "m.chorusPlant": 6, "c.writableBook": 80, "u.tintedGlass": 83, "u.woodenShovel": 25, "p.deadBush": 5, "q.writableBook": 6, "c.copperIngot": 320, "c.terracotta": 344, "c.polishedDioriteStairs": 16, "c.emeraldBlock": 8, "u.cactus": 61, "g.inspectDispenser": 12, "d.skeleton": 1, "c.oakFenceGate": 10, "m.netherWartBlock": 572, "p.stoneBrickWall": 2, "p.mycelium": 510, "c.cookedMutton": 68, "u.peony": 5, "c.brickStairs": 8, "m.redstoneLamp": 4, "c.ironLeggings": 2, "u.cookedBeef": 148, "m.cobbledDeepslateStairs": 15, "m.mushroomStem": 64, "u.whiteWool": 29, "p.redstoneBlock": 5, "m.flowerPot": 1, "m.lightGrayWool": 4, "p.purpurSlab": 10, "u.brickStairs": 8, "p.carvedPumpkin": 176, "p.oakLeaves": 187, "c.magentaTerracotta": 128, "c.ironAxe": 8, "c.diamondLeggings": 6, "u.pointedDripstone": 1, "q.cobblestone": 315, "u.orangeTerracotta": 1, "p.birchStairs": 4, "q.magmaBlock": 2, "m.greenBed": 1, "q.enderEye": 1, "m.lilac": 38, "q.fireCharge": 2, "u.jungleLog": 43, "cu.interactWithFurnace": 774, "q.ironSword": 1, "m.glowLichen": 14, "tc.disabled": 0, "m.magmaBlock": 120, "p.enchantedBook": 25, "m.lectern": 78, "m.deepslateRedstoneOre": 1160, "u.brownStainedGlass": 1, "q.leather": 9, "m.chiseledSandstone": 19, "m.mycelium": 536, "p.blueWool": 2, "c.lightBlueDye": 66, "c.boneMeal": 10857, "m.roseBush": 3, "q.bamboo": 151, "p.sweetBerries": 158, "m.netherQuartzOre": 2070, "b.leatherHelmet": 2, "c.brownShulkerBox": 9, "p.glowstone": 72, "m.furnace": 474, "p.chorusFruit": 80, "m.smoothStoneSlab": 41, "p.blastFurnace": 29, "m.polishedGraniteSlab": 4, "tc.sneak": 0, "p.cobblestoneWall": 1, "u.bread": 62, "m.stoneSlab": 16, "m.stonecutter": 3, "p.flint": 1779, "c.daylightDetector": 16, "p.clay": 11, "m.lightBlueTerracotta": 1, "p.whiteWool": 469, "k.creeper": 33, "p.terracotta": 979, "u.dirt": 2145, "u.brownShulkerBox": 20, "p.lilac": 86, "p.whiteTerracotta": 254, "q.vine": 64, "tc.use_stone": 0, "p.potato": 9317, "c.crimsonPlanks": 348, "c.redNetherBrickSlab": 582, "p.brownConcrete": 128, "m.acaciaLeaves": 489, "u.stoneAxe": 291, "m.cornflower": 3, "k.pillager": 31, "c.yellowStainedGlass": 288, "p.glowInkSac": 68, "p.oakBoat": 1, "u.calcite": 6, "u.birchFence": 10, "u.netheriteHoe": 560, "u.darkOakPlanks": 80, "c.netheriteHelmet": 1, "m.tallGrass": 179, "c.composter": 25, "c.limeCarpet": 24, "p.cookedMutton": 9, "c.bucket": 23, "u.chest": 315, "p.andesite": 1349, "u.netheriteSword": 1642, "c.acaciaPlanks": 420, "c.blueIce": 68, "u.whiteShulkerBox": 2, "m.tripwire": 5, "u.granite": 177, "p.ironHorseArmor": 3, "p.tuff": 1232, "p.cartographyTable": 2, "c.whiteDye": 247, "u.mossCarpet": 3, "c.netheriteSword": 2, "c.spruceStairs": 124, "m.jungleSlab": 9, "u.potion": 11, "m.orangeGlazedTerracotta": 63, "m.deepslateGoldOre": 677, "q.redstone": 36, "c.ironSword": 2, "m.oakSlab": 4, "p.musicDiscFar": 1, "p.deepslateCopperOre": 67, "c.chest": 222, "g.tuneNoteblock": 50, "tc.use_gold": 0, "c.nameTag": 11, "c.polishedDiorite": 233, "p.gravel": 9331, "m.cobblestone": 1894, "q.cobbledDeepslate": 5, "m.cobweb": 556, "u.wheatSeeds": 624, "u.spruceSapling": 79, "u.pinkWool": 70, "m.grass": 1666, "c.stoneHoe": 3, "u.acaciaSapling": 60, "u.sweetBerries": 34, "p.lightGrayWool": 260, "p.yellowStainedGlass": 4, "m.pinkWool": 2, "b.leatherLeggings": 1, "k.rabbit": 22, "u.whiteBed": 17, "u.azureBluet": 1, "p.heartOfTheSea": 3, "u.polishedGranite": 52, "q.deepslateBrickStairs": 1, "m.blackstone": 499, "p.leather": 282, "u.warpedFungus": 5, "p.deepslateTileStairs": 3, "p.magentaStainedGlass": 2, "p.musicDiscBlocks": 2, "m.purpurBlock": 85, "u.bricks": 243, "u.anvil": 8, "m.strippedDarkOakLog": 32, "p.goldenShovel": 1, "m.acaciaPlanks": 8, "p.lightGrayCarpet": 8, "c.warpedFenceGate": 16, "g.playTime": 10461523, "c.ironBars": 32, "c.fermentedSpiderEye": 52, "p.paper": 51, "p.pinkStainedGlassPane": 25, "c.snowBlock": 62, "c.leatherChestplate": 4, "u.pinkBed": 14, "m.coarseDirt": 427, "u.mycelium": 2, "p.blueIce": 58, "u.shulkerBox": 297, "u.minecart": 27, "m.ladder": 47, "p.ironOre": 1348, "u.oakFenceGate": 3, "p.enchantingTable": 2, "u.birchPlanks": 184, "g.leaveGame": 116, "c.stickyPiston": 32, "p.grayShulkerBox": 23, "m.craftingTable": 44, "c.crimsonFenceGate": 16, "u.torch": 5908, "q.gravel": 313, "k.ghast": 33, "m.daylightDetector": 5, "p.vine": 128, "m.coalOre": 3143, "p.itemFrame": 5, "p.rawGold": 999, "m.shroomlight": 12, "c.boneBlock": 689, "u.magmaBlock": 53, "p.stoneHoe": 1, "u.jungleTrapdoor": 36, "c.yellowBed": 1, "c.ironShovel": 1, "u.dripstoneBlock": 226, "p.stoneBricks": 1814, "c.bakedPotato": 128, "d.player": 1, "q.packedIce": 82, "p.sprucePlanks": 14, "c.lightGrayShulkerBox": 5, "p.blueOrchid": 47, "cu.talkedToVillager": 181, "u.sunflower": 3, "cu.minecartOneCm": 1164471, "m.podzol": 334, "c.sprucePlanks": 819, "q.ironShovel": 1, "q.leatherHelmet": 1, "p.flintAndSteel": 3, "c.smoker": 14, "m.sweetBerryBush": 58, "p.stone": 8348, "q.suspiciousStew": 3, "c.birchDoor": 12, "q.flintAndSteel": 1, "p.dragonEgg": 1, "m.purpurPillar": 1, "c.grayShulkerBox": 6, "q.stoneHoe": 2, "m.oakWallSign": 22, "cu.damageBlockedByShield": 13120, "c.spruceTrapdoor": 16, "p.diamondBlock": 1, "q.amethystBlock": 6, "c.smithingTable": 8, "p.netheritePickaxe": 1, "q.andesite": 43, "c.crimsonDoor": 12, "p.shroomlight": 116, "p.netherGoldOre": 280, "m.lever": 3, "cu.killedByDarkPurpleTeam": 1, "u.spyglass": 35, "c.poweredRail": 312, "m.blackGlazedTerracotta": 21, "q.coal": 1, "p.hopperMinecart": 3, "p.dripstoneBlock": 505, "u.redstoneBlock": 80, "m.birchSapling": 3, "u.jungleFence": 40, "q.porkchop": 36, "c.acaciaTrapdoor": 16, "c.amethystBlock": 3, "m.allium": 18, "c.lightGrayWool": 32, "k.blaze": 20, "q.cookedSalmon": 1, "p.bakedPotato": 193, "m.seagrass": 37, "c.diamondBlock": 75, "u.blackShulkerBox": 11, "c.pinkStainedGlassPane": 120, "c.blueTerracotta": 128, "g.interactWithBlastFurnace": 933, "u.deepslateRedstoneOre": 505, "c.shulkerBox": 60, "p.jungleTrapdoor": 36, "c.jungleFenceGate": 8, "m.weepingVines": 8, "p.lectern": 78, "p.bowl": 1, "u.ironSword": 484, "p.ironShovel": 1, "u.bamboo": 228, "q.oakPlanks": 10, "p.phantomMembrane": 52}, ".svioletg": {"tc.use_iron": 0, "tc.sneak": 0, "tc.use_wood": 0, "g.playMinutes": 399, "g.health": 18, "cu.sprintOneCm": 15489, "tc.disabled": 0, "cu.flyOneCm": 56219, "g.armor": 0, "tc.use_gold": 0, "g.timeSinceRest": 479088, "cu.playTime": 479088, "cu.walkOneCm": 38683, "duraPing": 0, "g.leaveGame": 4, "g.jump": 221, "g.hunger": 6, "g.damageTaken": 50, "g.playTime": 479088, "TreeCapitator": 0, "g.air": 300, "color": 0, "g.totalWorldTime": 479088, "tc.use_diamond": 0, "cu.fallOneCm": 4758, "g.play": 399, "tc.use_netherite": 0, "tc.valid": 0, "tc.use_stone": 0, "cu.climbOneCm": 542, "g.level": 0, "g.timeSinceDeath": 479088, "cusNetPor": 0}, "svioletg": {"p.trident": 1, "u.beef": 3, "k.vindicator": 9, "p.diamondSword": 2, "m.campfire": 3, "c.enderEye": 5, "u.deepslateIronOre": 26, "u.waterBucket": 73, "p.ironDoor": 5, "p.ghastTear": 1, "cu.boatOneCm": 1904710, "d.spider": 8, "p.deepslate": 67, "cu.playTime": 6889514, "p.rawCopper": 2365, "c.pinkDye": 25, "d.creeper": 15, "m.tallSeagrass": 1, "p.stoneBrickStairs": 4, "m.clay": 35, "m.yellowShulkerBox": 1, "m.spruceLog": 8, "m.tnt": 9, "u.armorStand": 1, "m.bamboo": 23, "p.smoothBasalt": 345, "k.zombieVillager": 11, "cu.interactWithAnvil": 23, "m.ice": 50, "g.interactWithLectern": 1, "m.whiteBanner": 1, "u.craftingTable": 23, "q.tuff": 1, "g.health": 20, "u.diamondHelmet": 1, "g.damageDealt": 151252, "m.netherBricks": 1, "q.sandstone": 6, "m.playerHead": 2, "q.shulkerBox": 1, "q.stonePickaxe": 1, "u.enderPearl": 9, "m.whiteShulkerBox": 5, "u.pinkStainedGlassPane": 65, "d.enderman": 7, "p.mutton": 15, "u.hopper": 23, "u.blueTerracotta": 1, "p.clayBall": 205, "m.rail": 2, "p.shield": 2, "u.glassPane": 4, "p.chicken": 12, "p.rawIron": 946, "m.endStone": 4, "u.trident": 1, "p.shulkerBox": 9, "u.smithingTable": 1, "p.grassBlock": 1, "u.cobblestone": 712, "g.sneakTime": 118416, "m.glassPane": 2, "c.blazePowder": 6, "p.dirt": 3009, "q.coalOre": 1, "g.air": 300, "q.fireworkStar": 1, "b.ironShovel": 1, "m.snowBlock": 1129, "u.stoneButton": 3, "c.lantern": 32, "b.goldenPickaxe": 1, "q.crackedDeepslateTiles": 1, "tc.use_netherite": 0, "p.smoothRedSandstone": 1, "q.lapisLazuli": 7, "k.spider": 106, "p.birchPressurePlate": 2, "p.mossyCobblestone": 2, "b.ironAxe": 3, "u.stonecutter": 1, "u.diamondSword": 1583, "u.bell": 1, "u.hayBlock": 7, "m.deepslateBrickSlab": 1, "p.goldNugget": 41, "c.pinkShulkerBox": 1, "m.sugarCane": 6, "p.deepslateGoldOre": 13, "c.rawCopperBlock": 85, "p.magmaBlock": 56, "k.enderDragon": 1, "m.sandstone": 3, "p.cryingObsidian": 2, "q.darkOakPlanks": 1, "c.blackDye": 6, "c.birchStairs": 56, "p.barrel": 1, "m.blueTerracotta": 1, "m.stoneBricks": 8, "p.blackWool": 12, "c.glowstone": 4, "m.pointedDripstone": 9, "p.beef": 16, "c.birchSlab": 546, "p.roseBush": 19, "g.playerKills": 3, "c.goldenCarrot": 130, "u.stonePickaxe": 155, "c.goldenPickaxe": 22, "p.ancientDebris": 5, "m.tuff": 165, "c.shears": 2, "p.endStone": 1, "p.brownWool": 4, "g.timeSinceRest": 20906, "p.crackedDeepslateTiles": 1, "m.birchPressurePlate": 2, "m.powderSnow": 101, "g.mobKills": 1552, "m.glowstone": 14, "q.ironIngot": 2, "u.diorite": 2, "p.enderPearl": 40, "c.packedIce": 4, "m.dripstoneBlock": 14, "p.diamond": 154, "p.crackedStoneBricks": 3, "g.interactWithStonecutter": 6, "u.deepslateBricks": 287, "m.oakLog": 2, "tc.use_iron": 0, "k.endermite": 1, "p.chest": 32, "tc.use_wood": 0, "p.furnace": 11, "c.diamondHelmet": 2, "u.goldenBoots": 1, "c.birchPressurePlate": 3, "u.gravel": 10, "u.air": 1, "b.stonePickaxe": 1, "c.anvil": 1, "c.oakPlanks": 40, "m.noteBlock": 1, "m.pinkShulkerBox": 1, "u.whiteBanner": 5, "m.crimsonNylium": 2, "b.shield": 1, "cu.interactWithLectern": 1, "m.birchStairs": 85, "c.shield": 3, "p.playerHead": 12, "u.cookedChicken": 3, "c.furnace": 5, "c.woodenHoe": 1, "g.interactWithGrindstone": 17, "u.composter": 2, "p.soulSand": 20, "d.blaze": 2, "q.dirt": 158, "c.darkOakPlanks": 8, "u.diamondShovel": 6269, "u.blackBed": 8, "p.boneMeal": 6, "p.ironBars": 4, "q.spiderEye": 19, "m.blackBed": 7, "p.goldIngot": 39, "p.snowball": 2648, "m.fire": 43, "p.coalOre": 445, "p.blueTerracotta": 1, "rc_display": 0, "g.openChest": 1865, "p.totemOfUndying": 1, "p.deepslateBrickSlab": 1, "p.deepslateIronOre": 26, "k.skeleton": 261, "m.cobbledDeepslate": 42, "p.magmaCream": 19, "u.enderEye": 15, "c.scaffolding": 468, "k.silverfish": 3, "u.tuff": 26, "q.glowLichen": 9, "m.dandelion": 2, "u.spiderEye": 1, "p.egg": 10, "c.rawCopper": 765, "c.leather": 8, "m.deadBush": 5, "p.tnt": 9, "p.elytra": 2, "g.interactWithSmithingTable": 15, "u.glassBottle": 3, "u.jungleSign": 1, "m.shulkerBox": 8, "c.diamondPickaxe": 16, "u.darkOakDoor": 1, "u.endStone": 1, "p.netherBricks": 1, "p.blackstone": 137, "p.composter": 1, "u.birchSign": 3, "u.musicDiscBlocks": 1, "p.snowBlock": 4, "q.potion": 1, "p.bamboo": 319, "c.diamondAxe": 2, "u.soulSand": 18, "u.diamondChestplate": 3, "c.air": 0, "p.potion": 4, "q.granite": 9, "u.bow": 326, "c.birchSign": 3, "c.stoneSword": 2, "q.diamondShovel": 1, "u.obsidian": 34, "m.grassBlock": 297, "p.brewingStand": 2, "cu.interactWithSmoker": 13, "u.birchPressurePlate": 5, "m.redstoneWire": 7, "q.diamondChestplate": 2, "p.diamondPickaxe": 1, "p.rabbit": 1, "p.pinkDye": 20, "k.zombie": 268, "c.arrow": 12, "q.stoneSword": 3, "u.lantern": 30, "g.openShulkerBox": 14, "c.cobbledDeepslateSlab": 120, "p.oakLog": 15, "p.crackedPolishedBlackstoneBricks": 4, "p.gunpowder": 97, "p.chiseledStoneBricks": 2, "c.enchantingTable": 1, "c.polishedDeepslate": 424, "q.rottenFlesh": 6, "tc.temp": 1561, "m.ironOre": 514, "c.ironHelmet": 4, "m.darkOakLog": 1, "m.mossyStoneBrickStairs": 1, "p.blackShulkerBox": 1, "m.amethystBlock": 10, "p.copperIngot": 280, "u.ironShovel": 245, "u.birchStairs": 133, "p.deepslateBrickStairs": 15, "u.milkBucket": 2, "u.string": 5, "p.ice": 38, "m.detectorRail": 2, "g.interactWithAnvil": 23, "c.blueDye": 13, "g.totalWorldTime": 6889514, "k.squid": 1, "u.cobblestoneStairs": 4, "q.flint": 4, "g.timeSinceDeath": 20882, "p.hayBlock": 21, "g.playNoteblock": 6, "u.blackstone": 2, "q.stoneButton": 2, "m.stonePressurePlate": 1, "u.lectern": 3, "m.cutSandstone": 9, "c.campfire": 4, "m.darkOakPlanks": 3, "c.redDye": 2, "k.enderman": 551, "b.fishingRod": 1, "cu.walkOnWaterOneCm": 253953, "u.enchantingTable": 1, "p.diamondAxe": 1, "m.deepslateLapisOre": 68, "p.inkSac": 7, "m.goldOre": 21, "duraPing.config": 4, "p.cutSandstone": 9, "m.stoneButton": 1, "p.granite": 67, "g.playRecord": 1, "b.ironPickaxe": 2, "cu.fallOneCm": 1141379, "u.rabbit": 1, "p.bread": 6, "q.goldNugget": 3, "cu.interactWithBrewingstand": 9, "m.ancientDebris": 5, "tc.valid": 0, "m.playerWallHead": 1, "c.goldenBoots": 3, "u.cookedMutton": 1, "m.birchFence": 19, "c.armorStand": 1, "c.torch": 1068, "p.cactus": 69, "m.stickyPiston": 3, "m.scaffolding": 197, "q.ironChestplate": 1, "q.sand": 158, "m.deepslateIronOre": 232, "c.ironPickaxe": 2, "m.spruceLeaves": 4, "q.bowl": 1, "u.deepslateBrickSlab": 1, "c.smoothStone": 3, "cu.interactWithSmithingTable": 15, "u.egg": 10, "q.sugarCane": 3, "q.enderPearl": 9, "cu.interactWithBlastFurnace": 104, "cu.climbOneCm": 325308, "p.glowLichen": 17, "u.ironOre": 135, "k.magmaCube": 47, "k.bat": 5, "u.emeraldOre": 8, "u.blueDye": 5, "g.enchantItem": 43, "c.string": 8, "u.deepslateLapisOre": 2, "p.stick": 406, "p.goldBlock": 15, "m.crackedPolishedBlackstoneBricks": 7, "u.fireworkRocket": 286, "k.husk": 1, "q.elytra": 2, "m.hopper": 11, "u.noteBlock": 2, "m.farmland": 2, "u.oakTrapdoor": 1, "p.rottenFlesh": 596, "p.apple": 2, "tc.use_diamond": 0, "q.oakSapling": 3, "m.obsidian": 39, "q.diamondAxe": 1, "u.birchLog": 35, "cusNetPor": 0, "m.mossyCobblestone": 5, "g.damageBlockedByShield": 7895, "p.calcite": 302, "m.ironBars": 4, "m.deepslateBrickStairs": 19, "u.blastFurnace": 8, "c.goldIngot": 87, "c.glassPane": 224, "p.glowstoneDust": 37, "p.suspiciousStew": 1, "c.stoneSlab": 6, "m.vine": 1, "u.barrel": 4, "g.interactWithCraftingTable": 216, "m.jungleWallSign": 1, "p.coal": 1996, "c.hopper": 14, "c.goldBlock": 7, "p.whiteBanner": 7, "p.birchDoor": 9, "m.composter": 1, "q.torch": 1, "m.strippedBirchLog": 1, "c.deepslateTiles": 232, "u.oakSapling": 1, "p.lapisLazuli": 929, "c.ironBoots": 4, "m.wallTorch": 66, "c.yellowDye": 1, "q.clayBall": 77, "p.bone": 538, "u.diamondPickaxe": 28631, "c.goldNugget": 1026, "k.piglin": 1, "b.ironChestplate": 2, "p.mossyStoneBricks": 6, "m.birchDoor": 9, "p.spiderEye": 122, "q.playerHead": 1, "p.birchPlanks": 359, "p.sandstone": 6, "p.wheatSeeds": 185, "u.snowBlock": 28, "u.suspiciousStew": 1, "b.diamondPickaxe": 10, "p.ladder": 29, "p.deepslateTiles": 32, "k.wanderingTrader": 1, "k.witch": 3, "g.bellRing": 13, "p.birchLog": 548, "m.mossyStoneBrickSlab": 1, "c.birchFence": 264, "m.blastFurnace": 7, "u.furnace": 21, "cu.crouchOneCm": 312901, "p.darkOakSlab": 1, "u.deepslateTileSlab": 10, "cu.horseOneCm": 126493, "m.oakPlanks": 1, "u.rottenFlesh": 6, "m.redstoneOre": 7, "m.snow": 14, "p.diamondChestplate": 1, "m.polishedBlackstoneBricks": 7, "k.drowned": 7, "c.cobblestoneStairs": 4, "m.birchPlanks": 363, "q.string": 7, "u.mossyStoneBricks": 2, "g.interactWithBrewingstand": 9, "TreeCapitator": 0, "u.birchSlab": 567, "g.interactWithSmoker": 13, "p.cornflower": 1, "p.cobblestone": 25384, "c.ladder": 132, "q.blazeRod": 5, "p.poppy": 2, "u.fishingRod": 2, "u.sand": 9, "q.netherrack": 1, "u.goldenCarrot": 129, "p.birchSapling": 173, "cu.interactWithStonecutter": 6, "m.granite": 67, "b.ironHelmet": 2, "m.diorite": 151, "q.wheatSeeds": 2, "u.yellowShulkerBox": 2, "m.calcite": 306, "u.smoothRedSandstone": 1, "m.birchSlab": 97, "p.diorite": 150, "duraPing": 0, "u.apple": 2, "u.stone": 1703, "m.amethystCluster": 6, "m.hayBlock": 19, "m.emeraldOre": 32, "q.redDye": 1, "p.yellowShulkerBox": 1, "q.feather": 3, "u.cutSandstone": 9, "u.melonSlice": 5, "p.waterBucket": 1, "p.diamondShovel": 2, "c.netheritePickaxe": 2, "m.copperOre": 449, "m.torch": 181, "c.detectorRail": 6, "u.glowstone": 5, "m.barrel": 2, "p.tripwireHook": 1, "c.redShulkerBox": 1, "u.ironHelmet": 1, "u.deepslateDiamondOre": 6, "u.diamondAxe": 1225, "q.gunpowder": 61, "u.boneMeal": 57, "p.shears": 1, "cu.flyOneCm": 9480916, "u.deepslateTiles": 197, "p.redShulkerBox": 1, "m.mossyStoneBricks": 7, "m.chest": 36, "q.bone": 16, "u.woodenHoe": 3, "k.glowSquid": 3, "p.darkOakLog": 1, "p.emeraldOre": 8, "g.inspectHopper": 121, "p.carrot": 687, "p.saddle": 1, "u.netherBricks": 1, "u.mutton": 14, "tc.damage": 1250, "g.animalsBred": 102, "c.birchPlanks": 1829, "u.smoker": 1, "m.andesite": 116, "u.ladder": 51, "p.stoneSword": 5, "q.snowball": 49, "m.chiseledStoneBricks": 2, "g.armor": 16, "c.glass": 28, "q.poppy": 2, "b.stoneAxe": 1, "k.hoglin": 1, "u.netheritePickaxe": 12943, "m.dirtPath": 17, "p.stonePressurePlate": 1, "g.sleepInBed": 34, "g.jump": 43934, "g.deathCount": 128, "q.bakedPotato": 4, "p.amethystShard": 52, "p.oakPlanks": 1, "m.deepslateBricks": 131, "u.potato": 64, "p.charcoal": 259, "p.spruceSapling": 89, "b.crossbow": 1, "q.shield": 2, "c.netheriteIngot": 1, "p.polishedBlackstoneBricks": 3, "u.pinkShulkerBox": 2, "c.flintAndSteel": 1, "p.stoneButton": 3, "p.deepslateDiamondOre": 6, "g.playMinutes": 5741, "u.oakBoat": 22, "m.cryingObsidian": 2, "c.stick": 652, "p.jungleSign": 1, "u.scaffolding": 632, "u.deepslateBrickStairs": 385, "k.sheep": 5, "g.hunger": 16, "c.craftingTable": 4, "m.deepslateCopperOre": 22, "c.whiteShulkerBox": 1, "cu.swimOneCm": 618604, "m.stone": 29951, "p.minecart": 3, "c.redstoneBlock": 40, "u.redstone": 9, "p.ironIngot": 11, "c.stone": 3, "p.scaffolding": 432, "p.obsidian": 39, "cu.walkUnderWaterOneCm": 462737, "g.level": 26, "q.crossbow": 1, "p.spruceLog": 652, "m.netherGoldOre": 15, "u.powderSnowBucket": 1, "rc_help": 0, "p.blazeRod": 8, "u.stoneShovel": 92, "u.snowball": 631, "cu.interactWithGrindstone": 17, "p.rail": 2, "c.stonecutter": 1, "m.largeAmethystBud": 2, "c.diamondSword": 3, "m.goldBlock": 15, "u.greenCarpet": 1, "u.stoneHoe": 89, "m.basalt": 55, "p.netherrack": 3383, "m.deepslateDiamondOre": 94, "p.basalt": 55, "u.ironLeggings": 2, "p.hopper": 11, "p.birchFence": 19, "q.stoneBricks": 4, "u.carrot": 537, "m.spawner": 5, "p.ironNugget": 5, "color": 0, "u.ironPickaxe": 483, "u.whiteDye": 1, "p.deepslateLapisOre": 2, "p.darkOakPlanks": 1, "k.chicken": 10, "p.bow": 21, "p.blackBed": 7, "cu.interactWithCraftingTable": 216, "p.oakSapling": 15, "u.goldenPickaxe": 33, "p.lantern": 12, "c.fireworkRocket": 171, "u.shears": 8, "p.bucket": 5, "p.feather": 11, "c.stonePickaxe": 1, "c.paper": 66, "u.ironAxe": 443, "p.strippedBirchLog": 1, "c.blastFurnace": 1, "c.noteBlock": 2, "c.ironIngot": 122, "m.blackShulkerBox": 1, "c.ironNugget": 257, "c.copperBlock": 230, "p.arrow": 487, "q.ironBars": 2, "m.dirt": 2855, "k.witherSkeleton": 23, "c.oakBoat": 2, "u.ironChestplate": 1, "p.melonSlice": 5, "p.cobbledDeepslate": 1832, "g.play": 5741, "m.spruceSapling": 1, "p.goldenBoots": 1, "m.netherrack": 4033, "b.goldenBoots": 2, "c.copperIngot": 19, "c.bread": 22, "d.skeleton": 29, "cu.sprintOneCm": 11219212, "k.evoker": 1, "p.noteBlock": 1, "c.barrel": 2, "c.ironLeggings": 5, "u.ironBoots": 1, "cu.walkOneCm": 9671058, "c.deepslateBricks": 424, "u.birchDoor": 14, "cu.tradedWithVillager": 1, "m.sculkSensor": 1, "m.pinkStainedGlassPane": 3, "c.darkOakDoor": 3, "p.carvedPumpkin": 1, "c.ironAxe": 3, "c.book": 1, "c.diamondLeggings": 1, "u.pointedDripstone": 3, "q.cobblestone": 46, "p.deepslateRedstoneOre": 14, "p.birchStairs": 84, "g.openEnderchest": 2, "q.whiteBanner": 1, "cu.interactWithFurnace": 181, "m.glowLichen": 18, "tc.disabled": 0, "p.string": 247, "m.magmaBlock": 56, "u.deepslate": 1, "k.vex": 3, "m.lectern": 3, "m.darkOakSlab": 1, "u.redShulkerBox": 2, "m.deepslateRedstoneOre": 110, "k.ravager": 1, "m.crackedDeepslateTiles": 1, "c.oakTrapdoor": 2, "u.shield": 119, "c.boneMeal": 633, "u.rail": 1, "m.roseBush": 19, "m.netherQuartzOre": 702, "p.glowstone": 1, "p.repeater": 1, "m.furnace": 19, "q.cookedChicken": 6, "p.blastFurnace": 2, "tc.sneak": 0, "m.deepslateEmeraldOre": 3, "u.bread": 21, "p.flint": 180, "u.netherrack": 681, "p.emerald": 69, "p.whiteWool": 18, "cu.aviateOneCm": 8541562, "k.creeper": 26, "u.dirt": 585, "q.diamondSword": 1, "c.blackBed": 1, "p.goldenCarrot": 32, "u.tnt": 9, "b.ironLeggings": 3, "tc.use_stone": 0, "p.potato": 69, "c.smoothStoneSlab": 6, "u.deepslateGoldOre": 13, "u.stoneAxe": 53, "m.cornflower": 1, "k.pillager": 30, "u.packedIce": 2, "g.openBarrel": 169, "u.coalOre": 444, "q.bucket": 1, "p.copperOre": 8, "p.glowInkSac": 36, "u.birchSapling": 146, "p.oakBoat": 21, "u.calcite": 15, "u.copperOre": 8, "m.lapisOre": 27, "u.birchFence": 113, "m.tallGrass": 42, "c.bucket": 6, "u.chest": 77, "p.andesite": 114, "u.crossbow": 3, "k.skeletonHorse": 1, "u.whiteShulkerBox": 5, "m.tripwire": 4, "m.deepslateTiles": 32, "p.stickyPiston": 3, "u.granite": 12, "c.stonePressurePlate": 1, "p.tuff": 125, "c.diamondShovel": 2, "c.fireworkStar": 1, "c.whiteDye": 9, "u.flintAndSteel": 16, "d.witherSkeleton": 1, "u.bucket": 78, "p.lead": 2, "u.potion": 6, "q.redstone": 3, "m.deepslateGoldOre": 137, "c.chest": 62, "g.tuneNoteblock": 25, "tc.use_gold": 0, "m.smoothRedSandstone": 1, "c.nameTag": 1, "cu.sleepInBed": 34, "b.diamondAxe": 1, "p.gravel": 1731, "m.cobblestone": 323, "q.cobbledDeepslate": 66, "m.cobweb": 20, "u.spruceSapling": 37, "u.wheatSeeds": 13, "m.lantern": 8, "m.grass": 125, "c.stoneHoe": 1, "p.lightGrayWool": 1, "k.rabbit": 1, "m.smoothBasalt": 345, "p.enderEye": 10, "b.ironBoots": 3, "m.blackstone": 137, "c.stoneButton": 2, "p.leather": 11, "p.birchSlab": 149, "p.musicDiscBlocks": 1, "d.zombie": 20, "u.anvil": 1, "q.bow": 1, "q.stoneBrickStairs": 4, "p.amethystBlock": 10, "g.playTime": 6889514, "c.snowBlock": 546, "u.campfire": 4, "m.redShulkerBox": 1, "k.cow": 5, "d.drowned": 1, "u.playerHead": 4, "u.shulkerBox": 12, "q.darkOakLog": 1, "m.birchLeaves": 9, "u.cobbledDeepslate": 188, "u.minecart": 5, "m.ladder": 29, "p.dandelion": 2, "p.ironOre": 151, "c.diamondChestplate": 5, "p.whiteShulkerBox": 5, "c.enchantedBook": 1, "m.sand": 375, "m.ironDoor": 7, "u.birchPlanks": 831, "m.cactus": 43, "p.pinkShulkerBox": 1, "g.leaveGame": 65, "m.craftingTable": 19, "p.sugarCane": 9, "u.torch": 1210, "k.ghast": 9, "p.detectorRail": 2, "m.coalOre": 1483, "g.drop": 157, "p.rawGold": 216, "p.greenCarpet": 1, "g.raidWin": 1, "m.greenCarpet": 1, "c.ironShovel": 1, "q.netheritePickaxe": 1, "p.stoneBricks": 6, "m.birchLog": 127, "q.birchSlab": 1, "d.player": 1, "cu.talkedToVillager": 30, "q.snowBlock": 4, "cu.minecartOneCm": 146074, "c.bow": 13, "m.oakLeaves": 6, "m.podzol": 1, "c.sprucePlanks": 388, "m.deepslate": 1812, "p.quartz": 1086, "u.andesite": 15, "u.glowInkSac": 13, "m.soulSand": 24, "p.deepslateBricks": 72, "p.flintAndSteel": 1, "c.smoker": 1, "p.stone": 4303, "c.deepslateTileSlab": 18, "c.birchDoor": 9, "p.redstone": 556, "c.ironChestplate": 4, "d.magmaCube": 1, "p.wheat": 63, "m.carrots": 1, "cu.damageBlockedByShield": 7895, "u.detectorRail": 3, "q.whiteWool": 1, "q.lightWeightedPressurePlate": 1, "c.smithingTable": 1, "d.witch": 1, "p.pointedDripstone": 15, "p.netheritePickaxe": 2, "c.ironBlock": 55, "q.andesite": 2, "p.craftingTable": 20, "q.stoneShovel": 1, "g.tradedWithVillager": 1, "q.coal": 6, "p.sand": 546, "p.dripstoneBlock": 8, "q.stick": 18, "q.brewingStand": 1, "u.grassBlock": 1, "p.torch": 366, "k.blaze": 11, "m.seagrass": 2, "m.gravel": 1691, "q.birchPlanks": 8, "g.talkedToVillager": 30, "u.blackShulkerBox": 1, "c.pinkStainedGlassPane": 120, "p.crossbow": 4, "c.yellowShulkerBox": 1, "m.brewingStand": 1, "c.charcoal": 74, "g.interactWithBlastFurnace": 104, "u.deepslateRedstoneOre": 14, "g.damageTaken": 46214, "c.shulkerBox": 8, "m.crackedStoneBricks": 4, "p.lectern": 3, "g.interactWithFurnace": 181, "k.piglinBrute": 3, "q.oakPlanks": 25, "p.phantomMembrane": 7}, "ThatLeona": {"p.yellowCarpet": 1, "p.peony": 1, "cu.interactWithStonecutter": 12, "m.granite": 1, "p.stoneAxe": 1, "m.spruceSlab": 24, "p.blueBed": 1, "u.waterBucket": 25, "m.diorite": 11, "q.wheatSeeds": 1, "m.spruceTrapdoor": 25, "p.ghastTear": 1, "cu.boatOneCm": 26937, "q.stoneAxe": 2, "d.spider": 1, "p.diorite": 7, "p.spruceFence": 12, "cu.playTime": 718804, "duraPing": 0, "p.spruceTrapdoor": 25, "u.apple": 6, "d.creeper": 1, "m.hayBlock": 9, "m.deepslateTileSlab": 6, "m.spruceLog": 59, "u.woodenSword": 39, "u.yellowBed": 3, "c.deepslateTileWall": 84, "c.woodenPickaxe": 1, "m.torch": 4, "p.purpleBed": 1, "m.wheat": 9, "u.ironHelmet": 2, "p.polishedDiorite": 5, "u.boneBlock": 166, "u.lavaBucket": 12, "u.craftingTable": 14, "u.boneMeal": 15, "p.strippedOakLog": 4, "p.woodenPickaxe": 1, "g.health": 19, "cu.flyOneCm": 1769146, "g.damageDealt": 19288, "u.deepslateTiles": 287, "m.netherBricks": 4, "m.chest": 10, "p.netherWartBlock": 259, "u.netherWartBlock": 194, "m.playerHead": 2, "p.yellowBed": 4, "q.stonePickaxe": 1, "p.saddle": 1, "p.carrot": 5, "c.darkOakStairs": 128, "p.grindstone": 1, "tc.damage": 131, "g.animalsBred": 3, "p.mutton": 22, "c.birchPlanks": 220, "m.andesite": 1, "p.porkchop": 25, "m.boneBlock": 120, "m.rail": 8, "p.stoneSword": 3, "c.cookedBeef": 40, "u.glassPane": 87, "g.armor": 15, "p.rawIron": 103, "b.stoneAxe": 1, "k.hoglin": 6, "u.cobblestone": 186, "g.sleepInBed": 22, "g.sneakTime": 67007, "g.jump": 10983, "m.azureBluet": 4, "p.dirt": 186, "m.darkOakStairs": 36, "g.air": 300, "c.goldenHelmet": 1, "g.deathCount": 12, "p.boneBlock": 118, "u.basalt": 29, "p.crimsonStem": 102, "tc.use_netherite": 0, "p.oakPlanks": 3, "q.lapisLazuli": 20, "k.spider": 12, "c.spruceFence": 144, "b.ironAxe": 2, "u.darkOakFenceGate": 10, "u.stonecutter": 2, "u.diamondSword": 304, "q.goldenSword": 2, "c.flintAndSteel": 1, "c.quartzBlock": 11, "m.sugarCane": 2, "g.playMinutes": 599, "p.woodenSword": 1, "u.darkOakStairs": 118, "u.oakBoat": 1, "c.woodenShovel": 1, "c.deepslate": 28, "u.bakedPotato": 7, "c.stick": 296, "q.ironPickaxe": 1, "u.scaffolding": 302, "q.whiteCarpet": 2, "k.sheep": 14, "p.woodenAxe": 1, "c.craftingTable": 9, "g.hunger": 15, "m.stone": 83, "c.woodenSword": 1, "cu.swimOneCm": 33621, "p.beef": 1, "u.crimsonPlanks": 120, "c.stone": 3, "p.scaffolding": 279, "cu.walkUnderWaterOneCm": 5462, "u.stonePickaxe": 110, "g.level": 22, "q.ironAxe": 1, "u.deepslateTileWall": 20, "p.spruceLog": 59, "cu.interactWithGrindstone": 2, "u.stoneShovel": 168, "p.rail": 8, "c.stonecutter": 1, "q.woodenSword": 1, "c.diamondSword": 2, "u.spruceFence": 87, "m.tuff": 3, "u.spruceLog": 280, "d.zombifiedPiglin": 2, "u.stoneHoe": 9, "p.brownWool": 2, "m.basalt": 31, "g.timeSinceRest": 17004, "u.oakLog": 187, "p.netherrack": 94, "m.powderSnow": 1, "m.deepslateDiamondOre": 18, "p.basalt": 30, "g.mobKills": 136, "u.woodenAxe": 49, "m.glowstone": 6, "c.wheat": 81, "m.crimsonStem": 5, "u.diorite": 59, "p.spruceFenceGate": 9, "color": 0, "p.oakStairs": 9, "m.bookshelf": 6, "p.enderPearl": 1, "u.ironPickaxe": 303, "p.darkOakPlanks": 20, "p.diamond": 18, "g.interactWithStonecutter": 12, "p.bow": 3, "m.yellowBed": 4, "m.oakLog": 63, "cu.interactWithCraftingTable": 98, "tc.use_iron": 0, "p.oakSapling": 115, "p.chest": 10, "c.darkOakSlab": 192, "tc.use_wood": 0, "p.furnace": 8, "q.cookedMutton": 2, "c.stonePickaxe": 2, "u.ironAxe": 785, "b.woodenAxe": 1, "c.ironIngot": 74, "c.oakPlanks": 340, "m.quartzBlock": 2, "p.arrow": 26, "c.woodenAxe": 3, "m.dirt": 26, "k.witherSkeleton": 6, "c.oakBoat": 1, "u.ironChestplate": 1, "p.cobbledDeepslate": 54, "g.play": 599, "u.roseBush": 12, "u.woodenShovel": 24, "p.playerHead": 6, "p.pumpkin": 7, "m.netherrack": 88, "u.cookedChicken": 13, "c.furnace": 2, "g.interactWithGrindstone": 2, "q.yellowCarpet": 1, "p.soulSand": 5, "u.spruceDoor": 1, "c.cookedPorkchop": 41, "c.bread": 27, "p.ironAxe": 1, "q.dirt": 1, "d.skeleton": 1, "c.darkOakPlanks": 676, "u.diamondShovel": 101, "cu.sprintOneCm": 1850959, "m.netherWartBlock": 2, "c.darkOakFenceGate": 32, "c.cookedMutton": 41, "q.spiderEye": 1, "p.ironPickaxe": 1, "c.ironLeggings": 2, "u.cookedBeef": 36, "m.fire": 10, "cu.walkOneCm": 2409821, "p.netherWart": 23, "m.netherWart": 20, "g.openChest": 488, "u.quartzBlock": 2, "k.skeleton": 21, "p.magmaCream": 2, "c.ironAxe": 6, "c.scaffolding": 84, "u.tuff": 3, "u.goldenHelmet": 1, "m.dandelion": 1, "c.oakStairs": 32, "p.whiteCarpet": 2, "p.egg": 1, "p.cookedBeef": 3, "cu.interactWithFurnace": 134, "m.glowLichen": 1, "tc.disabled": 0, "c.spruceFenceGate": 14, "k.pig": 6, "p.string": 15, "c.diamondPickaxe": 2, "p.netherBricks": 4, "p.blackstone": 3, "m.darkOakSlab": 17, "p.composter": 1, "m.deepslateRedstoneOre": 6, "p.bamboo": 64, "c.boneMeal": 99, "q.bread": 11, "p.sweetBerries": 8, "m.netherQuartzOre": 44, "m.purpleBed": 1, "p.deepslateTileSlab": 9, "c.air": 0, "m.furnace": 8, "q.yellowBed": 1, "tc.sneak": 0, "c.spruceDoor": 3, "c.stoneSword": 2, "c.stoneShovel": 2, "m.grassBlock": 167, "p.brewingStand": 2, "u.bread": 75, "m.stonecutter": 1, "p.flint": 1, "m.warpedWartBlock": 1, "c.cookedChicken": 13, "p.book": 18, "u.netherrack": 75, "p.whiteWool": 12, "k.creeper": 3, "u.dirt": 106, "k.zombie": 32, "p.lilac": 1, "q.stoneSword": 2, "u.pinkTulip": 5, "tc.use_stone": 0, "p.potato": 3, "p.oakLog": 250, "p.gunpowder": 5, "c.crimsonPlanks": 152, "u.stoneAxe": 139, "m.cornflower": 1, "q.rottenFlesh": 4, "tc.temp": 250, "m.ironOre": 63, "u.deepslateTileStairs": 334, "c.ironHelmet": 1, "p.oakBoat": 1, "m.lapisOre": 8, "p.azureBluet": 5, "u.darkOakPlanks": 86, "m.tallGrass": 15, "p.cookedMutton": 2, "c.bucket": 1, "m.blueBed": 1, "m.yellowCarpet": 2, "u.chest": 22, "g.totalWorldTime": 718804, "p.andesite": 1, "u.grindstone": 1, "d.piglinBrute": 1, "m.deepslateTiles": 28, "g.timeSinceDeath": 42636, "p.hayBlock": 9, "p.tuff": 3, "c.diamondShovel": 1, "u.blackstone": 3, "u.stoneSword": 65, "u.flintAndSteel": 1, "u.spruceFenceGate": 12, "u.bucket": 37, "m.darkOakPlanks": 22, "c.spruceStairs": 136, "p.darkOakStairs": 35, "p.lead": 23, "cu.walkOnWaterOneCm": 12582, "u.oakStairs": 32, "m.deepslateGoldOre": 16, "c.chest": 21, "tc.use_gold": 0, "m.deepslateLapisOre": 10, "d.hoglin": 1, "c.polishedDiorite": 2, "cu.sleepInBed": 22, "p.gravel": 18, "m.cobblestone": 4, "m.cobweb": 1, "m.goldOre": 5, "u.wheatSeeds": 16, "q.woodenAxe": 3, "m.grass": 129, "p.granite": 1, "c.stoneHoe": 1, "cu.fallOneCm": 373783, "p.bread": 29, "m.potatoes": 1, "p.lightGrayWool": 1, "tc.valid": 0, "q.woodenPickaxe": 1, "u.cookedMutton": 31, "m.blackstone": 3, "p.leather": 2, "p.deepslateTileStairs": 74, "m.oakStairs": 9, "c.torch": 156, "m.grindstone": 1, "m.scaffolding": 134, "q.bow": 2, "m.pumpkin": 8, "m.sprucePlanks": 37, "m.deepslateIronOre": 41, "p.warpedWartBlock": 1, "g.playTime": 718804, "c.ironPickaxe": 2, "m.spruceLeaves": 1, "p.weepingVines": 10, "m.strippedOakLog": 4, "u.spruceSlab": 193, "cu.climbOneCm": 176789, "u.woodenPickaxe": 31, "k.cow": 2, "k.magmaCube": 19, "u.playerHead": 4, "m.birchLeaves": 3, "u.cobbledDeepslate": 15, "u.cookedPorkchop": 19, "g.enchantItem": 4, "p.spruceSlab": 24, "p.stick": 126, "p.dandelion": 6, "m.whiteCarpet": 2, "u.spruceTrapdoor": 131, "c.stoneAxe": 2, "m.sand": 100, "u.orangeTulip": 12, "u.birchPlanks": 220, "u.polishedDiorite": 65, "m.soulFire": 3, "g.leaveGame": 14, "m.deepslateTileStairs": 79, "q.birchSapling": 9, "m.craftingTable": 9, "p.sugarCane": 5, "p.rottenFlesh": 50, "u.torch": 135, "p.apple": 12, "tc.use_diamond": 0, "k.ghast": 2, "q.oakSapling": 9, "u.oakPlanks": 76, "m.coalOre": 54, "g.drop": 41, "p.rawGold": 21, "m.spruceFence": 12, "c.boneBlock": 9, "cusNetPor": 0, "p.quartzBlock": 2, "m.peony": 1, "m.birchLog": 17, "d.player": 1, "p.sprucePlanks": 23, "c.glassPane": 160, "u.sprucePlanks": 255, "p.glowstoneDust": 20, "m.polishedDiorite": 5, "cu.talkedToVillager": 12, "m.oakLeaves": 63, "m.spruceFenceGate": 9, "c.sprucePlanks": 1448, "p.spruceStairs": 25, "g.interactWithCraftingTable": 98, "p.coal": 86, "m.deepslate": 54, "p.quartz": 44, "m.soulSand": 5, "m.composter": 1, "m.sweetBerryBush": 3, "u.lilac": 11, "u.spruceStairs": 96, "u.oakSapling": 4, "p.lapisLazuli": 114, "c.ironBoots": 2, "m.wallTorch": 2, "q.diamondPickaxe": 1, "p.redstone": 30, "c.ironChestplate": 2, "k.traderLlama": 2, "b.stoneShovel": 1, "q.lightGrayWool": 1, "p.bone": 24, "p.wheat": 9, "m.carrots": 1, "c.spruceTrapdoor": 144, "u.diamondPickaxe": 381, "k.piglin": 2, "p.spiderEye": 5, "q.playerHead": 1, "p.birchPlanks": 5, "p.shroomlight": 6, "p.wheatSeeds": 46, "p.craftingTable": 8, "q.cookedPorkchop": 5, "p.deepslateTiles": 24, "k.wanderingTrader": 1, "m.spruceStairs": 17, "p.birchLog": 100, "p.sand": 100, "c.spruceSlab": 210, "u.furnace": 7, "cu.crouchOneCm": 252954, "p.darkOakSlab": 18, "u.deepslateTileSlab": 89, "cu.horseOneCm": 1348997, "u.porkchop": 1, "m.oakPlanks": 2, "p.torch": 6, "k.blaze": 2, "p.stonecutter": 1, "m.gravel": 21, "m.redstoneOre": 1, "g.talkedToVillager": 12, "m.brewingStand": 2, "m.birchPlanks": 5, "g.damageTaken": 13372, "u.darkOakSlab": 123, "TreeCapitator": 0, "g.interactWithFurnace": 134, "p.cobblestone": 83, "p.goldenSword": 2, "q.oakPlanks": 2, "p.birchSapling": 41}, "ellliebutton": {"p.peony": 53, "p.ironLeggings": 1, "cu.interactWithStonecutter": 5, "p.junglePlanks": 1, "m.granite": 99, "b.ironHelmet": 7, "u.waterBucket": 15, "m.diorite": 51, "q.wheatSeeds": 5, "m.calcite": 5, "q.oakLog": 17, "p.ghastTear": 2, "cu.boatOneCm": 46125, "d.spider": 2, "p.floweringAzalea": 2, "p.diorite": 57, "cu.playTime": 1921088, "p.rawCopper": 404, "duraPing": 0, "c.pinkDye": 106, "m.beeNest": 1, "p.grayWool": 2, "p.rawCopperBlock": 1, "m.strippedJungleLog": 1, "d.creeper": 4, "u.stone": 2, "m.clay": 37, "m.amethystCluster": 1, "m.spruceDoor": 4, "m.spruceLog": 8, "m.emeraldOre": 3, "u.woodenSword": 56, "p.chestMinecart": 1, "q.feather": 3, "m.junglePlanks": 1, "m.bamboo": 2, "c.woodenPickaxe": 1, "m.copperOre": 115, "p.smoothBasalt": 4, "k.zombieVillager": 7, "m.torch": 2, "cu.interactWithAnvil": 1, "k.horse": 3, "g.interactWithLectern": 31, "q.potato": 3, "m.wheat": 64, "q.gunpowder": 5, "u.craftingTable": 24, "q.tuff": 12, "q.brownWool": 1, "u.boneMeal": 51, "g.health": 20, "p.salmon": 12, "m.cutRedSandstone": 7, "cu.flyOneCm": 2476175, "g.damageDealt": 65788, "m.poppy": 34, "c.oakDoor": 9, "p.netherWartBlock": 36, "q.bone": 3, "m.crimsonFungus": 2, "p.beetroot": 51, "q.rawCopper": 17, "p.darkOakLog": 185, "c.oakSign": 3, "m.playerHead": 4, "g.inspectHopper": 1, "u.brewingStand": 2, "p.carrot": 210, "p.ironSword": 8, "u.oakSign": 3, "u.mutton": 1, "p.grindstone": 2, "tc.damage": 105, "m.cocoa": 13, "p.mutton": 113, "c.birchPlanks": 44, "m.andesite": 56, "p.porkchop": 32, "m.boneBlock": 6, "p.clayBall": 148, "m.rail": 2, "p.shield": 1, "u.ladder": 30, "p.darkOakSapling": 21, "c.cookedBeef": 37, "q.snowball": 260, "m.rawIronBlock": 1, "u.glassPane": 71, "m.redTulip": 2, "p.chicken": 14, "g.armor": 8, "p.rawIron": 399, "c.glass": 196, "b.stoneAxe": 3, "k.hoglin": 2, "q.oakTrapdoor": 1, "u.cobblestone": 256, "p.grassBlock": 1, "g.sleepInBed": 17, "g.sneakTime": 12345, "p.strippedAcaciaLog": 1, "g.jump": 19068, "m.glassPane": 2, "p.brownMushroom": 9, "m.azureBluet": 10, "p.dirt": 293, "q.boneMeal": 1, "p.acaciaLog": 47, "g.air": 300, "g.deathCount": 106, "p.boneBlock": 6, "b.ironShovel": 1, "m.snowBlock": 77, "q.grayWool": 1, "p.crimsonStem": 77, "b.ironSword": 4, "p.beetrootSeeds": 148, "tc.use_netherite": 0, "p.amethystShard": 4, "m.redMushroom": 8, "p.oakPlanks": 105, "k.spider": 20, "m.deepslateBricks": 1, "p.mossyCobblestone": 1, "b.ironAxe": 2, "u.potato": 76, "u.goldBlock": 2, "p.spruceSapling": 3, "q.shield": 1, "q.goldenBoots": 1, "k.strider": 2, "p.slimeBall": 16, "c.flintAndSteel": 1, "p.goldNugget": 87, "c.quartzBlock": 3, "m.sugarCane": 22, "g.playMinutes": 1600, "c.rawCopperBlock": 7, "p.magmaBlock": 9, "u.oakBoat": 1, "p.azalea": 7, "u.bakedPotato": 84, "c.stick": 360, "q.ironPickaxe": 4, "q.spruceLog": 7, "p.acaciaSapling": 8, "m.strippedSpruceLog": 1, "p.strippedSpruceLog": 1, "k.sheep": 78, "c.craftingTable": 17, "g.hunger": 20, "m.deepslateCopperOre": 10, "m.stone": 4630, "c.woodenSword": 1, "cu.swimOneCm": 552489, "q.glassPane": 1, "q.ironLeggings": 1, "p.blackWool": 4, "m.pointedDripstone": 11, "p.beef": 26, "p.roseBush": 33, "p.ironIngot": 4, "g.playerKills": 6, "cu.walkUnderWaterOneCm": 321219, "u.stonePickaxe": 301, "m.mossCarpet": 4, "g.level": 33, "q.ironAxe": 2, "p.spruceLog": 55, "k.salmon": 15, "m.netherGoldOre": 20, "d.guardian": 1, "rc_help": 0, "cu.interactWithGrindstone": 3, "p.rail": 6, "m.largeAmethystBud": 2, "g.interactWithCartographyTable": 4, "m.redNetherBricks": 6, "q.basalt": 13, "m.tuff": 122, "m.goldBlock": 2, "u.spruceLog": 1, "c.shears": 2, "m.floweringAzalea": 2, "d.zombifiedPiglin": 1, "q.diorite": 6, "p.brownWool": 1, "m.basalt": 123, "g.timeSinceRest": 21908, "p.netherrack": 535, "m.powderSnow": 29, "m.deepslateDiamondOre": 72, "p.basalt": 121, "m.buddingAmethyst": 1, "p.oxeyeDaisy": 12, "p.jungleLog": 6, "g.mobKills": 465, "q.arrow": 6, "u.carrot": 147, "u.woodenAxe": 41, "m.glowstone": 39, "m.crimsonStem": 24, "q.ironIngot": 40, "u.diorite": 8, "m.spawner": 4, "color": 0, "p.oakStairs": 1, "m.bookshelf": 12, "p.enderPearl": 1, "u.ironPickaxe": 4584, "m.kelpPlant": 2, "p.darkOakPlanks": 1, "m.dripstoneBlock": 12, "q.beetroot": 6, "cu.interactWithCartographyTable": 4, "p.diamond": 75, "g.interactWithStonecutter": 5, "k.chicken": 14, "u.cutRedSandstone": 7, "p.bow": 5, "d.pillager": 1, "u.deepslateBricks": 8, "m.lilyOfTheValley": 30, "m.yellowBed": 1, "m.oakLog": 74, "cu.interactWithCraftingTable": 128, "tc.use_iron": 0, "p.oakSapling": 93, "u.goldenPickaxe": 2, "m.cartographyTable": 3, "u.shears": 232, "tc.use_wood": 0, "p.furnace": 5, "p.feather": 9, "u.beetrootSeeds": 58, "c.stonePickaxe": 3, "u.ironAxe": 466, "b.woodenAxe": 1, "q.mossyCobblestone": 1, "q.lectern": 1, "q.jungleLog": 5, "k.slime": 21, "b.stonePickaxe": 2, "c.brick": 356, "k.bee": 2, "c.ironIngot": 195, "c.oakPlanks": 668, "p.glassPane": 2, "m.darkOakSapling": 1, "c.ironHoe": 1, "p.arrow": 84, "c.woodenAxe": 1, "cu.interactWithLectern": 31, "m.dirt": 140, "q.oakStairs": 1, "c.oakBoat": 1, "q.beetrootSeeds": 1, "p.cobbledDeepslate": 887, "g.play": 1600, "u.roseBush": 1, "c.shield": 1, "c.writableBook": 5, "u.ironHoe": 46, "p.goldenBoots": 1, "p.playerHead": 16, "p.pumpkin": 15, "m.netherrack": 564, "u.cookedChicken": 14, "c.furnace": 5, "u.writableBook": 6, "p.spruceDoor": 6, "g.interactWithGrindstone": 3, "p.rabbitHide": 1, "u.composter": 1, "q.apple": 1, "b.goldenBoots": 1, "u.spruceDoor": 7, "c.cookedPorkchop": 23, "c.bread": 21, "q.dirt": 24, "d.skeleton": 8, "cu.sprintOneCm": 5280925, "m.netherWartBlock": 2, "p.boneMeal": 2, "c.cookedMutton": 109, "q.spiderEye": 4, "p.ironPickaxe": 3, "c.ironLeggings": 3, "p.snowball": 258, "u.cookedBeef": 35, "m.fire": 9, "cu.walkOneCm": 5796134, "p.crimsonRoots": 1, "c.deepslateBricks": 196, "p.netherWart": 234, "rc_display": 0, "m.netherWart": 88, "g.openChest": 906, "m.sculkSensor": 3, "k.skeleton": 69, "m.orangeTulip": 5, "m.cobbledDeepslate": 11, "p.magmaCream": 1, "c.ironAxe": 6, "c.book": 1, "k.silverfish": 1, "u.tuff": 86, "m.dandelion": 140, "q.cobblestone": 82, "m.strippedAcaciaLog": 1, "q.netherWartBlock": 36, "q.magmaBlock": 9, "m.lilac": 11, "p.egg": 1, "p.cookedBeef": 1, "c.leather": 41, "cu.interactWithFurnace": 212, "q.ironSword": 9, "m.glowLichen": 4, "g.interactWithSmithingTable": 4, "tc.disabled": 0, "u.jungleSign": 1, "k.pig": 12, "p.string": 57, "m.magmaBlock": 12, "c.diamondPickaxe": 2, "u.cookedSalmon": 6, "p.rawIronBlock": 1, "m.lectern": 10, "p.blackstone": 750, "p.composter": 1, "m.deepslateRedstoneOre": 186, "c.magentaDye": 22, "q.goldenPickaxe": 1, "q.leather": 2, "u.shield": 142, "p.bamboo": 14, "c.boneMeal": 78, "m.roseBush": 36, "m.netherQuartzOre": 92, "q.inkSac": 2, "p.writtenBook": 3, "m.furnace": 5, "q.granite": 37, "tc.sneak": 0, "c.spruceDoor": 3, "c.stoneSword": 1, "m.grassBlock": 117, "p.brewingStand": 3, "u.bread": 31, "cu.interactWithSmoker": 1, "p.flint": 7, "c.cookedChicken": 14, "p.ironHelmet": 2, "p.book": 57, "m.azalea": 6, "p.emerald": 3, "u.netherrack": 103, "q.furnace": 1, "p.whiteWool": 64, "m.redstoneWire": 8, "p.rabbit": 2, "p.diamondPickaxe": 1, "k.creeper": 1, "u.dirt": 108, "k.zombie": 147, "p.lilac": 11, "m.beetroots": 58, "m.oakFenceGate": 1, "b.ironLeggings": 4, "q.salmon": 1, "p.strippedJungleLog": 1, "tc.use_stone": 0, "p.potato": 203, "p.oakLog": 242, "p.gunpowder": 9, "c.crimsonPlanks": 4, "u.stoneAxe": 217, "m.cornflower": 48, "c.polishedDeepslate": 200, "p.cookedSalmon": 1, "m.mediumAmethystBud": 1, "g.openBarrel": 159, "q.rottenFlesh": 17, "tc.temp": 250, "m.ironOre": 229, "c.ironHelmet": 5, "p.glowInkSac": 5, "m.darkOakLog": 32, "m.amethystBlock": 11, "u.ironShovel": 677, "u.diamondBlock": 2, "m.lapisOre": 30, "p.azureBluet": 7, "u.oakDoor": 3, "m.tallGrass": 46, "p.acaciaPlanks": 1, "c.bucket": 2, "u.chest": 6, "q.craftingTable": 1, "u.darkOakSapling": 19, "u.netherWart": 88, "g.interactWithAnvil": 1, "c.blueDye": 43, "g.totalWorldTime": 1921088, "p.andesite": 58, "m.warpedFungus": 2, "k.squid": 5, "u.grindstone": 1, "u.crossbow": 54, "m.tripwire": 4, "g.timeSinceDeath": 21888, "u.granite": 34, "p.tuff": 124, "p.cartographyTable": 3, "u.stoneSword": 52, "u.flintAndSteel": 1, "c.whiteDye": 30, "u.lectern": 9, "m.brownMushroom": 9, "u.bucket": 15, "m.darkOakPlanks": 1, "u.mossCarpet": 1, "c.redDye": 95, "m.jungleLog": 3, "cu.walkOnWaterOneCm": 297124, "k.enderman": 1, "q.redstone": 6, "q.ironHelmet": 1, "m.deepslateGoldOre": 124, "c.ironSword": 7, "c.chest": 6, "k.caveSpider": 6, "tc.use_gold": 0, "m.deepslateLapisOre": 33, "cu.sleepInBed": 17, "p.inkSac": 10, "p.gravel": 57, "m.cobblestone": 17, "m.cobweb": 13, "m.goldOre": 20, "u.wheatSeeds": 64, "c.cookedSalmon": 6, "p.goldenPickaxe": 1, "m.grass": 148, "p.granite": 113, "b.ironPickaxe": 14, "cu.fallOneCm": 612643, "m.potatoes": 74, "p.lightGrayWool": 1, "k.rabbit": 1, "q.goldNugget": 12, "m.smoothBasalt": 4, "cu.interactWithBrewingstand": 1, "tc.valid": 0, "u.whiteBed": 2, "c.goldenBoots": 1, "u.cookedMutton": 109, "b.ironBoots": 2, "m.blackstone": 755, "q.ironBoots": 1, "p.leather": 18, "u.warpedFungus": 1, "m.oakStairs": 1, "d.caveSpider": 1, "c.torch": 614, "d.zombie": 13, "m.grindstone": 2, "q.bow": 2, "m.pumpkin": 17, "p.amethystBlock": 11, "q.cookedBeef": 1, "m.strippedDarkOakLog": 1, "m.acaciaPlanks": 1, "m.deepslateIronOre": 159, "c.rawIron": 9, "g.playTime": 1921088, "c.ironPickaxe": 18, "p.warpedFungus": 2, "q.grindstone": 1, "c.cookedRabbit": 1, "cu.interactWithSmithingTable": 4, "u.cartographyTable": 2, "p.strippedDarkOakLog": 1, "p.oakDoor": 1, "cu.climbOneCm": 395993, "p.ironBoots": 1, "u.woodenPickaxe": 7, "k.cow": 16, "k.magmaCube": 4, "d.drowned": 1, "q.darkOakLog": 184, "u.playerHead": 11, "m.birchLeaves": 3, "u.cobbledDeepslate": 141, "u.cookedPorkchop": 23, "u.cookedRabbit": 1, "m.ladder": 3, "g.enchantItem": 8, "m.diamondBlock": 2, "p.stick": 116, "p.dandelion": 136, "p.goldBlock": 2, "m.acaciaLog": 8, "c.stoneAxe": 4, "m.sand": 251, "q.shears": 1, "p.crimsonFungus": 2, "p.redMushroom": 9, "u.salmon": 3, "u.birchPlanks": 9, "p.grass": 12, "g.leaveGame": 34, "m.farmland": 40, "m.craftingTable": 10, "p.sugarCane": 47, "m.crimsonRoots": 1, "p.rottenFlesh": 145, "u.torch": 477, "p.apple": 13, "p.leatherHelmet": 1, "q.gravel": 7, "m.infestedStone": 1, "tc.use_diamond": 0, "k.ghast": 3, "q.oakSapling": 21, "u.oakPlanks": 356, "m.coalOre": 561, "m.rawCopperBlock": 1, "g.drop": 162, "p.rawGold": 144, "cusNetPor": 0, "g.damageBlockedByShield": 4001, "m.mossyCobblestone": 1, "p.calcite": 5, "m.peony": 55, "c.ironShovel": 3, "u.dripstoneBlock": 1, "p.stoneBricks": 2, "m.birchLog": 12, "c.goldIngot": 43, "b.woodenSword": 1, "c.bakedPotato": 84, "d.player": 11, "c.glassPane": 160, "p.glowstoneDust": 108, "c.netherBrick": 6, "cu.talkedToVillager": 7, "q.rawIron": 9, "m.vine": 1, "p.oakTrapdoor": 1, "m.oakLeaves": 32, "c.sprucePlanks": 24, "q.ironShovel": 1, "q.leatherHelmet": 1, "g.interactWithCraftingTable": 128, "p.coal": 559, "m.oxeyeDaisy": 19, "m.deepslate": 1292, "p.quartz": 95, "u.andesite": 10, "m.composter": 1, "q.torch": 1, "p.deepslateBricks": 2, "p.stone": 77, "p.mossCarpet": 11, "p.lapisLazuli": 435, "m.oakFence": 3, "c.ironBoots": 6, "m.wallTorch": 7, "p.redstone": 835, "c.ironChestplate": 5, "c.yellowDye": 136, "q.rawGold": 1, "u.rawCopperBlock": 1, "p.bone": 80, "p.wheat": 63, "m.carrots": 61, "cu.damageBlockedByShield": 4001, "u.diamondPickaxe": 4784, "p.diamondBlock": 2, "q.whiteWool": 1, "b.ironChestplate": 5, "q.calcite": 5, "p.spiderEye": 8, "p.pointedDripstone": 16, "q.playerHead": 1, "p.birchPlanks": 2, "m.fern": 1, "q.andesite": 5, "p.shroomlight": 15, "p.wheatSeeds": 188, "p.craftingTable": 9, "p.cutRedSandstone": 67, "b.diamondPickaxe": 1, "p.orangeTulip": 5, "p.cocoaBeans": 25, "p.ladder": 7, "m.oakDoor": 1, "q.crimsonRoots": 1, "g.bellRing": 5, "p.dripstoneBlock": 8, "p.birchLog": 11, "p.sand": 237, "q.stick": 33, "u.furnace": 9, "cu.crouchOneCm": 35701, "p.darkOakSlab": 9, "cu.horseOneCm": 44759, "u.porkchop": 2, "q.grassBlock": 1, "p.lilyOfTheValley": 30, "m.oakPlanks": 67, "c.whiteBed": 2, "q.brewingStand": 1, "m.mossBlock": 48, "u.rottenFlesh": 19, "p.torch": 35, "q.cookedSalmon": 1, "m.gravel": 77, "q.birchPlanks": 1, "m.redstoneOre": 27, "c.lightGrayDye": 19, "m.snow": 3, "g.talkedToVillager": 7, "q.wheat": 2, "k.drowned": 7, "q.mossCarpet": 5, "m.brewingStand": 2, "m.birchPlanks": 4, "q.string": 17, "g.damageTaken": 49234, "p.mossBlock": 47, "g.interactWithBrewingstand": 1, "b.shears": 1, "TreeCapitator": 0, "p.lectern": 10, "g.interactWithFurnace": 212, "g.interactWithSmoker": 1, "p.cornflower": 43, "p.cobblestone": 2990, "c.ladder": 66, "u.writtenBook": 10, "u.ironSword": 1510, "p.poppy": 31, "q.netherrack": 13, "q.oakPlanks": 32, "p.birchSapling": 2}, "splashmob": {"p.trident": 2, "p.peony": 16, "u.spruceSign": 2, "u.blackConcretePowder": 10, "p.diamondSword": 3, "m.campfire": 12, "p.glass": 2, "p.kelp": 29, "p.stoneAxe": 1, "m.whiteTerracotta": 210, "p.bookshelf": 496, "u.waterBucket": 30, "p.loom": 2, "b.leatherBoots": 1, "m.yellowWool": 3, "q.glisteringMelonSlice": 4, "q.mossBlock": 7, "p.ghastTear": 1, "q.oakLog": 13, "cu.boatOneCm": 10347674, "p.spruceFence": 1, "p.deepslate": 885, "cu.playTime": 6364707, "p.rawCopper": 1372, "m.beeNest": 11, "p.crimsonPlanks": 3, "m.grayTerracotta": 6, "p.grayWool": 102, "m.tallSeagrass": 7, "c.mushroomStew": 1, "p.stoneBrickStairs": 132, "m.clay": 7, "p.purpurPillar": 7, "p.poisonousPotato": 3, "m.spruceLog": 21, "q.filledMap": 5, "u.yellowBed": 19, "q.terracotta": 10, "m.tnt": 1, "m.bamboo": 441, "p.yellowGlazedTerracotta": 16, "p.smoothBasalt": 290, "k.zombieVillager": 5, "cu.interactWithAnvil": 18, "q.oakSign": 1, "u.lapisOre": 20, "u.magentaStainedGlass": 2, "u.craftingTable": 29, "q.tuff": 12, "g.health": 20, "p.salmon": 20, "g.damageDealt": 223287, "u.warpedSign": 1, "c.whiteWool": 2, "m.netherBricks": 5, "q.sandstone": 9, "m.crimsonFungus": 8, "m.cyanShulkerBox": 2, "u.painting": 71, "m.playerHead": 3, "u.lightGrayWool": 2, "m.netherBrickFence": 4, "p.mushroomStew": 2, "u.sandstone": 1, "u.brewingStand": 8, "p.mushroomStem": 45, "q.stonePickaxe": 1, "u.enderPearl": 29, "c.darkOakStairs": 4, "m.melon": 5, "m.blueOrchid": 8, "p.quartzSlab": 4, "u.sugarCane": 14, "p.stoneBrickSlab": 520, "m.emeraldBlock": 1, "p.grayCarpet": 6, "u.poppy": 10, "d.enderman": 1, "m.cocoa": 20, "p.mutton": 77, "p.glassBottle": 13, "c.fishingRod": 1, "c.greenBed": 1, "q.goldenCarrot": 12, "p.musicDisc11": 2, "u.blueTerracotta": 4, "m.redBed": 3, "p.clayBall": 40, "m.rail": 25, "p.shield": 1, "p.honeycomb": 390, "p.chicken": 55, "p.rawIron": 150, "c.whiteCarpet": 18, "m.endStone": 5, "u.trident": 6, "p.shulkerBox": 20, "p.grassBlock": 1, "u.cobblestone": 137, "g.sneakTime": 99297, "p.strippedAcaciaLog": 6, "m.cauldron": 1, "m.azureBluet": 1, "p.dirt": 798, "q.boneMeal": 303, "q.coalOre": 80, "q.saddle": 2, "g.air": 300, "b.ironShovel": 1, "m.snowBlock": 46, "p.netherBrickFence": 4, "u.stoneButton": 2, "q.grayWool": 16, "c.lantern": 8, "p.crimsonStem": 141, "u.pumpkin": 32, "m.bigDripleaf": 1, "tc.use_netherite": 0, "m.redMushroom": 4, "k.spider": 88, "p.mossyCobblestone": 4, "b.ironAxe": 1, "p.greenCandle": 4, "u.darkOakFenceGate": 1, "m.brownMushroomBlock": 47, "u.diamondSword": 2769, "p.slimeBall": 4, "p.yellowConcrete": 36, "p.honeyBlock": 2, "p.redstoneOre": 5, "p.goldNugget": 132, "m.sugarCane": 33, "p.deepslateGoldOre": 111, "c.rawCopperBlock": 148, "p.magmaBlock": 7, "u.darkOakStairs": 1, "m.sandstone": 37, "p.cryingObsidian": 9, "p.redCandle": 3, "u.bakedPotato": 167, "p.sunflower": 4, "c.blackDye": 2, "p.barrel": 1, "m.blueTerracotta": 155, "c.woodenSword": 10, "p.diamondBoots": 1, "m.stoneBricks": 804, "q.spruceSapling": 2, "c.glowstone": 1, "m.pointedDripstone": 23, "p.beef": 50, "p.roseBush": 24, "m.enderChest": 6, "q.goldBlock": 1, "u.crimsonPlanks": 3, "u.stonePickaxe": 131, "m.infestedDeepslate": 3, "m.stoneBrickStairs": 4, "q.ironAxe": 2, "k.salmon": 4, "p.redTerracotta": 270, "g.interactWithCartographyTable": 8, "p.ancientDebris": 44, "m.tuff": 133, "p.bricks": 16, "u.spruceLog": 26, "c.shears": 2, "p.endStone": 8, "p.blueDye": 2, "g.timeSinceRest": 5572, "q.ancientDebris": 13, "q.scaffolding": 111, "m.powderSnow": 49, "q.jackOLantern": 32, "p.oxeyeDaisy": 1, "p.jungleLog": 146, "g.mobKills": 2187, "p.dragonHead": 1, "m.glowstone": 60, "q.ironIngot": 31, "u.diorite": 75, "u.stoneBrickStairs": 73, "m.bookshelf": 497, "p.enderPearl": 168, "m.chippedAnvil": 1, "m.kelpPlant": 3, "c.polishedDeepslateStairs": 6, "p.pinkWool": 41, "m.dripstoneBlock": 64, "cu.interactWithCartographyTable": 8, "p.diamond": 23, "q.daylightDetector": 2, "p.crackedStoneBricks": 356, "g.interactWithStonecutter": 7, "q.cocoaBeans": 3, "p.yellowDye": 2, "m.infestedStoneBricks": 82, "m.oakLog": 13, "tc.use_iron": 0, "p.whiteBed": 4, "p.chest": 17, "tc.use_wood": 0, "p.furnace": 4, "c.diamondHelmet": 1, "u.goldenBoots": 1, "p.pufferfish": 11, "u.gravel": 90, "k.slime": 5, "b.stonePickaxe": 1, "c.brick": 6, "c.anvil": 1, "p.blackGlazedTerracotta": 1, "c.oakPlanks": 52, "u.whiteBanner": 12, "c.beehive": 1, "c.ironHoe": 1, "c.cake": 1, "p.painting": 66, "b.shield": 1, "p.coarseDirt": 94, "u.oakFence": 5, "c.redstoneLamp": 4, "m.birchStairs": 10, "c.shield": 5, "m.sandstoneSlab": 1, "u.ironHoe": 91, "p.playerHead": 20, "p.polishedGranite": 1, "u.cookedChicken": 131, "c.furnace": 6, "u.redNetherBricks": 3, "g.interactWithGrindstone": 6, "p.rabbitHide": 5, "d.blaze": 1, "u.brownMushroom": 1, "q.dirt": 8, "m.beehive": 1, "c.darkOakPlanks": 96, "u.diamondShovel": 4400, "p.pinkTulip": 12, "u.blueOrchid": 3, "c.painting": 7, "p.emeraldBlock": 9, "c.darkOakFenceGate": 1, "p.ironBars": 10, "q.spiderEye": 12, "p.snowball": 201, "m.fire": 14, "p.coalOre": 463, "p.crimsonRoots": 23, "p.blueTerracotta": 157, "rc_display": 0, "g.openChest": 1557, "p.deepslateIronOre": 185, "k.skeleton": 450, "m.cobbledDeepslate": 29, "p.magmaCream": 24, "m.oakTrapdoor": 3, "p.jungleSapling": 16, "u.tuff": 91, "m.dandelion": 11, "u.yellowWool": 82, "m.strippedAcaciaLog": 6, "m.stoneStairs": 3, "p.egg": 44, "c.leather": 26, "q.lilac": 1, "m.deadBush": 9, "u.yellowTerracotta": 53, "p.tnt": 4, "p.elytra": 7, "g.interactWithSmithingTable": 10, "u.glassBottle": 186, "k.pig": 14, "m.shulkerBox": 20, "c.redWool": 6, "c.diamondPickaxe": 8, "u.endStone": 4, "p.netherBricks": 5, "p.blackstone": 674, "q.deepslateLapisOre": 1, "p.grayTerracotta": 7, "p.bigDripleaf": 2, "q.dripstoneBlock": 26, "c.compass": 15, "p.bamboo": 4729, "m.sunflower": 5, "u.quartzSlab": 4, "q.bread": 15, "q.inkSac": 1, "u.redBed": 5, "p.cyanShulkerBox": 2, "u.cake": 1, "c.air": 0, "q.ironBlock": 3, "p.potion": 7, "q.yellowBed": 1, "q.granite": 108, "u.bow": 517, "k.shulker": 111, "p.leatherBoots": 1, "p.diamondHelmet": 1, "c.stoneSword": 1, "q.diamondShovel": 1, "q.goldIngot": 26, "q.copperIngot": 2, "u.obsidian": 44, "m.grassBlock": 367, "p.brewingStand": 2, "p.whiteTulip": 1, "cu.interactWithSmoker": 57, "q.obsidian": 19, "p.oakFence": 70, "c.cookedChicken": 6, "q.deepslate": 132, "m.redstoneWire": 3, "q.diamondChestplate": 2, "p.diamondPickaxe": 2, "p.rabbit": 6, "p.smoothStone": 1, "m.lightGrayTerracotta": 192, "k.zombie": 305, "u.brownConcrete": 79, "g.potFlowers": 2, "u.lantern": 35, "g.openShulkerBox": 108, "u.pinkTulip": 3, "u.enderChest": 2, "p.oakLog": 72, "p.gunpowder": 78, "m.lightGrayCarpet": 14, "m.whiteWallBanner": 6, "m.whiteTulip": 1, "m.terracotta": 255, "q.rottenFlesh": 36, "c.darkOakFence": 39, "m.polishedDeepslateStairs": 20, "tc.temp": 1561, "m.ironOre": 457, "p.seaLantern": 1, "c.ironHelmet": 2, "m.yellowGlazedTerracotta": 16, "m.amethystBlock": 187, "p.copperIngot": 4, "u.ironShovel": 489, "m.ironBlock": 1, "p.azureBluet": 1, "q.quartz": 3, "u.birchStairs": 13, "m.birchTrapdoor": 3, "u.milkBucket": 4, "q.mushroomStew": 1, "u.book": 1, "p.pinkBed": 2, "u.cookie": 6, "g.interactWithAnvil": 18, "g.totalWorldTime": 6364707, "m.warpedFungus": 12, "p.goldenHelmet": 1, "u.grindstone": 1, "cu.potFlower": 2, "c.flowerPot": 4, "q.flint": 31, "m.cyanTerracotta": 22, "g.timeSinceDeath": 1396857, "p.hayBlock": 14, "g.fishCaught": 64, "q.blackstone": 159, "u.blackstone": 74, "u.lectern": 106, "m.cutSandstone": 23, "m.brownMushroom": 3, "u.lightBlueWool": 2, "c.campfire": 26, "q.yellowConcrete": 34, "c.redDye": 4, "m.jungleLog": 22, "k.enderman": 360, "cu.walkOnWaterOneCm": 262286, "q.map": 7, "u.whiteTerracotta": 3, "k.caveSpider": 61, "p.netheriteSword": 1, "p.diamondAxe": 3, "m.deepslateLapisOre": 9, "p.inkSac": 1, "u.stoneBrickSlab": 262, "q.netherQuartzOre": 1, "m.goldOre": 15, "p.cutSandstone": 28, "q.smoothBasalt": 18, "p.granite": 138, "g.playRecord": 1, "b.ironPickaxe": 1, "cu.fallOneCm": 1183103, "c.warpedSign": 3, "p.bread": 8, "m.potatoes": 62, "u.pumpkinPie": 1, "q.goldNugget": 5, "cu.interactWithBrewingstand": 7, "m.ancientDebris": 44, "tc.valid": 0, "p.redBed": 3, "c.goldenBoots": 5, "u.cookedMutton": 153, "u.smoothBasalt": 3, "p.purpurBlock": 67, "m.birchFence": 1, "q.lapisOre": 21, "c.torch": 2036, "p.cactus": 2, "u.beehive": 2, "m.stickyPiston": 9, "p.redStainedGlassPane": 1, "m.scaffolding": 32, "p.allium": 37, "m.jungleLeaves": 17, "m.pumpkin": 11, "u.map": 26, "u.junglePlanks": 12, "q.sand": 60, "m.deepslateIronOre": 274, "c.ironPickaxe": 3, "m.spruceLeaves": 20, "p.warpedFungus": 11, "q.bowl": 1, "p.weepingVines": 25, "p.mossyStoneBrickSlab": 1, "cu.interactWithSmithingTable": 10, "u.egg": 38, "q.sugarCane": 10, "u.lightGrayCarpet": 13, "q.enderPearl": 16, "p.chippedAnvil": 1, "cu.interactWithBlastFurnace": 33, "cu.climbOneCm": 339318, "p.glowLichen": 9, "u.ironOre": 2, "k.magmaCube": 350, "k.bat": 8, "u.cookedPorkchop": 11, "g.enchantItem": 14, "q.poisonousPotato": 6, "p.purpleCandle": 1, "p.spruceSlab": 4, "m.smoker": 2, "p.brownMushroomBlock": 47, "p.stick": 536, "m.whiteWool": 4, "c.netheriteLeggings": 1, "p.goldBlock": 13, "q.ironOre": 191, "m.acaciaLog": 4, "u.whiteCarpet": 16, "u.fireworkRocket": 270, "p.crimsonFungus": 9, "m.yellowTerracotta": 205, "k.husk": 1, "q.elytra": 6, "p.birchTrapdoor": 3, "q.cornflower": 1, "q.brownShulkerBox": 1, "m.farmland": 1, "m.glass": 2, "q.fishingRod": 2, "m.crimsonRoots": 2, "p.rottenFlesh": 444, "p.apple": 29, "tc.use_diamond": 0, "c.pumpkinPie": 1, "q.oakSapling": 7, "m.obsidian": 48, "u.mushroomStew": 3, "q.diamondAxe": 2, "u.flowerPot": 2, "m.spruceFence": 1, "cusNetPor": 0, "m.mossyCobblestone": 8, "g.damageBlockedByShield": 10725, "p.brownTerracotta": 6, "p.calcite": 249, "m.ironBars": 10, "cu.interactWithLoom": 5, "p.suspiciousStew": 2, "q.acaciaSapling": 4, "u.ironBlock": 6, "q.rawIron": 5, "q.nameTag": 2, "m.vine": 18, "q.goldenHelmet": 3, "u.brownTerracotta": 74, "u.barrel": 3, "p.spruceStairs": 9, "c.candle": 10, "q.egg": 1, "g.interactWithCraftingTable": 225, "p.coal": 111, "m.oxeyeDaisy": 1, "p.whiteBanner": 10, "m.brownConcrete": 15, "g.interactWithLoom": 5, "q.torch": 103, "p.enderChest": 6, "m.warpedStem": 51, "p.mossCarpet": 1, "u.oakSapling": 4, "p.lapisLazuli": 277, "m.oakFence": 55, "c.ironBoots": 1, "m.wallTorch": 45, "c.grayDye": 4, "u.endRod": 1, "p.chain": 1, "p.crimsonNylium": 2, "p.fireworkRocket": 128, "p.bone": 449, "u.redTerracotta": 2, "u.diamondPickaxe": 30449, "p.redstoneLamp": 1, "k.piglin": 5, "q.mutton": 2, "b.ironChestplate": 2, "p.mossyStoneBricks": 524, "m.quartzSlab": 4, "q.calcite": 12, "p.spiderEye": 53, "q.playerHead": 5, "p.birchPlanks": 4, "p.sandstone": 24, "p.stoneStairs": 2, "q.pumpkin": 29, "p.wheatSeeds": 93, "u.suspiciousStew": 9, "b.diamondPickaxe": 2, "p.purpleStainedGlassPane": 1, "q.brownTerracotta": 64, "p.cocoaBeans": 41, "p.ladder": 670, "m.redTerracotta": 269, "p.cauldron": 10, "p.endStoneBricks": 22, "p.netherQuartzOre": 1, "u.greenBed": 1, "u.daylightDetector": 2, "m.spruceStairs": 10, "p.birchLog": 67, "m.mossyStoneBrickSlab": 3, "c.birchFence": 21, "q.lead": 2, "m.blastFurnace": 7, "u.furnace": 12, "cu.crouchOneCm": 231889, "p.warpedStem": 67, "p.darkOakSlab": 7, "cu.horseOneCm": 229800, "p.stonePickaxe": 1, "p.lilyOfTheValley": 9, "m.oakPlanks": 909, "c.whiteBed": 1, "u.jukebox": 1, "u.rottenFlesh": 33, "q.magmaCream": 47, "m.redstoneOre": 6, "c.lightGrayDye": 2, "m.snow": 29, "p.diamondChestplate": 4, "u.yellowConcrete": 38, "q.birchBoat": 1, "q.wheat": 4, "c.sugar": 5, "k.drowned": 23, "m.endRod": 1, "p.redNetherBricks": 3, "m.birchPlanks": 4, "u.polishedDeepslateStairs": 20, "q.string": 40, "g.interactWithBrewingstand": 7, "u.darkOakSlab": 25, "q.netherGoldOre": 7, "p.woodenHoe": 4, "p.birchBoat": 7, "TreeCapitator": 0, "u.birchSlab": 5, "g.interactWithSmoker": 57, "p.cornflower": 1, "p.cobblestone": 656, "q.blazeRod": 18, "p.poppy": 25, "u.fishingRod": 73, "u.sand": 60, "q.netherrack": 7827, "p.birchSapling": 29, "p.lapisOre": 41, "m.purpurStairs": 1, "p.junglePlanks": 8, "cu.interactWithStonecutter": 7, "u.purpurBlock": 8, "m.granite": 139, "b.ironHelmet": 2, "m.spruceSlab": 3, "m.diorite": 140, "u.honeyBlock": 3, "q.wheatSeeds": 13, "m.calcite": 251, "m.birchSlab": 5, "p.packedIce": 98, "p.diorite": 134, "duraPing": 0, "q.deepslateDiamondOre": 18, "p.beeNest": 11, "u.apple": 22, "u.stone": 706, "p.orangeTerracotta": 202, "u.woodenSword": 337, "m.emeraldOre": 1, "m.junglePlanks": 8, "p.waterBucket": 2, "m.copperOre": 278, "m.torch": 83, "c.whiteBanner": 9, "c.honeyBlock": 2, "u.glowstone": 5, "m.barrel": 1, "q.potato": 8, "p.netheriteIngot": 4, "m.wheat": 11, "u.redstoneLamp": 5, "u.diamondAxe": 2295, "q.gunpowder": 35, "u.boneMeal": 100, "p.lightGrayTerracotta": 192, "c.bowl": 8, "q.cutSandstone": 26, "cu.flyOneCm": 11171630, "m.poppy": 24, "m.crimsonPlanks": 3, "m.mossyStoneBricks": 540, "m.chest": 16, "p.netherWartBlock": 4, "q.bone": 63, "k.glowSquid": 2, "p.smoker": 2, "q.rawCopper": 40, "m.bricks": 16, "p.yellowBed": 24, "g.inspectHopper": 7, "p.carrot": 9, "u.cyanShulkerBox": 2, "p.saddle": 1, "u.birchTrapdoor": 6, "q.carvedPumpkin": 3, "q.redSand": 2, "p.redWool": 9, "u.crackedStoneBricks": 1, "u.netherBricks": 5, "u.oakSign": 2, "tc.damage": 767, "g.animalsBred": 39, "q.beef": 3, "c.birchPlanks": 60, "u.smoker": 7, "p.smoothQuartzSlab": 1, "c.leatherBoots": 1, "m.andesite": 131, "p.porkchop": 56, "p.lilyPad": 1, "m.purpurSlab": 7, "u.ladder": 80, "p.darkOakSapling": 3, "c.cookedBeef": 38, "q.snowball": 101, "c.greenCarpet": 1, "m.dragonWallHead": 1, "m.whiteBed": 4, "g.armor": 0, "p.cod": 36, "c.glass": 20, "q.poppy": 19, "b.stoneAxe": 2, "p.redMushroomBlock": 47, "m.dirtPath": 25, "g.sleepInBed": 152, "g.jump": 65023, "p.brownMushroom": 9, "u.birchBoat": 6, "u.dandelion": 8, "p.acaciaLog": 33, "g.deathCount": 17, "u.basalt": 71, "b.ironSword": 1, "p.filledMap": 45, "p.beetrootSeeds": 7, "q.stickyPiston": 9, "p.oakPlanks": 868, "u.potato": 96, "p.charcoal": 160, "m.smoothQuartzSlab": 1, "p.spruceSapling": 36, "u.goldBlock": 8, "q.goldenBoots": 1, "c.cookie": 24, "c.smoothQuartzSlab": 36, "p.stoneButton": 1, "q.charcoal": 1, "p.deepslateDiamondOre": 88, "g.playMinutes": 5303, "u.oakBoat": 4, "u.amethystBlock": 3, "m.cryingObsidian": 7, "q.lantern": 9, "q.whiteShulkerBox": 2, "c.stick": 444, "u.darkOakFence": 45, "u.elytra": 1, "q.ironPickaxe": 1, "c.junglePlanks": 64, "p.magentaStainedGlassPane": 3, "p.lightBlueStainedGlassPane": 2, "c.honeycombBlock": 12, "u.scaffolding": 194, "p.acaciaSapling": 10, "k.sheep": 3, "q.azureBluet": 1, "m.packedIce": 43, "g.hunger": 20, "c.craftingTable": 3, "m.deepslateCopperOre": 1, "m.endStoneBricks": 22, "c.whiteShulkerBox": 2, "cu.swimOneCm": 921343, "m.stone": 1742, "p.minecart": 4, "p.whiteDye": 2, "c.birchTrapdoor": 36, "p.ironIngot": 5, "p.scaffolding": 260, "p.obsidian": 53, "m.chain": 1, "cu.walkUnderWaterOneCm": 605829, "g.level": 40, "m.cobblestoneWall": 1, "p.spruceLog": 184, "m.netherGoldOre": 28, "rc_help": 0, "p.blazeRod": 21, "u.snowball": 40, "cu.interactWithGrindstone": 6, "p.rail": 25, "m.redNetherBricks": 3, "q.basalt": 821, "c.diamondSword": 1, "m.goldBlock": 4, "c.warpedPlanks": 8, "u.greenCarpet": 4, "m.redSand": 2, "u.stoneHoe": 124, "q.diorite": 24, "m.basalt": 2729, "p.netherrack": 14699, "m.deepslateDiamondOre": 109, "p.basalt": 1868, "m.buddingAmethyst": 4, "u.emeraldBlock": 7, "p.birchFence": 1, "q.melonSlice": 52, "q.arrow": 40, "u.carrot": 2, "c.greenWool": 3, "q.paper": 51, "p.endRod": 1, "q.oakFence": 5, "m.crimsonStem": 113, "q.pufferfish": 8, "m.spawner": 17, "color": 0, "q.kelp": 4, "u.ironPickaxe": 426, "p.cobbledDeepslateStairs": 1, "m.magentaStainedGlass": 5, "p.deepslateLapisOre": 1, "q.goldenApple": 5, "q.diamond": 6, "k.chicken": 6, "p.bow": 40, "m.lilyOfTheValley": 9, "m.yellowBed": 22, "cu.interactWithCraftingTable": 225, "p.oakSapling": 83, "p.lantern": 5, "q.honeyBottle": 15, "c.darkOakSlab": 24, "u.shears": 163, "q.stone": 224, "q.deepslateGoldOre": 15, "q.netheriteChestplate": 1, "p.bucket": 1, "p.feather": 38, "c.paper": 96, "u.ironAxe": 132, "q.mossyCobblestone": 2, "m.weepingVinesPlant": 2, "k.bee": 2, "c.ironIngot": 83, "c.ironNugget": 72, "p.leatherLeggings": 1, "p.prismarineCrystals": 3, "p.arrow": 396, "m.dirt": 401, "k.witherSkeleton": 46, "p.melonSlice": 20, "q.beetrootSeeds": 1, "p.cobbledDeepslate": 631, "p.goldOre": 14, "g.play": 5303, "u.roseBush": 22, "p.pumpkin": 9, "m.netherrack": 15563, "q.emerald": 8, "p.deadBush": 1, "p.darkOakFence": 7, "q.apple": 12, "b.goldenBoots": 4, "c.copperIngot": 128, "p.ironAxe": 2, "u.cactus": 2, "g.inspectDispenser": 3, "cu.sprintOneCm": 12816545, "m.netherWartBlock": 6, "m.smallDripleaf": 1, "p.mycelium": 32, "c.cookedMutton": 8, "u.peony": 24, "m.honeyBlock": 2, "c.barrel": 1, "c.ironLeggings": 2, "m.redstoneLamp": 1, "u.cookedBeef": 197, "m.cobbledDeepslateStairs": 1, "cu.walkOneCm": 27271550, "m.mushroomStem": 46, "u.whiteWool": 4, "m.sculkSensor": 13, "p.purpurSlab": 4, "p.oakLeaves": 7, "p.carvedPumpkin": 35, "c.ironAxe": 3, "q.cryingObsidian": 4, "c.redBed": 2, "q.deepslateIronOre": 51, "u.cryingObsidian": 2, "c.diamondLeggings": 1, "u.pointedDripstone": 1, "q.cobblestone": 150, "p.limeCarpet": 25, "p.birchStairs": 10, "m.lilac": 9, "p.cookedBeef": 9, "c.jackOLantern": 32, "g.openEnderchest": 48, "cu.interactWithFurnace": 153, "m.glowLichen": 2, "u.beeNest": 11, "tc.disabled": 0, "q.redstoneOre": 5, "p.string": 246, "m.magmaBlock": 7, "p.yellowWool": 3, "u.deepslate": 545, "q.crackedStoneBricks": 1, "p.enchantedBook": 2, "m.lectern": 104, "m.darkOakSlab": 7, "m.deepslateRedstoneOre": 82, "p.rabbitFoot": 2, "u.shield": 345, "u.honeyBottle": 2, "m.mycelium": 32, "c.boneMeal": 75, "m.roseBush": 24, "q.bamboo": 171, "p.sweetBerries": 5, "m.netherQuartzOre": 147, "c.brownShulkerBox": 1, "p.glowstone": 52, "u.bookshelf": 146, "p.smithingTable": 1, "m.furnace": 15, "m.smoothStoneSlab": 1, "p.brownCandle": 2, "p.blastFurnace": 1, "tc.sneak": 0, "p.cobblestoneWall": 2, "q.ladder": 480, "p.flint": 316, "c.daylightDetector": 4, "m.warpedWartBlock": 10, "c.map": 15, "p.clay": 1, "q.birchTrapdoor": 32, "u.netherrack": 1227, "p.emerald": 3, "p.whiteWool": 123, "p.witherSkeletonSkull": 3, "cu.aviateOneCm": 12108324, "k.creeper": 83, "p.terracotta": 266, "u.dirt": 269, "q.diamondSword": 4, "p.lilac": 8, "p.orangeDye": 1, "q.whiteTulip": 1, "u.tnt": 2, "b.ironLeggings": 1, "p.whiteTerracotta": 207, "q.salmon": 18, "tc.use_stone": 0, "p.potato": 236, "c.crimsonPlanks": 4, "q.birchLog": 5, "p.brownConcrete": 15, "u.stoneAxe": 107, "m.cornflower": 1, "p.oakSign": 1, "k.pillager": 10, "p.polishedDeepslateStairs": 20, "p.cyanTerracotta": 22, "g.openBarrel": 1133, "m.redMushroomBlock": 47, "u.coalOre": 39, "p.brick": 36, "q.bucket": 1, "p.copperOre": 76, "q.goldOre": 2, "m.largeFern": 5, "p.glowInkSac": 36, "p.shulkerShell": 117, "p.oakBoat": 5, "u.copperOre": 192, "m.lapisOre": 41, "u.limeCarpet": 11, "p.pumpkinSeeds": 128, "q.ironNugget": 20, "u.birchFence": 3, "u.darkOakPlanks": 43, "c.netheriteHelmet": 1, "m.tallGrass": 87, "q.emeraldBlock": 2, "u.sandstoneSlab": 1, "c.bucket": 5, "u.chest": 1, "p.andesite": 106, "u.netheriteSword": 568, "p.purpurStairs": 1, "u.crossbow": 2, "p.fishingRod": 2, "m.tripwire": 6, "p.stickyPiston": 15, "u.granite": 8, "p.tuff": 123, "c.diamondShovel": 1, "q.copperOre": 8, "u.stoneSword": 120, "u.flintAndSteel": 23, "q.cookie": 3, "d.witherSkeleton": 1, "u.bucket": 33, "u.mossCarpet": 1, "c.spruceStairs": 40, "p.lead": 43, "u.potion": 7, "m.loom": 2, "q.redstone": 36, "m.deepslateGoldOre": 120, "c.ironSword": 1, "p.musicDiscFar": 1, "c.chest": 1, "q.redMushroom": 3, "tc.use_gold": 0, "u.honeycombBlock": 12, "u.smoothQuartzSlab": 33, "cu.sleepInBed": 152, "p.gravel": 1255, "m.cobblestone": 277, "q.cobbledDeepslate": 59, "m.cobweb": 202, "q.pointedDripstone": 16, "u.spruceSapling": 10, "u.wheatSeeds": 14, "m.lantern": 5, "m.grass": 323, "p.musicDiscCat": 2, "u.sweetBerries": 5, "p.lightGrayWool": 46, "k.rabbit": 2, "b.leatherLeggings": 1, "m.smoothBasalt": 284, "u.whiteBed": 5, "p.enderEye": 1, "p.brickStairs": 1, "m.carvedPumpkin": 32, "b.ironBoots": 1, "m.blackstone": 828, "p.leather": 18, "m.orangeTerracotta": 202, "p.magentaStainedGlass": 5, "p.birchSlab": 5, "p.musicDiscBlocks": 3, "u.itemFrame": 59, "m.purpurBlock": 78, "d.zombie": 3, "q.dragonEgg": 1, "u.anvil": 1, "q.bow": 12, "p.amethystBlock": 193, "m.sprucePlanks": 41, "p.beehive": 1, "p.lightGrayCarpet": 14, "p.warpedWartBlock": 13, "g.playTime": 6364707, "c.netheriteChestplate": 1, "p.pinkStainedGlassPane": 3, "q.slimeBall": 1, "u.campfire": 38, "m.coarseDirt": 97, "u.spruceSlab": 40, "k.cow": 9, "p.blueIce": 14, "d.drowned": 2, "u.playerHead": 4, "u.shulkerBox": 23, "m.birchLeaves": 5, "u.cobbledDeepslate": 787, "u.minecart": 5, "q.glowBerries": 6, "p.spyglass": 1, "p.dandelion": 10, "p.ironOre": 388, "c.diamondChestplate": 1, "c.stoneAxe": 1, "m.waterCauldron": 1, "m.sand": 2417, "q.rail": 8, "u.lilyOfTheValley": 9, "p.redMushroom": 6, "u.birchPlanks": 4, "m.cactus": 1, "g.leaveGame": 54, "q.birchSapling": 4, "p.grayShulkerBox": 1, "m.craftingTable": 29, "p.sugarCane": 94, "q.greenCandle": 1, "u.torch": 2555, "g.eatCakeSlice": 4, "q.gravel": 368, "q.enchantedBook": 3, "k.ghast": 6, "u.oakPlanks": 131, "m.coalOre": 555, "p.musicDiscOtherside": 2, "p.itemFrame": 29, "p.campfire": 12, "g.drop": 666, "p.rawGold": 6, "m.shroomlight": 32, "u.magmaBlock": 1, "p.stoneHoe": 1, "p.greenCarpet": 4, "q.glowInkSac": 3, "m.peony": 10, "m.greenCarpet": 4, "c.ironShovel": 2, "u.dripstoneBlock": 19, "p.yellowTerracotta": 197, "p.stoneBricks": 917, "m.birchLog": 15, "q.spruceTrapdoor": 14, "b.woodenSword": 9, "c.bakedPotato": 24, "d.player": 2, "b.stoneSword": 1, "p.sprucePlanks": 40, "u.sprucePlanks": 44, "m.smithingTable": 1, "p.blueOrchid": 8, "q.oakLeaves": 1, "cu.talkedToVillager": 150, "u.sunflower": 4, "m.darkOakFence": 7, "p.oakTrapdoor": 3, "cu.minecartOneCm": 279571, "c.bow": 1, "m.oakLeaves": 146, "m.podzol": 22, "c.sprucePlanks": 132, "q.ironShovel": 1, "u.blackstoneWall": 10, "q.jungleSapling": 16, "m.deepslate": 1603, "p.quartz": 141, "u.andesite": 53, "m.soulSand": 1, "c.smoker": 3, "m.sweetBerryBush": 2, "p.stone": 1448, "u.lilac": 7, "q.suspiciousStew": 1, "u.spruceStairs": 37, "q.goldenHoe": 1, "q.flintAndSteel": 1, "p.dragonEgg": 2, "m.purpurPillar": 7, "q.diamondPickaxe": 3, "p.redstone": 462, "c.ironChestplate": 2, "m.polishedGranite": 1, "q.lightGrayWool": 6, "u.musicDiscOtherside": 1, "p.wheat": 18, "m.carrots": 3, "cu.damageBlockedByShield": 10725, "q.grayShulkerBox": 1, "p.lightBlueDye": 1, "q.whiteWool": 70, "q.amethystBlock": 6, "m.pinkTulip": 12, "p.pointedDripstone": 62, "m.fern": 38, "q.trident": 1, "q.andesite": 36, "p.shroomlight": 32, "p.craftingTable": 30, "p.netherGoldOre": 7, "cu.killedByDarkPurpleTeam": 2, "p.redSand": 2, "u.spyglass": 13, "m.blackGlazedTerracotta": 1, "q.coal": 4, "p.sand": 2286, "p.dripstoneBlock": 55, "c.spruceSlab": 42, "q.stick": 19, "u.chain": 5, "q.porkchop": 3, "c.brewingStand": 8, "m.allium": 19, "q.musicDiscBlocks": 2, "q.brewingStand": 1, "u.cobbledDeepslateStairs": 1, "u.grassBlock": 53, "q.musicDiscFar": 1, "p.ironBlock": 9, "p.torch": 506, "k.blaze": 44, "m.stoneBrickSlab": 33, "m.seagrass": 14, "m.gravel": 1746, "g.talkedToVillager": 150, "p.crossbow": 2, "m.brewingStand": 1, "c.netheriteBoots": 1, "c.charcoal": 140, "p.smoothStoneSlab": 6, "g.interactWithBlastFurnace": 33, "u.deepslateRedstoneOre": 64, "m.brownTerracotta": 17, "g.damageTaken": 31041, "m.yellowConcrete": 2, "u.acaciaLog": 6, "p.sandstoneSlab": 1, "m.crackedStoneBricks": 339, "p.lectern": 104, "m.seaLantern": 2, "g.interactWithFurnace": 153, "c.glassBottle": 9, "p.diamondLeggings": 1, "q.cod": 31, "u.ironSword": 260, "p.ironShovel": 1, "q.oakPlanks": 184, "p.phantomMembrane": 1}, "leggory": {"tc.sneak": 0, "c.stoneSword": 1, "m.diorite": 1, "c.stoneShovel": 8, "m.grassBlock": 223, "cu.interactWithSmoker": 1, "d.spider": 1, "p.diorite": 1, "p.rawCopper": 34, "cu.playTime": 257940, "duraPing": 0, "p.grayWool": 2, "p.whiteWool": 14, "d.creeper": 1, "p.smoothStone": 2, "u.dirt": 143, "k.zombie": 5, "m.hayBlock": 17, "m.beetroots": 5, "u.woodenSword": 44, "u.melonSlice": 1, "tc.use_stone": 0, "p.potato": 73, "p.oakLog": 71, "m.bamboo": 52, "c.woodenPickaxe": 1, "u.stoneAxe": 200, "m.copperOre": 11, "k.zombieVillager": 1, "m.torch": 1, "g.openBarrel": 5, "m.wheat": 1, "u.craftingTable": 6, "tc.temp": 131, "m.ironOre": 9, "g.health": 20, "u.birchSapling": 20, "g.damageDealt": 2377, "cu.flyOneCm": 288231, "m.chest": 2, "m.tallGrass": 5, "p.beetroot": 6, "p.cookedMutton": 19, "m.cobblestoneStairs": 8, "u.chest": 8, "u.cookie": 1, "g.totalWorldTime": 257940, "p.carrot": 26, "u.cobblestoneStairs": 16, "u.cobblestoneSlab": 18, "m.melon": 3, "u.mutton": 1, "g.timeSinceDeath": 318, "p.hayBlock": 34, "tc.damage": 96, "p.mutton": 19, "c.birchPlanks": 180, "u.stoneSword": 47, "c.campfire": 1, "cu.walkOnWaterOneCm": 4166, "m.whiteBed": 3, "p.chicken": 3, "g.armor": 0, "p.cookie": 1, "p.rawIron": 9, "c.chest": 6, "tc.use_gold": 0, "b.stoneAxe": 2, "g.sneakTime": 385, "g.sleepInBed": 9, "cu.sleepInBed": 9, "g.jump": 2128, "p.dirt": 1658, "u.wheatSeeds": 1, "g.air": 300, "g.deathCount": 4, "m.grass": 41, "b.woodenShovel": 1, "q.bakedPotato": 10, "b.woodenPickaxe": 1, "cu.fallOneCm": 58285, "m.potatoes": 9, "p.lightGrayWool": 2, "p.beetrootSeeds": 8, "tc.use_netherite": 0, "p.oakPlanks": 3, "tc.valid": 0, "u.whiteBed": 4, "k.spider": 1, "u.cookedMutton": 5, "u.potato": 9, "c.torch": 20, "d.zombie": 1, "g.playMinutes": 214, "c.woodenShovel": 1, "m.scaffolding": 2, "u.bakedPotato": 17, "c.stick": 16, "m.pumpkin": 2, "u.scaffolding": 7, "k.sheep": 9, "c.craftingTable": 1, "g.hunger": 20, "c.woodenSword": 1, "m.stone": 381, "g.playTime": 257940, "u.campfire": 1, "p.scaffolding": 5, "cu.interactWithBlastFurnace": 1, "cu.walkUnderWaterOneCm": 1206, "u.stonePickaxe": 429, "cu.climbOneCm": 25472, "u.woodenPickaxe": 59, "g.level": 9, "u.playerHead": 1, "rc_help": 0, "c.string": 4, "u.stoneShovel": 915, "p.stick": 131, "m.whiteWool": 2, "c.stoneAxe": 4, "g.timeSinceRest": 338, "u.oakLog": 21, "u.birchPlanks": 186, "g.mobKills": 20, "g.leaveGame": 2, "u.carrot": 6, "m.craftingTable": 6, "u.woodenAxe": 20, "p.rottenFlesh": 21, "u.torch": 26, "p.apple": 4, "color": 0, "tc.use_diamond": 0, "p.cobblestoneStairs": 8, "u.oakPlanks": 112, "m.coalOre": 73, "g.drop": 1, "cusNetPor": 0, "k.chicken": 2, "m.oakLog": 24, "cu.interactWithCraftingTable": 45, "tc.use_iron": 0, "m.birchLog": 25, "p.whiteBed": 3, "p.oakSapling": 43, "b.woodenSword": 1, "p.chest": 2, "tc.use_wood": 0, "p.feather": 5, "cu.talkedToVillager": 4, "u.beetrootSeeds": 8, "c.stonePickaxe": 4, "b.woodenAxe": 1, "m.oakLeaves": 7, "b.stonePickaxe": 3, "c.oakPlanks": 164, "g.interactWithCraftingTable": 45, "p.coal": 115, "p.arrow": 2, "c.woodenAxe": 1, "m.dirt": 743, "p.melonSlice": 17, "g.play": 214, "u.woodenShovel": 64, "u.oakSapling": 17, "m.wallTorch": 9, "p.playerHead": 3, "p.pumpkin": 4, "c.cobblestoneSlab": 18, "c.furnace": 4, "b.stoneShovel": 6, "p.bone": 8, "d.skeleton": 1, "cu.sprintOneCm": 512296, "m.carrots": 4, "p.spiderEye": 1, "cu.walkOneCm": 1080249, "p.birchPlanks": 26, "u.whiteWool": 2, "rc_display": 0, "g.openChest": 136, "p.wheatSeeds": 21, "p.craftingTable": 6, "k.skeleton": 2, "g.bellRing": 2, "p.birchLog": 104, "c.scaffolding": 6, "u.furnace": 4, "cu.crouchOneCm": 125, "u.spiderEye": 1, "c.whiteBed": 1, "m.oakPlanks": 3, "g.interactWithCampfire": 16, "u.rottenFlesh": 5, "p.torch": 12, "cu.interactWithFurnace": 10, "p.bakedPotato": 34, "tc.disabled": 0, "u.jungleSign": 1, "g.talkedToVillager": 4, "p.string": 5, "c.cobblestoneStairs": 8, "m.birchPlanks": 26, "g.interactWithBlastFurnace": 1, "cu.interactWithCampfire": 16, "g.damageTaken": 1829, "TreeCapitator": 0, "g.interactWithFurnace": 10, "g.interactWithSmoker": 1, "p.cobblestone": 827, "p.bamboo": 641, "m.smoothStone": 1, "p.birchSapling": 34}, "Shotoria_": {"p.yellowCarpet": 2, "u.beef": 6, "p.ironLeggings": 2, "p.glass": 7, "u.deepslateIronOre": 52, "u.waterBucket": 36, "u.acaciaPlanks": 4, "u.smoothRedSandstoneStairs": 4, "c.bricks": 1208, "cu.boatOneCm": 2767992, "d.spider": 3, "p.spruceFence": 1, "p.deepslate": 713, "cu.playTime": 2170611, "p.rawCopper": 538, "p.crimsonPlanks": 6, "d.creeper": 5, "m.tallSeagrass": 1, "m.clay": 281, "c.pinkWool": 40, "m.spruceLog": 145, "u.terracotta": 1, "m.bamboo": 7, "u.pinkStainedGlass": 21, "k.zombieVillager": 2, "g.interactWithLectern": 3, "u.darkOakLog": 134, "c.yellowCarpet": 24, "u.craftingTable": 18, "q.tuff": 20, "g.health": 20, "m.cutRedSandstone": 4, "p.salmon": 3, "g.damageDealt": 62903, "u.chiseledStoneBricks": 1, "m.netherBricks": 18, "c.oakDoor": 6, "c.redNetherBrickStairs": 32, "m.playerHead": 7, "u.brewingStand": 1, "u.redSandstone": 2, "c.darkOakStairs": 40, "u.sugarCane": 32, "q.cutRedSandstone": 161, "p.mutton": 76, "p.clayBall": 1124, "m.rail": 1, "u.glassPane": 29, "m.redTulip": 1, "p.chicken": 3, "p.rawIron": 1001, "d.piglin": 2, "m.redNetherBrickStairs": 4, "p.grassBlock": 6, "q.oakTrapdoor": 1, "u.cobblestone": 81, "g.sneakTime": 95951, "m.smallAmethystBud": 1, "m.glassPane": 11, "p.dirt": 945, "m.darkOakStairs": 32, "g.air": 300, "b.ironShovel": 4, "p.crimsonStem": 1, "tc.use_netherite": 0, "p.smoothRedSandstone": 18, "q.lapisLazuli": 36, "k.spider": 27, "c.spruceFence": 18, "c.oakSlab": 12, "b.ironAxe": 5, "u.stonecutter": 2, "p.slimeBall": 5, "m.deepslateBrickSlab": 3, "p.goldNugget": 19, "c.quartzBlock": 185, "m.sugarCane": 15, "p.deepslateGoldOre": 25, "p.magmaBlock": 5, "u.darkOakStairs": 68, "u.bakedPotato": 259, "c.polishedGranite": 1, "c.yellowWool": 16, "c.smoothRedSandstone": 584, "c.darkOakTrapdoor": 28, "p.barrel": 17, "c.woodenSword": 1, "m.stoneBricks": 25, "q.ironLeggings": 1, "p.blackWool": 3, "m.pointedDripstone": 2, "p.beef": 73, "p.roseBush": 1, "g.playerKills": 11, "u.crimsonPlanks": 6, "u.stonePickaxe": 130, "q.ironAxe": 2, "c.polishedBlackstoneBricks": 1, "m.tuff": 175, "u.spruceFence": 19, "u.oakSlab": 8, "p.bricks": 1, "u.spruceLog": 459, "c.shears": 6, "g.timeSinceRest": 35484, "u.oakLog": 24, "u.darkOakTrapdoor": 28, "m.powderSnow": 5, "p.redSandstone": 9, "p.jungleLog": 84, "m.lilyPad": 3, "g.mobKills": 471, "u.copperBlock": 1, "m.glowstone": 88, "u.diorite": 3, "q.dandelion": 1, "m.polishedDeepslate": 1, "p.pinkWool": 1, "m.dripstoneBlock": 69, "p.diamond": 90, "g.interactWithStonecutter": 33, "u.cutRedSandstone": 4, "u.deepslateBricks": 1027, "d.pillager": 2, "m.oakLog": 36, "tc.use_iron": 0, "p.whiteBed": 2, "p.chest": 20, "tc.use_wood": 0, "u.glass": 11, "p.furnace": 15, "c.diamondHelmet": 1, "c.leatherHelmet": 1, "u.gravel": 60, "k.slime": 8, "b.stonePickaxe": 1, "c.brick": 852, "c.oakPlanks": 336, "m.quartzBlock": 1, "p.glassPane": 11, "u.whiteBanner": 2, "cu.interactWithLectern": 3, "q.chiseledNetherBricks": 2, "q.redNetherBricks": 37, "q.netherWart": 2, "m.quartzBricks": 22, "p.playerHead": 34, "p.polishedGranite": 1, "u.cookedChicken": 1, "c.furnace": 12, "u.redNetherBricks": 635, "u.composter": 1, "p.strippedCrimsonStem": 22, "p.soulSand": 102, "q.dirt": 1, "c.darkOakPlanks": 368, "u.diamondShovel": 2752, "q.spiderEye": 2, "p.ironPickaxe": 2, "m.fire": 4, "p.coalOre": 36, "m.netherWart": 1046, "g.openChest": 1008, "p.deepslateBrickSlab": 4, "p.deepslateIronOre": 52, "k.skeleton": 93, "m.cobbledDeepslate": 1, "u.redCarpet": 16, "p.magmaCream": 1, "p.jungleSapling": 7, "u.tuff": 1, "m.dandelion": 7, "p.egg": 5, "m.deadBush": 9, "u.crimsonStem": 18, "u.jungleSign": 2, "k.pig": 4, "c.redWool": 16, "c.diamondPickaxe": 3, "u.darkOakDoor": 1, "p.netherBricks": 14, "p.blackstone": 667, "p.composter": 1, "m.redstoneBlock": 4, "q.dripstoneBlock": 1, "p.bamboo": 63, "c.diamondAxe": 1, "q.bread": 1, "u.soulSand": 102, "c.air": 0, "q.granite": 5, "u.bow": 101, "c.redCarpet": 24, "q.acaciaLog": 1, "c.stoneSword": 1, "c.stoneShovel": 1, "m.grassBlock": 231, "p.brewingStand": 1, "cu.interactWithSmoker": 1, "c.cookedChicken": 1, "p.ironHelmet": 1, "q.deepslate": 7, "k.zombie": 118, "q.stoneSword": 1, "u.chiseledDeepslate": 1, "u.grass": 12, "p.oakLog": 119, "p.gunpowder": 6, "m.crimsonSlab": 7, "p.chiseledStoneBricks": 1, "m.lightGrayCarpet": 8, "c.polishedDeepslate": 12, "m.terracotta": 1, "q.rottenFlesh": 37, "tc.temp": 1561, "m.ironOre": 457, "c.ironHelmet": 4, "m.darkOakLog": 8, "u.ironShovel": 1171, "m.ironBlock": 110, "u.diamondBlock": 9, "p.deepslateBrickStairs": 1, "p.acaciaPlanks": 3, "u.string": 7, "m.yellowCarpet": 2, "c.spruceBoat": 3, "p.pinkBed": 1, "u.netherWart": 1110, "g.totalWorldTime": 2170611, "u.grindstone": 1, "q.flint": 4, "g.timeSinceDeath": 35297, "m.stonePressurePlate": 3, "u.lightBlueWool": 6, "m.darkOakPlanks": 4, "p.darkOakStairs": 32, "m.jungleLog": 1, "c.lightBlueWool": 4, "m.blackWool": 1, "cu.walkOnWaterOneCm": 331820, "u.oakStairs": 30, "k.caveSpider": 7, "p.diamondAxe": 1, "m.deepslateLapisOre": 55, "q.netherQuartzOre": 1, "m.goldOre": 80, "p.granite": 13, "b.ironPickaxe": 20, "cu.fallOneCm": 692288, "m.potatoes": 54, "c.smoothRedSandstoneStairs": 4, "q.goldNugget": 2, "tc.valid": 0, "m.playerWallHead": 13, "b.diamondLeggings": 1, "m.oakStairs": 17, "u.oakPressurePlate": 2, "q.chicken": 2, "c.torch": 188, "q.pinkBed": 1, "p.cactus": 4, "m.grindstone": 1, "q.ironChestplate": 1, "u.crimsonSlab": 90, "u.junglePlanks": 1, "m.deepslateIronOre": 394, "c.ironPickaxe": 19, "m.spruceLeaves": 14, "u.deepslateBrickSlab": 15, "u.egg": 5, "u.lightGrayCarpet": 14, "cu.climbOneCm": 536557, "u.woodenPickaxe": 8, "u.ironOre": 1, "k.magmaCube": 43, "g.enchantItem": 17, "p.spruceSlab": 34, "u.deepslateLapisOre": 9, "p.stick": 608, "p.goldBlock": 13, "m.acaciaLog": 3, "u.goldenApple": 1, "u.polishedDiorite": 1, "p.grass": 18, "m.glass": 7, "u.oakTrapdoor": 1, "p.rottenFlesh": 106, "c.whiteConcretePowder": 128, "p.apple": 8, "tc.use_diamond": 0, "q.oakSapling": 1, "q.diamondAxe": 1, "u.birchLog": 127, "m.spruceFence": 1, "cusNetPor": 0, "c.pinkBed": 2, "m.deepslateBrickStairs": 1, "c.goldIngot": 381, "p.soulSoil": 21, "p.redNetherBrickStairs": 4, "p.glowstoneDust": 110, "m.polishedDiorite": 1, "c.netherBrick": 1456, "c.lightGrayCarpet": 15, "u.ironBlock": 111, "u.barrel": 42, "p.spruceStairs": 2, "g.interactWithCraftingTable": 172, "p.coal": 859, "c.goldBlock": 47, "p.whiteBanner": 2, "q.deepslateBricks": 8, "m.composter": 1, "c.diamondBoots": 1, "m.strippedBirchLog": 27, "c.deepslateTiles": 4, "c.chiseledStoneBricks": 1, "u.oakSapling": 37, "p.lapisLazuli": 681, "c.ironBoots": 4, "m.wallTorch": 74, "u.polishedBlackstoneStairs": 50, "b.stoneShovel": 1, "p.bone": 148, "p.redTulip": 1, "u.diamondPickaxe": 7306, "p.darkOakTrapdoor": 12, "k.piglin": 6, "p.spiderEye": 4, "q.playerHead": 1, "p.birchPlanks": 49, "p.wheatSeeds": 85, "b.diamondPickaxe": 2, "p.ladder": 63, "m.oakDoor": 1, "p.netherQuartzOre": 9, "p.deepslateTiles": 16, "m.spruceStairs": 2, "p.birchLog": 266, "m.blueWool": 1, "u.furnace": 27, "cu.crouchOneCm": 366636, "u.soulSoil": 1, "p.darkOakSlab": 45, "p.chiseledDeepslate": 1, "m.lightBlueWool": 4, "m.oakPlanks": 505, "m.soulSoil": 21, "u.rottenFlesh": 1, "p.stonecutter": 2, "m.redstoneOre": 51, "m.polishedBlackstoneBricks": 329, "q.wheat": 1, "p.redNetherBricks": 208, "m.birchPlanks": 49, "q.string": 4, "u.netherGoldOre": 23, "u.darkOakSlab": 140, "b.shears": 6, "TreeCapitator": 0, "g.interactWithSmoker": 1, "p.cobblestone": 3369, "c.ladder": 117, "u.writtenBook": 1, "c.polishedBlackstoneBrickStairs": 32, "u.sand": 13, "q.netherrack": 256, "p.birchSapling": 76, "p.lightBlueWool": 4, "p.junglePlanks": 19, "cu.interactWithStonecutter": 33, "m.granite": 13, "c.polishedBlackstoneStairs": 4, "b.ironHelmet": 1, "m.spruceSlab": 30, "m.diorite": 14, "q.wheatSeeds": 49, "m.strippedCrimsonStem": 21, "p.chiseledNetherBricks": 2, "u.smoothRedSandstone": 140, "p.diorite": 12, "duraPing": 0, "u.apple": 8, "u.stone": 80, "u.netherQuartzOre": 8, "m.amethystCluster": 4, "p.orangeTerracotta": 2, "u.woodenSword": 43, "m.emeraldOre": 1, "q.feather": 2, "c.woodenPickaxe": 1, "m.copperOre": 122, "m.torch": 105, "u.glowstone": 11, "m.barrel": 17, "q.potato": 13, "p.polishedDiorite": 1, "m.wheat": 16, "u.ironHelmet": 1, "u.deepslateDiamondOre": 12, "u.diamondAxe": 2702, "u.boneMeal": 150, "cu.flyOneCm": 3004647, "u.deepslateTiles": 16, "m.crimsonPlanks": 6, "m.chest": 20, "q.bone": 25, "p.polishedBlackstoneStairs": 11, "p.darkOakLog": 224, "c.oakSign": 3, "q.rawCopper": 1, "m.bricks": 1, "c.quartzBricks": 4, "p.carrot": 23, "p.redWool": 2, "u.netherBricks": 13, "u.oakSign": 1, "u.stoneBricks": 250, "p.grindstone": 1, "tc.damage": 1077, "g.animalsBred": 25, "c.birchPlanks": 168, "m.darkOakTrapdoor": 12, "m.andesite": 46, "p.porkchop": 10, "p.lilyPad": 18, "u.ladder": 142, "p.darkOakSapling": 14, "c.cookedBeef": 52, "m.chiseledStoneBricks": 1, "m.whiteBed": 2, "g.armor": 13, "c.oakPressurePlate": 2, "b.stoneAxe": 1, "u.polishedDeepslate": 1, "c.blueWool": 2, "p.stonePressurePlate": 4, "g.sleepInBed": 49, "g.jump": 25457, "u.dandelion": 8, "p.acaciaLog": 18, "u.whiteConcrete": 10, "g.deathCount": 76, "u.basalt": 5, "q.bakedPotato": 1, "u.blackWool": 2, "p.amethystShard": 16, "p.oakPlanks": 445, "m.deepslateBricks": 343, "m.oakSapling": 12, "u.potato": 59, "p.spruceSapling": 196, "u.goldBlock": 84, "p.polishedBlackstoneBricks": 312, "c.flintAndSteel": 2, "p.deepslateDiamondOre": 24, "g.playMinutes": 1808, "u.oakBoat": 4, "c.stick": 132, "c.junglePlanks": 4, "u.deepslateBrickStairs": 17, "m.strippedSpruceLog": 6, "p.acaciaSapling": 8, "p.strippedSpruceLog": 6, "k.sheep": 50, "g.hunger": 20, "c.craftingTable": 2, "m.deepslateCopperOre": 3, "cu.swimOneCm": 251828, "m.stone": 4376, "q.whiteConcretePowder": 128, "c.redstoneBlock": 194, "p.ironIngot": 81, "c.stone": 512, "cu.walkUnderWaterOneCm": 259660, "g.level": 38, "q.crossbow": 3, "p.spruceLog": 586, "m.netherGoldOre": 30, "c.redSandstone": 641, "p.blazeRod": 2, "u.stoneShovel": 131, "q.woodenSword": 1, "m.largeAmethystBud": 1, "m.redNetherBricks": 176, "q.basalt": 2, "m.goldBlock": 13, "m.redSand": 2665, "q.diorite": 5, "m.basalt": 201, "p.netherrack": 1739, "m.deepslateDiamondOre": 78, "p.basalt": 192, "u.carrot": 22, "m.crimsonStem": 1, "m.spawner": 1, "color": 0, "p.oakStairs": 17, "u.ironPickaxe": 6441, "m.chiseledDeepslate": 1, "p.deepslateLapisOre": 9, "p.darkOakPlanks": 4, "q.diamond": 1, "k.chicken": 2, "p.bow": 8, "c.redNetherBricks": 590, "u.quartzBricks": 22, "cu.interactWithCraftingTable": 172, "p.oakSapling": 46, "u.stonePressurePlate": 4, "c.darkOakSlab": 126, "u.shears": 1419, "q.stone": 25, "u.blueWool": 3, "p.feather": 3, "c.stonePickaxe": 1, "u.ironAxe": 619, "p.strippedBirchLog": 27, "u.netherBrickStairs": 13, "c.ironIngot": 984, "p.oxidizedCopper": 1, "q.orangeTerracotta": 1, "c.copperBlock": 76, "p.arrow": 105, "m.dirt": 819, "k.witherSkeleton": 3, "c.oakBoat": 1, "u.ironChestplate": 1, "c.stoneBricks": 321, "p.cobbledDeepslate": 987, "g.play": 1808, "u.roseBush": 1, "c.writableBook": 1, "m.netherrack": 2265, "u.writableBook": 3, "m.polishedBasalt": 4, "c.copperIngot": 832, "c.bread": 9, "p.ironAxe": 2, "u.cactus": 2, "d.skeleton": 6, "cu.sprintOneCm": 3586523, "m.redWool": 2, "c.barrel": 52, "c.ironLeggings": 3, "u.cookedBeef": 25, "u.ironBoots": 1, "cu.walkOneCm": 8223699, "c.deepslateBricks": 8, "p.netherWart": 2194, "p.redstoneBlock": 4, "u.quartzBlock": 1, "c.darkOakDoor": 3, "c.ironAxe": 6, "c.diamondLeggings": 1, "u.pointedDripstone": 19, "c.oakStairs": 24, "q.cobblestone": 30, "p.deepslateRedstoneOre": 12, "u.jungleLog": 2, "p.spruceBoat": 2, "cu.interactWithFurnace": 602, "p.whiteConcrete": 138, "tc.disabled": 0, "q.sweetBerries": 1, "p.string": 34, "m.magmaBlock": 5, "u.deepslate": 641, "m.darkOakSlab": 45, "m.deepslateRedstoneOre": 139, "u.chiseledNetherBricks": 4, "c.oakTrapdoor": 2, "p.blueWool": 1, "c.lightBlueDye": 4, "c.boneMeal": 150, "m.roseBush": 1, "p.sweetBerries": 3, "m.netherQuartzOre": 475, "p.netherBrickStairs": 11, "p.glowstone": 62, "m.furnace": 15, "tc.sneak": 0, "u.bread": 9, "m.stonecutter": 2, "p.flint": 18, "u.netherrack": 87, "p.emerald": 1, "q.grass": 6, "m.chiseledNetherBricks": 4, "p.whiteWool": 48, "k.creeper": 3, "p.terracotta": 1, "m.whiteConcrete": 10, "u.dirt": 704, "b.ironLeggings": 1, "q.salmon": 3, "tc.use_stone": 0, "p.potato": 162, "c.crimsonPlanks": 268, "u.deepslateGoldOre": 17, "u.stoneAxe": 72, "k.pillager": 14, "m.netherBrickStairs": 13, "m.mediumAmethystBud": 1, "g.openBarrel": 218, "u.coalOre": 32, "p.copperOre": 1, "m.largeFern": 2, "p.glowInkSac": 17, "u.birchSapling": 41, "p.oakBoat": 3, "u.copperOre": 1, "m.lapisOre": 43, "u.strippedBirchLog": 23, "q.strippedCrimsonStem": 1, "u.oakDoor": 3, "m.redSandstone": 9, "u.darkOakPlanks": 5, "m.tallGrass": 16, "c.bucket": 2, "u.chest": 38, "q.craftingTable": 1, "u.darkOakSapling": 2, "p.andesite": 44, "c.acaciaPlanks": 4, "u.crossbow": 2, "c.polishedBlackstone": 1, "m.tripwire": 3, "m.deepslateTiles": 16, "u.granite": 5, "c.stonePressurePlate": 2, "p.tuff": 154, "c.diamondShovel": 1, "u.stoneSword": 58, "u.flintAndSteel": 62, "d.witherSkeleton": 1, "c.crimsonSlab": 126, "u.bucket": 36, "c.spruceStairs": 20, "u.potion": 2, "q.ironHelmet": 2, "m.deepslateGoldOre": 176, "u.strippedCrimsonStem": 4, "m.oakSlab": 4, "c.chest": 38, "tc.use_gold": 0, "m.smoothRedSandstone": 18, "c.polishedDiorite": 1, "cu.sleepInBed": 49, "p.gravel": 230, "m.cobblestone": 79, "q.cobbledDeepslate": 29, "p.polishedBasalt": 4, "u.spruceSapling": 73, "u.wheatSeeds": 33, "m.oxidizedCopper": 1, "u.pinkWool": 13, "m.grass": 72, "u.acaciaSapling": 2, "u.sweetBerries": 2, "p.lightGrayWool": 1, "m.pinkWool": 1, "q.woodenPickaxe": 1, "u.polishedGranite": 1, "b.ironBoots": 1, "m.blackstone": 676, "u.redMushroom": 2, "q.ironBoots": 1, "p.leather": 34, "m.orangeTerracotta": 2, "d.zombie": 7, "u.bricks": 1, "p.crimsonSlab": 8, "q.bow": 7, "u.polishedBlackstoneBricks": 330, "m.sprucePlanks": 3, "m.strippedDarkOakLog": 2, "m.acaciaPlanks": 3, "p.lightGrayCarpet": 8, "u.yellowCarpet": 26, "g.playTime": 2170611, "p.strippedDarkOakLog": 2, "u.pinkBed": 2, "u.polishedBasalt": 4, "p.oakDoor": 1, "u.spruceSlab": 94, "k.cow": 32, "u.playerHead": 19, "c.pinkStainedGlass": 64, "m.birchLeaves": 1, "u.cobbledDeepslate": 9, "m.ladder": 58, "p.dandelion": 9, "p.ironOre": 1, "c.diamondChestplate": 1, "c.stoneAxe": 1, "m.sand": 88, "p.redMushroom": 2, "u.birchPlanks": 139, "g.leaveGame": 62, "m.craftingTable": 17, "p.sugarCane": 32, "u.torch": 458, "q.gravel": 10, "u.oakPlanks": 494, "m.coalOre": 597, "g.drop": 782, "p.rawGold": 351, "u.magmaBlock": 1, "b.diamondHelmet": 1, "p.quartzBlock": 1, "g.damageAbsorbed": 38, "q.glowInkSac": 7, "c.chiseledDeepslate": 1, "c.ironShovel": 4, "u.dripstoneBlock": 3, "p.stoneBricks": 23, "m.birchLog": 59, "u.redNetherBrickStairs": 26, "c.bakedPotato": 259, "d.player": 6, "p.sprucePlanks": 8, "u.sprucePlanks": 73, "cu.talkedToVillager": 1, "q.spruceBoat": 5, "c.bow": 1, "m.oakLeaves": 49, "c.sprucePlanks": 304, "q.ironShovel": 2, "q.leatherHelmet": 1, "m.polishedBlackstoneStairs": 11, "m.deepslate": 1926, "b.diamondBoots": 1, "p.quartz": 731, "u.andesite": 6, "m.soulSand": 102, "p.deepslateBricks": 341, "u.strippedSpruceLog": 5, "p.stone": 1821, "u.spruceStairs": 22, "q.flintAndSteel": 2, "q.diamondPickaxe": 1, "p.redstone": 869, "c.ironChestplate": 3, "m.polishedGranite": 1, "q.lightGrayWool": 1, "d.magmaCube": 1, "p.wheat": 20, "m.carrots": 7, "p.pointedDripstone": 19, "m.fern": 1, "c.ironBlock": 92, "p.craftingTable": 18, "p.oakSlab": 4, "p.cutRedSandstone": 101, "p.netherGoldOre": 23, "p.redSand": 2558, "q.coal": 1, "p.sand": 86, "p.dripstoneBlock": 69, "c.spruceSlab": 90, "u.redstoneBlock": 4, "q.stick": 5, "m.birchSapling": 1, "c.lightGrayWool": 14, "u.grassBlock": 6, "p.ironBlock": 109, "p.torch": 258, "k.blaze": 4, "p.bakedPotato": 1, "m.gravel": 168, "c.diamondBlock": 13, "g.talkedToVillager": 1, "p.crossbow": 4, "c.lapisBlock": 120, "m.brewingStand": 1, "c.charcoal": 115, "u.deepslateRedstoneOre": 12, "m.frostedIce": 5, "g.damageTaken": 33914, "u.acaciaLog": 3, "g.interactWithFurnace": 602, "p.polishedDeepslate": 1, "c.netherBricks": 32, "p.ironShovel": 3, "p.quartzBricks": 22}, "WaveringLibi": {"c.air": 0, "m.granite": 10, "q.granite": 5, "tc.sneak": 0, "p.stoneAxe": 1, "m.diorite": 507, "c.stoneShovel": 4, "m.grassBlock": 198, "q.wheatSeeds": 1, "u.bread": 11, "p.whiteTulip": 5, "q.oakLog": 3, "cu.boatOneCm": 425990, "p.ghastTear": 1, "p.diorite": 506, "p.rawCopper": 10, "c.cookedChicken": 1, "cu.playTime": 584853, "duraPing": 0, "u.netherrack": 594, "u.apple": 13, "p.whiteWool": 21, "p.diamondPickaxe": 1, "k.creeper": 3, "m.clay": 15, "u.dirt": 70, "k.zombie": 25, "p.lilac": 32, "q.stoneSword": 1, "m.spruceLog": 183, "u.yellowBed": 3, "q.feather": 1, "tc.use_stone": 0, "p.oakLog": 54, "p.gunpowder": 4, "p.cookedPorkchop": 5, "u.stoneAxe": 1289, "m.cornflower": 7, "m.copperOre": 3, "k.pillager": 1, "m.torch": 4, "m.whiteTulip": 6, "g.openBarrel": 2, "u.darkOakLog": 2, "q.rottenFlesh": 6, "u.craftingTable": 15, "tc.temp": 131, "m.ironOre": 10, "m.darkOakLeaves": 19, "m.largeFern": 1, "p.glowInkSac": 2, "m.darkOakLog": 504, "g.health": 20, "g.damageDealt": 22249, "m.poppy": 7, "cu.flyOneCm": 1510544, "p.oakBoat": 12, "p.azureBluet": 28, "q.bone": 2, "p.netherWartBlock": 1, "m.tallGrass": 29, "p.darkOakLog": 1003, "p.yellowBed": 3, "u.chest": 4, "g.totalWorldTime": 584853, "duraPing.weapon": 9, "p.carrot": 1, "p.andesite": 7, "u.grindstone": 1, "g.timeSinceDeath": 12319, "p.grindstone": 1, "tc.damage": 70, "u.blackstone": 30, "p.mutton": 43, "u.stoneSword": 91, "m.andesite": 7, "p.porkchop": 92, "m.boneBlock": 57, "p.clayBall": 56, "cu.walkOnWaterOneCm": 58551, "k.enderman": 2, "p.stoneSword": 1, "p.darkOakSapling": 95, "c.cookedBeef": 19, "m.deepslateGoldOre": 4, "c.ironSword": 1, "m.redTulip": 5, "m.whiteBed": 2, "p.chicken": 4, "g.armor": 12, "p.rawIron": 18, "c.chest": 4, "tc.use_gold": 0, "c.glass": 64, "q.poppy": 1, "b.stoneAxe": 16, "k.hoglin": 1, "u.cobblestone": 35, "d.hoglin": 2, "g.sneakTime": 21436, "g.sleepInBed": 5, "cu.sleepInBed": 5, "g.jump": 7843, "p.gravel": 1, "m.cobblestone": 1, "q.redTulip": 4, "m.azureBluet": 30, "m.goldOre": 2, "p.dirt": 244, "q.saddle": 1, "g.air": 300, "c.goldenHelmet": 1, "g.deathCount": 22, "p.boneBlock": 59, "m.grass": 122, "p.granite": 10, "cu.fallOneCm": 236793, "p.bread": 11, "p.lightGrayWool": 1, "tc.use_netherite": 0, "tc.valid": 0, "k.spider": 6, "c.goldenBoots": 1, "u.cookedMutton": 2, "m.blackstone": 30, "b.ironAxe": 1, "p.leather": 27, "p.spruceSapling": 148, "p.goldNugget": 102, "c.torch": 108, "d.zombie": 2, "m.sugarCane": 5, "g.playMinutes": 487, "m.grindstone": 1, "u.oakBoat": 13, "m.scaffolding": 1, "u.bakedPotato": 1, "p.allium": 23, "p.sunflower": 20, "m.pumpkin": 8, "k.sheep": 27, "q.azureBluet": 2, "c.craftingTable": 2, "g.hunger": 19, "q.sand": 1, "cu.swimOneCm": 288965, "m.stone": 301, "m.deepslateIronOre": 8, "g.playTime": 584853, "c.ironPickaxe": 1, "m.spruceLeaves": 99, "p.blackWool": 2, "p.beef": 62, "p.roseBush": 33, "g.playerKills": 1, "p.scaffolding": 3, "q.enderPearl": 1, "cu.walkUnderWaterOneCm": 56170, "u.stonePickaxe": 3203, "cu.climbOneCm": 22849, "g.level": 31, "k.cow": 34, "m.mossCarpet": 2, "m.infestedDeepslate": 1, "p.spruceLog": 608, "u.cookedPorkchop": 47, "m.netherGoldOre": 23, "rc_help": 0, "cu.interactWithGrindstone": 2, "u.stoneShovel": 299, "p.dandelion": 47, "p.stick": 237, "c.stoneAxe": 18, "m.sand": 130, "q.diorite": 6, "m.basalt": 47, "g.timeSinceRest": 11863, "p.netherrack": 1390, "m.powderSnow": 5, "q.scaffolding": 3, "p.basalt": 46, "u.ironLeggings": 1, "u.goldenApple": 1, "p.oxeyeDaisy": 7, "m.soulFire": 1, "m.lilyPad": 1, "q.cornflower": 1, "g.mobKills": 173, "g.leaveGame": 4, "q.arrow": 15, "u.carrot": 20, "m.craftingTable": 12, "u.woodenAxe": 26, "q.oxeyeDaisy": 1, "p.sugarCane": 5, "p.rottenFlesh": 44, "u.diorite": 2, "u.torch": 42, "p.apple": 13, "color": 0, "q.dandelion": 4, "tc.use_diamond": 0, "k.ghast": 2, "q.oakSapling": 1, "u.ironPickaxe": 237, "p.enderPearl": 1, "m.coalOre": 232, "m.dripstoneBlock": 1, "g.drop": 39, "p.rawGold": 6, "cusNetPor": 0, "g.damageBlockedByShield": 870, "k.chicken": 7, "g.damageAbsorbed": 40, "m.lilyOfTheValley": 26, "m.yellowBed": 2, "m.oakLog": 52, "cu.interactWithCraftingTable": 55, "tc.use_iron": 0, "m.birchLog": 9, "p.whiteBed": 2, "p.oakSapling": 24, "c.goldIngot": 27, "p.soulSoil": 2, "c.bakedPotato": 7, "d.player": 2, "tc.use_wood": 0, "u.goldenBoots": 1, "p.feather": 6, "u.sunflower": 1, "c.stonePickaxe": 25, "m.vine": 8, "u.chicken": 2, "u.ironAxe": 146, "m.oakLeaves": 71, "c.sprucePlanks": 4, "b.stonePickaxe": 25, "c.ironIngot": 47, "c.oakPlanks": 28, "g.interactWithCraftingTable": 55, "p.coal": 232, "m.crimsonNylium": 6, "m.oxeyeDaisy": 11, "m.deepslate": 690, "p.arrow": 21, "c.woodenAxe": 1, "p.quartz": 20, "m.soulSand": 1, "m.dirt": 53, "k.witherSkeleton": 1, "c.oakBoat": 1, "u.ironChestplate": 1, "p.cobbledDeepslate": 636, "g.play": 487, "p.mossCarpet": 5, "c.shield": 1, "m.wallTorch": 2, "p.playerHead": 1, "p.pumpkin": 9, "m.netherrack": 1453, "u.cookedChicken": 1, "q.goldenShovel": 1, "d.silverfish": 1, "g.interactWithGrindstone": 2, "p.redstone": 36, "c.ironChestplate": 1, "p.soulSand": 1, "c.cookedPorkchop": 53, "b.goldenHelmet": 1, "b.stoneShovel": 1, "c.copperIngot": 10, "p.bone": 22, "q.dirt": 3, "d.skeleton": 4, "cu.sprintOneCm": 1401318, "c.darkOakPlanks": 12, "cu.damageBlockedByShield": 870, "m.netherWartBlock": 1, "p.pinkTulip": 9, "p.redTulip": 4, "u.diamondPickaxe": 12, "c.cookedMutton": 16, "q.spiderEye": 2, "c.ironLeggings": 1, "m.pinkTulip": 10, "u.cookedBeef": 19, "m.fire": 11, "p.spiderEye": 2, "cu.walkOneCm": 1600121, "m.fern": 1, "rc_display": 0, "g.openChest": 181, "p.wheatSeeds": 12, "p.craftingTable": 13, "p.orangeTulip": 28, "k.skeleton": 18, "m.orangeTulip": 32, "c.ironAxe": 1, "p.birchLog": 19, "p.dripstoneBlock": 1, "p.sand": 130, "q.stick": 4, "u.goldenHelmet": 1, "u.furnace": 3, "cu.crouchOneCm": 77638, "u.soulSoil": 2, "m.dandelion": 48, "m.allium": 24, "m.twistingVinesPlant": 1, "p.stonePickaxe": 1, "u.porkchop": 9, "p.lilyOfTheValley": 22, "m.lilac": 33, "m.soulSoil": 2, "u.rottenFlesh": 6, "p.torch": 8, "cu.interactWithFurnace": 126, "p.bakedPotato": 1, "m.gravel": 3, "m.redstoneOre": 1, "tc.disabled": 0, "k.pig": 45, "q.spruceStairs": 8, "p.string": 4, "m.lectern": 1, "g.damageTaken": 12132, "p.blackstone": 30, "m.deepslateRedstoneOre": 7, "TreeCapitator": 0, "p.lectern": 1, "g.interactWithFurnace": 126, "p.cornflower": 7, "p.cobblestone": 294, "q.goldenPickaxe": 1, "u.shield": 33, "u.ironSword": 246, "p.poppy": 7, "u.sand": 1, "m.sunflower": 20, "m.roseBush": 40, "m.netherQuartzOre": 20, "p.birchSapling": 9}}, "DisplaySlots": {"list": "g.deathCount"}}
\ No newline at end of file
diff --git a/bcrmc/scoreboard/scoreboard.js b/bcrmc/scoreboard/scoreboard.js
new file mode 100644
index 00000000..9f7b2f44
--- /dev/null
+++ b/bcrmc/scoreboard/scoreboard.js
@@ -0,0 +1,352 @@
+var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
+ return new (P || (P = Promise))(function (resolve, reject) {
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
+ });
+};
+import { $, $all, humanize_number, json, reverse_object } from '../utils.js';
+import { setup_tabs } from '../tabs.js';
+(function () {
+ return __awaiter(this, void 0, void 0, function* () {
+ const SCOREBOARD_TABLE = $('table.scoreboard');
+ const BOARD_DATA = yield json('scoreboard-json/scoreboard-bcr5-feb01.json');
+ const PLAYERS = Object.keys(BOARD_DATA.PlayerScores);
+ const EST_OBJECTIVE_COUNT = PLAYERS.map(player => Object.keys(BOARD_DATA.PlayerScores[player]).length).reduce((acc, val) => { return acc + val; }, 0);
+ const CATEGORIES_BY_PREFIX = {
+ "b.": "Broken",
+ "c.": "Crafted",
+ "d.": "Killed by",
+ "k.": "Killed",
+ "u.": "Used",
+ "m.": "Mined",
+ "p.": "Picked Up",
+ "q.": "Dropped",
+ };
+ const CATEGORIES_BY_TITLE = reverse_object(CATEGORIES_BY_PREFIX);
+ const CATEGORY_PREFIX_REGEX = new RegExp(`${Object.values(CATEGORIES_BY_PREFIX).join('|')}`);
+ function get_standard_stats_map() {
+ let obj_names = [];
+ let trimmed_info = {};
+ for (const [name, obj_info] of Object.entries(BOARD_DATA.Objectives)) {
+ if (Object.keys(CATEGORIES_BY_PREFIX).includes(name.split('.')[0] + '.') && !obj_names.includes(name.split('.')[1])) {
+ let generic_name = name.split('.')[1];
+ obj_names.push(generic_name);
+ trimmed_info[generic_name] = obj_info.DisplayName.json_dict.text.replace(CATEGORY_PREFIX_REGEX, '').trim();
+ }
+ }
+ obj_names = obj_names.sort();
+ let alphabetical_info = {};
+ for (let name of obj_names) {
+ alphabetical_info[name] = trimmed_info[name];
+ }
+ ;
+ return alphabetical_info;
+ }
+ // An objective's NAME is what you'd use in a command, e.g. m.oakLog
+ // An objective's TITLE is what Minecraft calls its "Display Name", e.g. "Oak Log Mined"
+ const STANDARD_STATS_BY_NAME = get_standard_stats_map();
+ const STANDARD_STATS_BY_TITLE = reverse_object(STANDARD_STATS_BY_NAME);
+ function get_custom_stats() {
+ let custom_objectives = {};
+ for (const [name, obj_info] of Object.entries(BOARD_DATA.Objectives)) {
+ if (name.startsWith('cu.')) {
+ let title = obj_info.DisplayName.json_dict.text;
+ custom_objectives[name.split('cu.')[1]] = title;
+ }
+ }
+ let sorted_names = Object.keys(custom_objectives).sort();
+ let sorted_custom_objectives = {};
+ for (let name of sorted_names) {
+ sorted_custom_objectives[name] = custom_objectives[name];
+ }
+ return sorted_custom_objectives;
+ }
+ const CUSTOM_STATS_BY_NAME = get_custom_stats();
+ const CUSTOM_STATS_BY_TITLE = reverse_object(CUSTOM_STATS_BY_NAME);
+ function find_close_strings(search, options) {
+ return options.filter(item => { if (item)
+ return item.toLowerCase().includes(search.replace(/ /g, '').toLowerCase()); });
+ }
+ const ST_STATS = $('div#standard-stats');
+ const CU_STATS = $('div#custom-stats');
+ const ST_STATS_PLAYER_INPUT = ST_STATS.querySelector('input[name="player"]');
+ const ST_STATS_PLAYER_SUB = ST_STATS.querySelector('div[name="player"] div.text-input-sub');
+ const ST_STATS_PLAYER_SUGBOX = ST_STATS.querySelector('div[name="player"] div.search-suggestions');
+ const ST_STATS_CAT_SELECTOR = ST_STATS.querySelector('select');
+ const ST_STATS_OBJ_INPUT = ST_STATS.querySelector('input[name="object"]');
+ const ST_STATS_OBJ_SUB = ST_STATS.querySelector('div[name="object"] div.text-input-sub');
+ const ST_STATS_OBJ_SUGBOX = ST_STATS.querySelector('div[name="object"] div.search-suggestions');
+ const CU_STATS_OBJ_SELECTOR = CU_STATS.querySelector('select');
+ const SEARCH_RESULTS_CONTAINER = $('div#search-results');
+ function fade_out(element) {
+ if (!element.classList.contains('off'))
+ element.classList.add('fade-out');
+ }
+ // Show and hide search suggestions depending on input box focus
+ let focus_state = {};
+ function new_focus_state_id() {
+ let new_id = Math.random().toString(36).substring(2, 7);
+ while (focus_state.hasOwnProperty(new_id)) {
+ new_id = Math.random().toString(36).substring(2, 7);
+ }
+ return new_id;
+ }
+ for (const [input, sugbox] of [
+ [ST_STATS_PLAYER_INPUT, ST_STATS_PLAYER_SUGBOX],
+ [ST_STATS_OBJ_INPUT, ST_STATS_OBJ_SUGBOX],
+ ]) {
+ const INPUT_FOCUS_ID = new_focus_state_id();
+ input.setAttribute('fstate-id', INPUT_FOCUS_ID);
+ focus_state[INPUT_FOCUS_ID] = false;
+ const SUGBOX_FOCUS_ID = new_focus_state_id();
+ sugbox.setAttribute('fstate-id', SUGBOX_FOCUS_ID);
+ focus_state[SUGBOX_FOCUS_ID] = false;
+ input.addEventListener('focus', () => {
+ focus_state[INPUT_FOCUS_ID] = true;
+ if (sugbox.children.length > 0) {
+ sugbox.classList.remove('off');
+ }
+ });
+ sugbox.addEventListener('focus', () => {
+ focus_state[SUGBOX_FOCUS_ID] = true;
+ });
+ // TODO: this only works on one of them? sure. i dont care rn
+ input.addEventListener('blur', () => {
+ focus_state[INPUT_FOCUS_ID] = false;
+ setTimeout(() => {
+ // If we've now focused the box itself, say by pressing tab, don't get rid of it yet
+ if (focus_state[SUGBOX_FOCUS_ID])
+ return;
+ fade_out(sugbox);
+ }, 100);
+ });
+ sugbox.addEventListener('blur', () => {
+ focus_state[SUGBOX_FOCUS_ID] = false;
+ });
+ }
+ // TODO: Add search suggestions for player names
+ let last_search_value = '';
+ function refresh_search_suggestions(sugbox_parent, search_string, search_options) {
+ let sugbox = sugbox_parent.querySelector('div.search-suggestions');
+ let input = sugbox_parent.querySelector('input');
+ sugbox.style.setProperty('width', String(input.offsetWidth) + 'px');
+ // typescript complains about this if i don't specify i guess? but just using 'input' up there is fine. ok
+ sugbox.style.setProperty('margin-top', String(sugbox_parent.querySelector('div.text-input-sub').offsetHeight) + 'px');
+ if (search_string == last_search_value)
+ return;
+ if (search_string.length > 2) {
+ let suggestions = find_close_strings(search_string, search_options);
+ if (suggestions.length <= 0) {
+ sugbox.innerHTML = '';
+ fade_out(sugbox);
+ return;
+ }
+ let new_html = suggestions.map(entry => { return `${entry} `; }).join('');
+ // Avoid changing the contents if they're going to be the same
+ // Resets the :hover CSS property otherwise, can look weird
+ if (sugbox.innerHTML != new_html)
+ sugbox.innerHTML = new_html;
+ if (focus_state[input.getAttribute('fstate-id')])
+ sugbox.classList.remove('off');
+ }
+ else {
+ sugbox.innerHTML = '';
+ if (!sugbox.classList.contains('off'))
+ sugbox.classList.add('fade-out');
+ }
+ for (let button of sugbox.querySelectorAll('button.search-suggestion-entry')) {
+ button.addEventListener('click', () => {
+ let search_input = input;
+ last_search_value = search_input.value = button.textContent;
+ });
+ }
+ last_search_value = search_string;
+ }
+ function validate_text_input(element, sub_element, sub_message, valid_options, other_conditions) {
+ ST_STATS_PLAYER_SUB.style.setProperty('width', String($('input[name="player"]').offsetWidth) + 'px');
+ ST_STATS_OBJ_SUB.style.setProperty('width', String($('input[name="object"]').offsetWidth) + 'px');
+ sub_message = sub_message.replace(/%value%/g, element.value);
+ let is_valid = (valid_options.includes(element.value)
+ || (filter_with_wildcard(element.value, valid_options).length > 0)
+ || element.value == '*') && (other_conditions ? other_conditions.every(Boolean) : true);
+ if (is_valid) {
+ sub_element.innerHTML = '';
+ sub_element.classList.remove('invalid');
+ sub_element.classList.add('off');
+ element.classList.remove('invalid');
+ }
+ else {
+ sub_element.innerHTML = sub_message;
+ sub_element.classList.add('invalid');
+ sub_element.classList.remove('off');
+ element.classList.add('invalid');
+ }
+ }
+ for (let box of $all('div.search-suggestions')) {
+ box.addEventListener('animationend', () => {
+ box.classList.add('off');
+ box.classList.remove('fade-out');
+ });
+ }
+ function filter_with_wildcard(input_string, source_array) {
+ const reg = new RegExp('^' + input_string.replace('*', '.*'), 'i');
+ return source_array.filter(input_string => input_string.match(reg));
+ }
+ function request_scores(player, category_prefix, requested_obj) {
+ var _a;
+ const every_player = player == '*';
+ const every_category = category_prefix == 'all';
+ const every_objective = requested_obj == '*';
+ const is_custom = category_prefix == 'cu.';
+ if (!every_player && !BOARD_DATA.PlayerScores[player])
+ return undefined;
+ let players = every_player ? PLAYERS : [player];
+ let categories = every_category ? Object.keys(CATEGORIES_BY_PREFIX) : [category_prefix];
+ let objectives = every_objective ? Object.keys(STANDARD_STATS_BY_NAME)
+ : is_custom ? [requested_obj]
+ : requested_obj.includes('*') ? filter_with_wildcard(requested_obj, Object.keys(STANDARD_STATS_BY_TITLE))
+ : [STANDARD_STATS_BY_TITLE[requested_obj]];
+ let results = {};
+ for (const p of players) {
+ console.log(p);
+ results[p] = {};
+ for (const cat of categories) {
+ console.log(cat);
+ for (let obj of objectives) {
+ console.log(obj);
+ obj = (_a = STANDARD_STATS_BY_TITLE[obj]) !== null && _a !== void 0 ? _a : obj;
+ let score = BOARD_DATA.PlayerScores[p][cat + obj];
+ if (!score)
+ continue;
+ results[p][cat + obj] = score;
+ }
+ }
+ }
+ return results;
+ }
+ function scores_as_csv(score_results) {
+ let csv = [];
+ console.log(score_results);
+ for (const [player, scores] of Object.entries(score_results)) {
+ for (const [obj, score] of Object.entries(scores)) {
+ const is_custom = obj.startsWith('cu.');
+ console.log(obj);
+ let category_title = is_custom ? '' : CATEGORIES_BY_PREFIX[obj.split('.')[0] + '.'];
+ let objective_title = is_custom ? CUSTOM_STATS_BY_NAME[obj.split('.')[1]] : STANDARD_STATS_BY_NAME[obj.split('.')[1]];
+ let full_objective = is_custom ? objective_title : `${category_title} ${objective_title}`;
+ console.log(category_title, objective_title, full_objective);
+ csv.push(`${player},${full_objective},${score}`);
+ }
+ }
+ return csv;
+ }
+ function csv_blob(csv) {
+ const blob = new Blob([csv.join('\n')], { type: 'text/csv' });
+ return blob;
+ }
+ function prompt_blob(blob) {
+ let link = window.URL.createObjectURL(blob);
+ window.location.href = link;
+ }
+ function build_and_show_results_table(results) {
+ const csv_dl = SEARCH_RESULTS_CONTAINER.querySelector('a#csv-download');
+ SEARCH_RESULTS_CONTAINER.classList.remove('off');
+ const csv = scores_as_csv(results);
+ if (csv.length == 0) {
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `Nothing found.
+ Nothing could be found for that player, category, and object combination. `;
+ csv_dl.classList.add('disabled');
+ return;
+ }
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `Found ${csv.length} results!`;
+ let scoreboard_html = `
+
+
+ Player
+ Objective
+ Score
+
+
+
+ `;
+ SCOREBOARD_TABLE.innerHTML = scoreboard_html + 'Building...
';
+ for (let n = 0; n < csv.length; n++) {
+ const line = csv[n];
+ let [player, category, score] = line.split(',');
+ scoreboard_html += `
+
+ ${player}
+ ${category}
+ ${score}
+
+ `;
+ }
+ scoreboard_html += ' ';
+ SCOREBOARD_TABLE.innerHTML = scoreboard_html;
+ csv_dl.addEventListener('click', () => {
+ prompt_blob(csv_blob(csv));
+ });
+ csv_dl.classList.remove('disabled');
+ }
+ for (let button of $all('button[name="search-button"]')) {
+ let section = button.parentElement;
+ let player_input = section.querySelector('input[name="player"]');
+ if (section.id == 'standard-stats') {
+ let category_selector = section.querySelector('select');
+ let object_input = section.querySelector('input[name="object"]');
+ button.addEventListener('click', () => {
+ let results = request_scores(player_input.value, category_selector.value, object_input.value);
+ build_and_show_results_table(results);
+ });
+ }
+ else if (section.id == 'custom-stats') {
+ let objective_selector = section.querySelector('select');
+ button.addEventListener('click', () => {
+ let results = request_scores('*', 'cu.', objective_selector.value);
+ build_and_show_results_table(results);
+ });
+ }
+ }
+ // Build stats category selection
+ function build_stats_category_selection() {
+ ST_STATS_CAT_SELECTOR.innerHTML += `All Categories `;
+ for (const [prefix, name] of Object.entries(CATEGORIES_BY_PREFIX)) {
+ ST_STATS_CAT_SELECTOR.innerHTML += `${name} `;
+ }
+ }
+ build_stats_category_selection();
+ function build_custom_stats_selection() {
+ for (const [name, title] of Object.entries(CUSTOM_STATS_BY_NAME)) {
+ CU_STATS_OBJ_SELECTOR.innerHTML += `${title} \n`;
+ }
+ ;
+ }
+ build_custom_stats_selection();
+ setup_tabs();
+ console.log(BOARD_DATA);
+ setInterval(() => {
+ refresh_search_suggestions(ST_STATS.querySelector('div[name="player"]'), ST_STATS_PLAYER_INPUT.value, PLAYERS);
+ refresh_search_suggestions(ST_STATS.querySelector('div[name="object"]'), ST_STATS_OBJ_INPUT.value, Object.keys(STANDARD_STATS_BY_TITLE));
+ let player_input_value = ST_STATS_PLAYER_INPUT.value;
+ let st_category_value = ST_STATS_CAT_SELECTOR.value;
+ let st_category_title = CATEGORIES_BY_PREFIX[st_category_value];
+ let st_obj_value = ST_STATS_OBJ_INPUT.value;
+ let st_obj_name = STANDARD_STATS_BY_TITLE[st_obj_value];
+ let objective_name = st_category_value + st_obj_name;
+ if (player_input_value == '*' && st_category_value == 'all' && st_obj_value == '*') {
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `
+
+ This search will return all statistic entries in the scoreboard, which is
+ roughly ${humanize_number(EST_OBJECTIVE_COUNT)} .
+ This may take a long time to search, and the page may freeze while doing so.
+
+ `;
+ }
+ validate_text_input(ST_STATS_PLAYER_INPUT, ST_STATS_PLAYER_SUB, 'Can\'t find player "%value%"', PLAYERS);
+ validate_text_input(ST_STATS_OBJ_INPUT, ST_STATS_OBJ_SUB, `No entry for "%value%" in category "${st_category_title}"`, Object.keys(STANDARD_STATS_BY_TITLE), [(st_obj_value.includes('*') || st_category_value == 'all') || Object.keys(BOARD_DATA.Objectives).includes(objective_name)]);
+ }, 500);
+ });
+})();
diff --git a/bcrmc/scoreboard/scoreboard.ts b/bcrmc/scoreboard/scoreboard.ts
new file mode 100644
index 00000000..82b612b0
--- /dev/null
+++ b/bcrmc/scoreboard/scoreboard.ts
@@ -0,0 +1,402 @@
+import { $, $all, humanize_number, json, reverse_object } from '../utils.js';
+import { setup_tabs } from '../tabs.js';
+
+(async function () {
+
+const SCOREBOARD_TABLE: HTMLTableElement = $('table.scoreboard');
+
+const BOARD_DATA: { [key: string]: object } = await json('scoreboard-json/scoreboard-bcr5-feb01.json');
+
+const PLAYERS: Array = Object.keys(BOARD_DATA.PlayerScores);
+
+const EST_OBJECTIVE_COUNT: number = PLAYERS.map(player => Object.keys(BOARD_DATA.PlayerScores[player]).length).reduce(
+ (acc, val) => {return acc + val}, 0
+);
+
+const CATEGORIES_BY_PREFIX: { [key: string]: string } = {
+ "b.": "Broken",
+ "c.": "Crafted",
+ "d.": "Killed by",
+ "k.": "Killed",
+ "u.": "Used",
+ "m.": "Mined",
+ "p.": "Picked Up",
+ "q.": "Dropped",
+}
+
+const CATEGORIES_BY_TITLE: { [key: string]: string } = reverse_object(CATEGORIES_BY_PREFIX);
+
+const CATEGORY_PREFIX_REGEX: RegExp = new RegExp(`${Object.values(CATEGORIES_BY_PREFIX).join('|')}`);
+
+function get_standard_stats_map(): { [key: string]: string } {
+ let obj_names: Array = [];
+ let trimmed_info: { [key: string]: string } = {};
+ for (const[name, obj_info] of Object.entries(BOARD_DATA.Objectives)) {
+ if (Object.keys(CATEGORIES_BY_PREFIX).includes(name.split('.')[0] + '.') && !obj_names.includes(name.split('.')[1])) {
+ let generic_name = name.split('.')[1];
+ obj_names.push(generic_name);
+ trimmed_info[generic_name] = obj_info.DisplayName.json_dict.text.replace(CATEGORY_PREFIX_REGEX, '').trim();
+ }
+ }
+
+ obj_names = obj_names.sort();
+ let alphabetical_info: { [key: string]: string } = {};
+ for (let name of obj_names) {
+ alphabetical_info[name] = trimmed_info[name];
+ };
+
+ return alphabetical_info;
+}
+
+// An objective's NAME is what you'd use in a command, e.g. m.oakLog
+// An objective's TITLE is what Minecraft calls its "Display Name", e.g. "Oak Log Mined"
+const STANDARD_STATS_BY_NAME: { [key: string]: string } = get_standard_stats_map();
+const STANDARD_STATS_BY_TITLE: { [key: string]: string } = reverse_object(STANDARD_STATS_BY_NAME);
+
+function get_custom_stats() {
+ let custom_objectives: { [key: string]: string } = {};
+ for (const [name, obj_info] of Object.entries(BOARD_DATA.Objectives)) {
+ if (name.startsWith('cu.')) {
+ let title: string = obj_info.DisplayName.json_dict.text;
+ custom_objectives[name.split('cu.')[1]] = title;
+ }
+ }
+
+ let sorted_names: Array = Object.keys(custom_objectives).sort();
+ let sorted_custom_objectives = {};
+ for (let name of sorted_names) {
+ sorted_custom_objectives[name] = custom_objectives[name];
+ }
+
+ return sorted_custom_objectives;
+}
+
+const CUSTOM_STATS_BY_NAME: { [key: string]: string } = get_custom_stats();
+const CUSTOM_STATS_BY_TITLE: { [key: string]: string } = reverse_object(CUSTOM_STATS_BY_NAME);
+
+function find_close_strings(search: string, options: Array): Array {
+ return options.filter(item => { if (item) return item.toLowerCase().includes(search.replace(/ /g, '').toLowerCase()); });
+}
+
+const ST_STATS: HTMLDivElement = $('div#standard-stats');
+const CU_STATS: HTMLDivElement = $('div#custom-stats');
+
+const ST_STATS_PLAYER_INPUT: HTMLInputElement = ST_STATS.querySelector('input[name="player"]');
+const ST_STATS_PLAYER_SUB: HTMLDivElement = ST_STATS.querySelector('div[name="player"] div.text-input-sub');
+const ST_STATS_PLAYER_SUGBOX: HTMLDivElement = ST_STATS.querySelector('div[name="player"] div.search-suggestions');
+
+const ST_STATS_CAT_SELECTOR: HTMLSelectElement = ST_STATS.querySelector('select')
+
+const ST_STATS_OBJ_INPUT: HTMLInputElement = ST_STATS.querySelector('input[name="object"]');
+const ST_STATS_OBJ_SUB: HTMLDivElement = ST_STATS.querySelector('div[name="object"] div.text-input-sub');
+const ST_STATS_OBJ_SUGBOX: HTMLDivElement = ST_STATS.querySelector('div[name="object"] div.search-suggestions');
+
+const CU_STATS_OBJ_SELECTOR: HTMLSelectElement = CU_STATS.querySelector('select');
+
+const SEARCH_RESULTS_CONTAINER: HTMLDivElement = $('div#search-results');
+
+function fade_out(element: HTMLElement) {
+ if (!element.classList.contains('off')) element.classList.add('fade-out');
+}
+
+// Show and hide search suggestions depending on input box focus
+let focus_state: { [key: string]: boolean } = {};
+
+function new_focus_state_id(): string {
+ let new_id: string = Math.random().toString(36).substring(2,7);
+ while (focus_state.hasOwnProperty(new_id)) {
+ new_id = Math.random().toString(36).substring(2,7);
+ }
+ return new_id;
+}
+
+for (const [input, sugbox] of [
+ [ST_STATS_PLAYER_INPUT, ST_STATS_PLAYER_SUGBOX],
+ [ST_STATS_OBJ_INPUT, ST_STATS_OBJ_SUGBOX],
+ ]) {
+ const INPUT_FOCUS_ID = new_focus_state_id();
+ input.setAttribute('fstate-id', INPUT_FOCUS_ID);
+ focus_state[INPUT_FOCUS_ID] = false;
+
+ const SUGBOX_FOCUS_ID = new_focus_state_id();
+ sugbox.setAttribute('fstate-id', SUGBOX_FOCUS_ID);
+ focus_state[SUGBOX_FOCUS_ID] = false;
+
+
+ input.addEventListener('focus', () => {
+ focus_state[INPUT_FOCUS_ID] = true;
+ if (sugbox.children.length > 0) {
+ sugbox.classList.remove('off');
+ }
+ });
+ sugbox.addEventListener('focus', () => {
+ focus_state[SUGBOX_FOCUS_ID] = true;
+ });
+ // TODO: this only works on one of them? sure. i dont care rn
+
+ input.addEventListener('blur', () => {
+ focus_state[INPUT_FOCUS_ID] = false;
+ setTimeout(() => {
+ // If we've now focused the box itself, say by pressing tab, don't get rid of it yet
+ if (focus_state[SUGBOX_FOCUS_ID]) return;
+ fade_out(sugbox);
+ }, 100);
+ });
+ sugbox.addEventListener('blur', () => {
+ focus_state[SUGBOX_FOCUS_ID] = false;
+ });
+}
+
+// TODO: Add search suggestions for player names
+let last_search_value: string = '';
+
+function refresh_search_suggestions(sugbox_parent: HTMLElement, search_string: string, search_options: Array): void {
+ let sugbox: HTMLElement = sugbox_parent.querySelector('div.search-suggestions');
+ let input: HTMLInputElement = sugbox_parent.querySelector('input');
+ sugbox.style.setProperty('width', String(input.offsetWidth) + 'px');
+ // typescript complains about this if i don't specify i guess? but just using 'input' up there is fine. ok
+ sugbox.style.setProperty('margin-top', String(sugbox_parent.querySelector('div.text-input-sub').offsetHeight) + 'px');
+
+ if (search_string == last_search_value) return;
+
+ if (search_string.length > 2) {
+ let suggestions: Array = find_close_strings(search_string, search_options);
+ if (suggestions.length <= 0) {
+ sugbox.innerHTML = '';
+ fade_out(sugbox);
+ return;
+ }
+ let new_html: string = suggestions.map(entry => { return `${entry} ` }).join('')
+ // Avoid changing the contents if they're going to be the same
+ // Resets the :hover CSS property otherwise, can look weird
+ if (sugbox.innerHTML != new_html) sugbox.innerHTML = new_html;
+ if (focus_state[input.getAttribute('fstate-id')]) sugbox.classList.remove('off');
+ } else {
+ sugbox.innerHTML = '';
+ if (!sugbox.classList.contains('off')) sugbox.classList.add('fade-out');
+ }
+
+ for (let button of sugbox.querySelectorAll('button.search-suggestion-entry')) {
+ button.addEventListener('click', () => {
+ let search_input: HTMLInputElement = input;
+ last_search_value = search_input.value = button.textContent;
+ });
+ }
+
+ last_search_value = search_string;
+}
+
+function validate_text_input(element: HTMLInputElement, sub_element: HTMLElement, sub_message: string, valid_options: Array,
+ other_conditions?: Array): void {
+ ST_STATS_PLAYER_SUB.style.setProperty('width', String($('input[name="player"]').offsetWidth) + 'px');
+ ST_STATS_OBJ_SUB.style.setProperty('width', String($('input[name="object"]').offsetWidth) + 'px');
+ sub_message = sub_message.replace(/%value%/g, element.value);
+
+
+ let is_valid: boolean = (
+ valid_options.includes(element.value)
+ || (filter_with_wildcard(element.value, valid_options).length > 0)
+ || element.value == '*'
+ ) && (other_conditions ? other_conditions.every(Boolean) : true);
+
+ if (is_valid) {
+ sub_element.innerHTML = ''; sub_element.classList.remove('invalid'); sub_element.classList.add('off');
+ element.classList.remove('invalid');
+ } else {
+ sub_element.innerHTML = sub_message; sub_element.classList.add('invalid'); sub_element.classList.remove('off');
+ element.classList.add('invalid');
+ }
+}
+
+for (let box of $all('div.search-suggestions')) {
+ box.addEventListener('animationend', () => {
+ box.classList.add('off');
+ box.classList.remove('fade-out');
+ });
+}
+
+function filter_with_wildcard(input_string: string, source_array: Array): Array {
+ const reg = new RegExp('^' + input_string.replace('*', '.*'), 'i');
+ return source_array.filter(input_string => input_string.match(reg));
+}
+
+// Request scores
+type ScoreSearchResults = { [key: string]: { [key: string]: number } };
+function request_scores(player: string, category_prefix: string, requested_obj: string): ScoreSearchResults {
+ const every_player: boolean = player == '*';
+ const every_category: boolean = category_prefix == 'all';
+ const every_objective: boolean = requested_obj == '*';
+ const is_custom: boolean = category_prefix == 'cu.';
+
+ if (!every_player && !BOARD_DATA.PlayerScores[player]) return undefined;
+
+ let players: Array = every_player ? PLAYERS : [player];
+ let categories: Array = every_category ? Object.keys(CATEGORIES_BY_PREFIX) : [category_prefix];
+ let objectives: Array = every_objective ? Object.keys(STANDARD_STATS_BY_NAME)
+ : is_custom ? [requested_obj]
+ : requested_obj.includes('*') ? filter_with_wildcard(requested_obj, Object.keys(STANDARD_STATS_BY_TITLE))
+ : [STANDARD_STATS_BY_TITLE[requested_obj]];
+
+ let results: ScoreSearchResults = {};
+ for (const p of players) {
+ console.log(p);
+ results[p] = {};
+ for (const cat of categories) {
+ console.log(cat);
+ for (let obj of objectives) {
+ console.log(obj);
+ obj = STANDARD_STATS_BY_TITLE[obj] ?? obj;
+ let score: number = BOARD_DATA.PlayerScores[p][cat + obj];
+ if (!score) continue;
+ results[p][cat + obj] = score;
+ }
+ }
+ }
+
+ return results;
+}
+
+function scores_as_csv(score_results: ScoreSearchResults): Array {
+ let csv: Array = [];
+ console.log(score_results);
+ for (const [player, scores] of Object.entries(score_results)) {
+ for (const [obj, score] of Object.entries(scores)) {
+ const is_custom: boolean = obj.startsWith('cu.');
+ console.log(obj);
+ let category_title: string = is_custom ? '' : CATEGORIES_BY_PREFIX[obj.split('.')[0] + '.'];
+ let objective_title: string = is_custom ? CUSTOM_STATS_BY_NAME[obj.split('.')[1]] : STANDARD_STATS_BY_NAME[obj.split('.')[1]];
+ let full_objective: string = is_custom ? objective_title : `${category_title} ${objective_title}`;
+ console.log(category_title, objective_title, full_objective)
+ csv.push(`${player},${full_objective},${score}`);
+ }
+ }
+ return csv;
+}
+
+function csv_blob(csv: Array): Blob {
+ const blob = new Blob([csv.join('\n')], { type: 'text/csv' });
+ return blob;
+}
+
+function prompt_blob(blob: Blob): void {
+ let link = window.URL.createObjectURL(blob);
+ window.location.href = link;
+}
+
+function build_and_show_results_table(results: ScoreSearchResults): void {
+ const csv_dl: HTMLAnchorElement = SEARCH_RESULTS_CONTAINER.querySelector('a#csv-download');
+ SEARCH_RESULTS_CONTAINER.classList.remove('off');
+
+ const csv = scores_as_csv(results);
+ if (csv.length == 0) {
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `Nothing found.
+ Nothing could be found for that player, category, and object combination. `;
+ csv_dl.classList.add('disabled');
+ return;
+ }
+
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `Found ${csv.length} results!`;
+ let scoreboard_html: string = `
+
+
+ Player
+ Objective
+ Score
+
+
+
+ `;
+
+ SCOREBOARD_TABLE.innerHTML = scoreboard_html + 'Building...
';
+ for (let n = 0; n < csv.length; n++) {
+ const line = csv[n];
+ let [player, category, score] = line.split(',');
+ scoreboard_html += `
+
+ ${player}
+ ${category}
+ ${score}
+
+ `;
+ }
+ scoreboard_html += ' ';
+ SCOREBOARD_TABLE.innerHTML = scoreboard_html;
+
+ csv_dl.addEventListener('click', () => {
+ prompt_blob(csv_blob(csv));
+ });
+ csv_dl.classList.remove('disabled');
+}
+
+for (let button of $all('button[name="search-button"]')) {
+ let section: HTMLElement = button.parentElement;
+ let player_input: HTMLInputElement = section.querySelector('input[name="player"]');
+
+ if (section.id == 'standard-stats') {
+ let category_selector: HTMLSelectElement = section.querySelector('select');
+ let object_input: HTMLInputElement = section.querySelector('input[name="object"]');
+
+ button.addEventListener('click', () => {
+ let results = request_scores(player_input.value, category_selector.value, object_input.value);
+ build_and_show_results_table(results);
+ });
+ } else if (section.id == 'custom-stats') {
+ let objective_selector: HTMLSelectElement = section.querySelector('select');
+
+ button.addEventListener('click', () => {
+ let results = request_scores('*', 'cu.', objective_selector.value);
+ build_and_show_results_table(results);
+ });
+ }
+}
+
+// Build stats category selection
+function build_stats_category_selection(): void {
+ ST_STATS_CAT_SELECTOR.innerHTML += `All Categories `;
+ for (const [prefix, name] of Object.entries(CATEGORIES_BY_PREFIX)) {
+ ST_STATS_CAT_SELECTOR.innerHTML += `${name} `
+ }
+}
+build_stats_category_selection();
+
+function build_custom_stats_selection(): void {
+ for (const [name, title] of Object.entries(CUSTOM_STATS_BY_NAME)) {
+ CU_STATS_OBJ_SELECTOR.innerHTML += `${title} \n`;
+ };
+}
+build_custom_stats_selection();
+
+setup_tabs();
+console.log(BOARD_DATA);
+setInterval(() => {
+ refresh_search_suggestions(ST_STATS.querySelector('div[name="player"]'), ST_STATS_PLAYER_INPUT.value, PLAYERS);
+ refresh_search_suggestions(ST_STATS.querySelector('div[name="object"]'), ST_STATS_OBJ_INPUT.value, Object.keys(STANDARD_STATS_BY_TITLE));
+
+ let player_input_value: string = ST_STATS_PLAYER_INPUT.value;
+ let st_category_value: string = ST_STATS_CAT_SELECTOR.value;
+ let st_category_title: string = CATEGORIES_BY_PREFIX[st_category_value];
+
+ let st_obj_value: string = ST_STATS_OBJ_INPUT.value;
+ let st_obj_name: string = STANDARD_STATS_BY_TITLE[st_obj_value];
+
+ let objective_name: string = st_category_value + st_obj_name;
+
+ if (player_input_value == '*' && st_category_value == 'all' && st_obj_value == '*') {
+ SEARCH_RESULTS_CONTAINER.querySelector('p').innerHTML = `
+
+ This search will return all statistic entries in the scoreboard, which is
+ roughly ${humanize_number(EST_OBJECTIVE_COUNT)} .
+ This may take a long time to search, and the page may freeze while doing so.
+
+ `;
+ }
+
+ validate_text_input(ST_STATS_PLAYER_INPUT, ST_STATS_PLAYER_SUB, 'Can\'t find player "%value%"', PLAYERS);
+ validate_text_input(ST_STATS_OBJ_INPUT, ST_STATS_OBJ_SUB,
+ `No entry for "%value%" in category "${st_category_title}"`, Object.keys(STANDARD_STATS_BY_TITLE),
+ [(st_obj_value.includes('*') || st_category_value == 'all') || Object.keys(BOARD_DATA.Objectives).includes(objective_name)]
+ );
+}, 500);
+
+
+})();
\ No newline at end of file
diff --git a/bcrmc/script.js b/bcrmc/script.js
index 012e30be..adc4535e 100644
--- a/bcrmc/script.js
+++ b/bcrmc/script.js
@@ -1,12 +1,14 @@
// Add anchor tags to sections with
function create_section_anchors() {
- var tags_h2 = document.querySelectorAll('h2');
- tags_h2.forEach(function (tag) {
+ let tags_h2 = document.querySelectorAll('h2');
+ tags_h2.forEach(tag => {
// Make auto IDs if one isn't already set
if (!tag.id) {
tag.id = tag.textContent.replace(/ /, '-').toLowerCase();
}
- tag.innerHTML += "\n \n ");
+ tag.innerHTML += `
+
+ `;
});
}
create_section_anchors();
diff --git a/bcrmc/stats/bcr5/scoreboard-bcr5-feb01.json b/bcrmc/stats/bcr5/scoreboard-bcr5-feb01.json
deleted file mode 100644
index b10da113..00000000
--- a/bcrmc/stats/bcr5/scoreboard-bcr5-feb01.json
+++ /dev/null
@@ -1 +0,0 @@
-{"TheDesuComplex": {"c.ironPickaxe": 11, "u.lilac": 1, "p.musicDiscStal": 1, "u.diamondPickaxe": 55270, "m.bamboo": 1308, "cu.interactWithSmoker": 258, "c.netheriteIngot": 10, "u.deepslateTiles": 16, "m.jungleFence": 2, "c.ironHelmet": 2, "c.stone": 224, "g.openBarrel": 4032, "p.wheatSeeds": 5847, "q.spruceSapling": 10, "p.diamondChestplate": 1, "u.rottenFlesh": 8, "g.fishCaught": 39, "u.jungleSlab": 9, "q.diamondLeggings": 1, "q.spruceLog": 9, "g.interactWithCraftingTable": 916, "c.acaciaTrapdoor": 16, "u.redstone": 29, "c.birchBoat": 1, "m.buddingAmethyst": 2, "c.redDye": 218, "u.shulkerBox": 66, "m.largeFern": 6, "u.roseBush": 4, "c.spruceTrapdoor": 16, "p.ironAxe": 2, "m.lapisOre": 150, "q.magentaStainedGlass": 2, "m.redStainedGlass": 4, "c.crimsonTrapdoor": 16, "p.cookedSalmon": 7, "c.jackOLantern": 64, "p.lectern": 78, "u.deepslateTileSlab": 58, "u.redNetherBrickSlab": 543, "p.jungleLog": 2564, "u.redNetherBricks": 53, "q.diamondHelmet": 2, "p.ironPickaxe": 1, "p.warpedRoots": 39, "q.polishedDiorite": 1, "p.mossCarpet": 213, "p.andesite": 855, "m.caveVinesPlant": 2, "p.acaciaSapling": 155, "u.enderEye": 9, "p.writableBook": 6, "c.fletchingTable": 16, "p.ironBars": 68, "u.comparator": 1, "q.cookedSalmon": 1, "p.birchLog": 640, "m.ironOre": 1566, "p.slimeBall": 49, "m.peony": 5, "k.magmaCube": 297, "m.spruceStairs": 13, "q.ironShovel": 1, "c.oakFenceGate": 10, "u.junglePlanks": 3, "u.glassPane": 1, "k.drowned": 31, "c.fireworkRocket": 384, "p.warpedWartBlock": 1851, "m.cobbledDeepslateStairs": 15, "u.redStainedGlass": 50, "p.tnt": 3, "m.grayCarpet": 13, "d.skeleton": 1, "m.redstoneLamp": 4, "u.waterBucket": 362, "u.beetroot": 2, "u.scaffolding": 1246, "p.sculkSensor": 16, "p.cobblestoneStairs": 41, "p.chorusFruit": 72, "u.purpurBlock": 28, "c.cartographyTable": 15, "m.birchLeaves": 159, "p.brownShulkerBox": 3, "u.blastFurnace": 306, "u.melon": 3, "m.stickyPiston": 3, "b.stoneHoe": 3, "q.endStoneBrickSlab": 1, "p.ironIngot": 37, "c.netheriteBoots": 1, "g.fillCauldron": 1, "q.crimsonFungus": 1, "m.cobblestone": 427, "u.spruceSapling": 72, "u.woodenSword": 141, "m.flowerPot": 1, "m.redstoneOre": 49, "c.jungleSign": 30, "q.chest": 8, "p.torch": 693, "p.spruceLeaves": 166, "m.hopper": 2, "c.redNetherBrickSlab": 582, "m.redWool": 62, "c.limeCarpet": 24, "u.honeyBottle": 8, "p.blazeRod": 28, "p.apple": 76, "c.darkOakSign": 12, "c.blazePowder": 42, "c.pumpkinSeeds": 64, "m.deepslateBrickStairs": 10, "c.crimsonDoor": 12, "p.pinkWool": 14, "u.bread": 25, "m.redNetherBrickSlab": 34, "g.interactWithAnvil": 51, "q.blackstone": 1, "c.diamondAxe": 8, "c.birchFenceGate": 8, "c.composter": 25, "q.clayBall": 12, "c.brick": 34, "q.oakPlanks": 10, "m.acaciaLeaves": 489, "c.ironBars": 32, "p.clayBall": 1432, "p.redstoneBlock": 5, "p.pufferfish": 20, "u.netherQuartzOre": 749, "u.polishedDioriteStairs": 4, "m.infestedStoneBricks": 156, "q.diamondPickaxe": 3, "k.husk": 3, "c.jungleSlab": 252, "q.smoothStone": 1, "c.redstoneBlock": 325, "c.diamondPickaxe": 19, "c.coalBlock": 103, "p.cookedBeef": 16, "c.spruceDoor": 12, "q.goldenSword": 3, "c.cobbledDeepslate": 30, "p.ironShovel": 1, "b.stoneAxe": 3, "p.copperIngot": 7, "g.raidWin": 1, "tc.use_gold": 0, "u.coalOre": 683, "c.yellowStainedGlassPane": 64, "m.basalt": 477, "cu.interactWithCraftingTable": 916, "c.blackCarpet": 6, "p.inkSac": 85, "b.stonePickaxe": 3, "cu.interactWithAnvil": 51, "p.jungleFence": 2, "p.mushroomStew": 1, "m.greenBed": 1, "p.birchSapling": 242, "p.spruceSapling": 342, "c.limeWool": 32, "u.blackstone": 44, "tc.sneak": 0, "k.glowSquid": 8, "u.stonePickaxe": 1001, "c.redNetherBricks": 614, "m.weepingVinesPlant": 10, "p.amethystBlock": 18, "m.beetroots": 99, "rc_help": 0, "p.magmaBlock": 103, "p.diamondOre": 12, "q.musicDiscCat": 1, "c.crimsonFenceGate": 16, "u.stoneAxe": 291, "m.diorite": 835, "m.tallSeagrass": 18, "c.barrel": 82, "c.whiteTerracotta": 32, "c.smoothStone": 32, "u.darkOakPlanks": 80, "m.gravel": 4695, "p.redstoneLamp": 4, "p.goldIngot": 129, "m.redNetherBrickStairs": 13, "m.redStainedGlassPane": 2, "m.carrots": 196, "u.redstoneLamp": 34, "q.carrot": 6, "cu.killedByDarkPurpleTeam": 1, "u.playerHead": 19, "u.endStoneBricks": 134, "q.hayBlock": 14, "tc.use_wood": 0, "p.junglePlanks": 3, "p.enderPearl": 2032, "p.emeraldOre": 1, "q.netheriteSword": 1, "u.jungleSign": 14, "u.brownShulkerBox": 2, "c.warpedPlanks": 308, "c.ironSword": 2, "u.poppy": 1, "cu.swimOneCm": 723978, "u.purpurSlab": 49, "m.lightGrayCarpet": 8, "c.warpedFenceGate": 16, "k.spider": 55, "u.deepslateCopperOre": 67, "u.cornflower": 1, "m.lightGrayTerracotta": 38, "u.tintedGlass": 83, "u.lever": 5, "p.goldenHelmet": 2, "p.greenBed": 1, "m.birchStairs": 4, "c.birchPlanks": 844, "k.shulker": 84, "u.acaciaPlanks": 8, "c.deepslateBricks": 458, "m.darkOakStairs": 5, "p.craftingTable": 37, "u.deepslateLapisOre": 128, "g.playMinutes": 6356, "m.coalOre": 1479, "m.lightGrayWool": 4, "u.redBed": 1, "q.emeraldBlock": 8, "q.diamondChestplate": 3, "q.lead": 2, "p.bakedPotato": 193, "m.lilac": 37, "u.ladder": 230, "u.azureBluet": 1, "m.largeAmethystBud": 1, "m.cryingObsidian": 5, "c.redWool": 96, "q.sugarCane": 17, "q.glassBottle": 13, "u.yellowShulkerBox": 22, "m.lectern": 78, "p.gunpowder": 107, "p.rail": 390, "m.cobblestoneStairs": 41, "d.creeper": 3, "m.rail": 353, "u.loom": 2, "p.paper": 51, "c.blackTerracotta": 128, "p.smoker": 24, "k.creeper": 26, "p.purpurBlock": 58, "c.enchantedBook": 12, "m.composter": 8, "u.cookedMutton": 120, "c.rawCopper": 19692, "p.suspiciousStew": 1, "m.pinkStainedGlassPane": 8, "c.coal": 63, "m.vine": 169, "c.orangeDye": 64, "p.podzol": 1, "u.elytra": 2, "p.shears": 1, "m.snowBlock": 16, "u.hopperMinecart": 6, "p.strippedOakWood": 1, "q.filledMap": 5, "m.jungleLog": 151, "c.cookedChicken": 50, "m.jackOLantern": 24, "p.cobbledDeepslateStairs": 15, "u.grayCarpet": 45, "q.yellowConcretePowder": 256, "p.obsidian": 152, "p.rabbit": 32, "q.pumpkin": 12, "m.smoothBasalt": 136, "c.whiteWool": 296, "m.birchTrapdoor": 5, "q.playerHead": 4, "u.egg": 1, "m.deepslate": 10843, "p.melonSeeds": 4, "q.porkchop": 36, "u.netherBrickStairs": 24, "m.roseBush": 3, "m.whiteBanner": 3, "cu.crouchOneCm": 777145, "tc.temp": 1561, "c.pinkTerracotta": 128, "p.deepslateTileSlab": 10, "q.crimsonStem": 33, "c.whiteBanner": 45, "m.calcite": 42, "c.redstoneTorch": 229, "u.blackWool": 1, "g.damageDealt": 380916, "c.bakedPotato": 128, "c.blueTerracotta": 128, "c.cutCopperSlab": 16, "p.nautilusShell": 2, "c.craftingTable": 34, "p.dirt": 6565, "c.purpleDye": 64, "q.suspiciousStew": 3, "u.fireworkRocket": 119, "p.jungleSign": 1, "m.dragonWallHead": 1, "q.leatherLeggings": 2, "c.diamondChestplate": 6, "m.yellowTerracotta": 204, "m.soulSand": 118, "u.lightGrayDye": 12, "p.magentaStainedGlass": 2, "m.smoothStone": 3, "m.yellowBed": 17, "u.cactus": 37, "q.diamond": 16, "m.oakDoor": 3, "c.itemFrame": 86, "p.azureBluet": 3, "m.endStoneBricks": 31, "p.allium": 18, "u.cauldron": 1, "c.emeraldBlock": 8, "q.feather": 28, "c.junglePlanks": 2484, "u.blackShulkerBox": 3, "u.repeater": 1, "u.yellowBed": 20, "q.mossBlock": 2, "p.acaciaLog": 366, "p.crackedStoneBricks": 628, "q.cookedCod": 5, "p.lightGrayTerracotta": 38, "p.dripstoneBlock": 362, "c.stonecutter": 4, "c.charcoal": 294, "m.blueIce": 14, "m.magentaStainedGlass": 2, "c.dripstoneBlock": 101, "g.bellRing": 12, "m.oakSapling": 3, "p.salmon": 26, "m.torch": 266, "m.scaffolding": 260, "m.cactus": 23, "c.lightGrayDye": 96, "p.diamond": 806, "u.fireCharge": 2, "color": 0, "p.daylightDetector": 2, "p.netherrack": 11313, "u.whiteShulkerBox": 2, "b.ironPickaxe": 2, "q.cookedMutton": 64, "q.ladder": 392, "c.jungleFence": 60, "q.rawIron": 6, "p.bone": 2781, "u.oakDoor": 1, "m.whiteShulkerBox": 2, "m.redstoneWire": 1, "c.netheriteChestplate": 1, "u.boneMeal": 2123, "c.lightBlueDye": 66, "p.goldenHorseArmor": 1, "c.grayTerracotta": 128, "p.enderChest": 7, "u.woodenShovel": 25, "p.spruceStairs": 13, "c.glassBottle": 282, "q.bow": 4, "k.hoglin": 4, "p.birchStairs": 4, "k.caveSpider": 13, "p.mossBlock": 56, "q.ironOre": 1, "u.netherWartBlock": 6, "m.endStone": 251, "p.deepslateLapisOre": 128, "q.brick": 34, "m.glowstone": 73, "p.beef": 361, "q.writableBook": 6, "c.heavyWeightedPressurePlate": 2, "c.furnace": 43, "g.playTime": 7628182, "m.acaciaPlanks": 8, "c.blackWool": 4, "p.cookedPorkchop": 1, "u.diamondShovel": 18606, "p.lilac": 69, "c.sprucePlanks": 720, "u.piston": 3, "u.cobblestoneStairs": 101, "c.ironBoots": 1, "u.pointedDripstone": 1, "m.shroomlight": 12, "g.tradedWithVillager": 158, "c.goldBlock": 122, "m.cobbledDeepslateSlab": 47, "m.netherQuartzOre": 1516, "c.deepslateBrickStairs": 88, "cu.horseOneCm": 28955, "p.whiteBed": 3, "u.jackOLantern": 120, "p.cactus": 34, "u.snowball": 98, "c.poweredRail": 60, "m.diamondOre": 24, "p.melonSlice": 3295, "q.grayCarpet": 6, "c.cobbledDeepslateStairs": 404, "u.greenBed": 1, "m.fern": 46, "u.cyanShulkerBox": 9, "q.goldenHelmet": 1, "m.pumpkin": 683, "p.phantomMembrane": 28, "q.brownMushroom": 1, "p.jackOLantern": 56, "d.spider": 1, "c.shulkerBox": 32, "q.goldenHoe": 2, "p.whiteBanner": 15, "q.heartOfTheSea": 2, "p.pointedDripstone": 471, "c.pinkStainedGlassPane": 64, "c.spyglass": 2, "u.ironShovel": 252, "q.oakSapling": 21, "c.yellowDye": 132, "k.slime": 30, "u.wheat": 2, "p.diamondPickaxe": 4, "q.fireCharge": 2, "p.rabbitHide": 24, "q.mossyStoneBrickSlab": 1, "u.polishedAndesiteStairs": 4, "u.peony": 5, "p.redNetherBrickSlab": 37, "c.netherBrickStairs": 24, "q.stoneBrickStairs": 128, "u.lapisOre": 72, "g.interactWithFurnace": 628, "c.oakTrapdoor": 16, "u.spruceLog": 56, "q.yellowBed": 2, "q.enderPearl": 8201, "u.wheatSeeds": 624, "p.honeyBottle": 15, "u.bucket": 379, "c.acaciaDoor": 12, "m.deepslateLapisOre": 260, "cu.damageBlockedByShield": 10895, "c.brownShulkerBox": 1, "q.calcite": 5, "p.terracotta": 979, "u.beetrootSeeds": 160, "p.packedIce": 64, "p.stoneSword": 3, "u.yellowConcrete": 96, "c.netherBrickFence": 48, "p.stickyPiston": 13, "c.stoneHoe": 3, "q.stick": 168, "p.birchFence": 2, "m.deadBush": 19, "c.copperBlock": 2272, "u.jungleLog": 43, "q.cobbledDeepslateSlab": 3, "g.interactWithGrindstone": 25, "p.crimsonRoots": 31, "u.oakSign": 100, "u.sweetBerries": 34, "u.crimsonSign": 24, "p.soulSand": 111, "q.sand": 56, "c.pinkDye": 192, "p.book": 300, "p.stoneBricks": 1659, "q.stickyPiston": 3, "p.redstoneTorch": 6, "c.stoneAxe": 4, "p.rawCopper": 19323, "q.potion": 9, "tc.use_stone": 0, "c.pinkStainedGlass": 752, "u.lavaBucket": 9, "c.boneBlock": 689, "q.apple": 12, "u.cobblestone": 1796, "cu.walkUnderWaterOneCm": 1265988, "k.bat": 15, "c.ironShovel": 1, "p.fishingRod": 3, "u.endRod": 1, "m.cornflower": 2, "m.glassPane": 1, "u.pinkWool": 70, "u.warpedWartBlock": 79, "b.shield": 1, "m.cocoa": 252, "m.birchFence": 2, "c.limeDye": 32, "m.sandstone": 56, "u.acaciaLeaves": 307, "u.kelp": 7, "m.cobblestoneWall": 1, "m.magmaBlock": 117, "p.lapisLazuli": 3422, "m.deepslateRedstoneOre": 985, "u.oakPlanks": 47, "q.kelp": 12, "p.smoothBasalt": 150, "m.fire": 24, "c.endStoneBrickSlab": 18, "u.mossCarpet": 3, "c.jungleTrapdoor": 36, "p.sporeBlossom": 2, "c.stonePressurePlate": 10, "c.crimsonFence": 24, "u.pumpkin": 81, "u.cookedPorkchop": 174, "cu.sprintOneCm": 17655129, "c.grayDye": 128, "k.witherSkeleton": 26, "p.goldenCarrot": 12, "p.dragonHead": 2, "p.oakDoor": 3, "c.cookedPorkchop": 93, "q.cobblestone": 315, "c.piston": 64, "m.mossyStoneBricks": 914, "m.jungleLeaves": 185, "c.ironAxe": 8, "p.yellowStainedGlassPane": 4, "p.yellowStainedGlass": 4, "TreeCapitator": 0, "p.porkchop": 251, "p.smithingTable": 1, "u.redWool": 138, "p.lever": 6, "m.bambooSapling": 3, "u.birchSign": 4, "m.oakPlanks": 1063, "p.strippedWarpedStem": 38, "p.cocoaBeans": 1250, "q.beetrootSeeds": 16, "p.egg": 57, "m.purpurBlock": 52, "p.yellowTerracotta": 204, "p.endStone": 250, "m.enderChest": 8, "u.ironSword": 484, "p.carrot": 6628, "cu.interactWithFurnace": 628, "m.stoneBrickWall": 2, "p.cobbledDeepslateSlab": 42, "c.oakFence": 27, "b.ironAxe": 2, "q.stonecutter": 1, "u.mushroomStew": 1, "u.observer": 8, "p.heartOfTheSea": 3, "c.darkOakTrapdoor": 24, "c.redNetherBrickStairs": 148, "u.smoothBasalt": 13, "m.kelpPlant": 200, "c.air": 0, "p.woodenAxe": 1, "p.chicken": 226, "u.daylightDetector": 2, "m.ironBars": 68, "m.oakFence": 700, "c.polishedDioriteStairs": 16, "m.cyanShulkerBox": 9, "u.suspiciousStew": 5, "q.enderEye": 1, "k.zombie": 211, "p.diorite": 860, "p.oxeyeDaisy": 1, "m.strippedSpruceLog": 32, "c.birchDoor": 12, "g.drop": 1031, "g.tuneNoteblock": 50, "p.darkOakPlanks": 11, "m.smoothStoneSlab": 39, "m.enchantingTable": 2, "m.seagrass": 37, "c.spruceStairs": 124, "u.woodenAxe": 143, "m.boneBlock": 13, "q.goldBlock": 8, "c.pumpkinPie": 32, "u.torch": 4417, "m.twistingVines": 2, "p.rawGold": 860, "m.endStoneBrickSlab": 1, "p.oakSign": 26, "p.bow": 95, "c.leatherBoots": 7, "m.acaciaLog": 111, "m.warpedWartBlock": 318, "m.crimsonStem": 61, "c.goldIngot": 511, "p.grayCarpet": 6, "c.oakSlab": 6, "p.grass": 1, "c.detectorRail": 60, "q.bookshelf": 1, "m.poweredRail": 4, "c.purpurPillar": 10, "p.floweringAzalea": 2, "m.redstoneBlock": 6, "c.loom": 8, "u.pinkStainedGlass": 695, "tc.valid": 0, "c.shears": 24, "c.enderChest": 1, "c.hayBlock": 63, "tc.use_diamond": 0, "m.crackedStoneBricks": 641, "g.jump": 78902, "p.copperBlock": 2, "p.painting": 1, "p.deepslateTileStairs": 3, "p.deepslateBrickSlab": 8, "m.chain": 2, "q.rabbit": 4, "m.redNetherBricks": 13, "b.stoneSword": 1, "u.warpedStem": 40, "m.yellowStainedGlassPane": 4, "m.blueOrchid": 39, "p.jungleSlab": 9, "q.goldenBoots": 1, "u.deepslateIronOre": 384, "u.stoneBrickWall": 24, "p.woodenHoe": 1, "p.stoneBrickStairs": 5, "u.netherBricks": 4, "c.birchFence": 24, "m.ironDoor": 1, "m.strippedBirchLog": 32, "tc.use_iron": 0, "c.pinkWool": 16, "m.chest": 215, "c.birchStairs": 40, "q.whiteWool": 34, "u.enderChest": 8, "q.leatherBoots": 4, "m.blackShulkerBox": 3, "p.itemFrame": 3, "c.repeater": 32, "p.cauldron": 7, "u.dirt": 1742, "c.copperIngot": 257, "p.charcoal": 1498, "u.goldBlock": 2, "p.mossyStoneBrickSlab": 1, "m.sugarCane": 1479, "c.cyanDye": 2, "m.deepslateIronOre": 607, "u.stoneStairs": 250, "p.chestMinecart": 4, "q.waterBucket": 2, "u.warpedSign": 2, "q.andesite": 13, "m.wallTorch": 140, "u.diorite": 100, "c.amethystBlock": 3, "m.oakWallSign": 22, "c.polishedGraniteStairs": 64, "q.redstone": 36, "u.map": 2, "u.milkBucket": 8, "p.redTerracotta": 203, "m.sunflower": 18, "p.blastFurnace": 12, "u.diamondHoe": 3646, "m.crimsonFungus": 1, "c.oakSign": 84, "u.dripstoneBlock": 200, "p.darkOakSlab": 7, "p.oakFence": 681, "u.ironPickaxe": 1777, "p.deepslateBricks": 19, "u.redstoneBlock": 22, "p.sand": 4929, "p.chain": 2, "q.bowl": 1, "c.cookedSalmon": 1, "m.stoneBrickSlab": 9, "p.glowstone": 72, "p.glowstoneDust": 57, "p.spiderEye": 77, "c.diamond": 315, "u.bamboo": 228, "p.ironSword": 1, "q.poisonousPotato": 37, "m.strippedCrimsonStem": 32, "m.bookshelf": 121, "u.stoneHoe": 290, "b.stoneShovel": 2, "u.darkOakSapling": 207, "q.scaffolding": 128, "g.totalWorldTime": 7628182, "c.darkOakFence": 36, "u.jungleSapling": 99, "p.darkOakLog": 2194, "q.blueIce": 14, "u.sandstone": 12, "p.greenCarpet": 3, "c.cutCopperStairs": 128, "q.vine": 64, "c.cookedCod": 2, "u.craftingTable": 60, "p.orangeTerracotta": 165, "m.junglePlanks": 3, "u.poweredRail": 32, "q.diamondBoots": 1, "u.spruceStairs": 79, "g.deathCount": 10, "m.yellowStainedGlass": 4, "m.blueWool": 2, "u.fishingRod": 121, "c.stick": 3024, "q.sandstone": 3, "u.deepslateGoldOre": 364, "q.packedIce": 64, "p.diamondSword": 3, "p.chest": 232, "u.diamondSword": 7840, "p.stonecutter": 3, "m.deepslateBrickSlab": 8, "p.lightGrayCarpet": 8, "m.twistingVinesPlant": 7, "u.grindstone": 12, "q.bamboo": 150, "p.ladder": 247, "m.anvil": 2, "m.oakLeaves": 359, "u.cookedBeef": 108, "m.tintedGlass": 3, "m.yellowConcrete": 96, "m.azalea": 3, "u.granite": 107, "m.goldOre": 106, "m.deepslateGoldOre": 629, "m.obsidian": 136, "q.ironNugget": 42, "c.emerald": 146, "c.lectern": 32, "m.strippedOakLog": 32, "u.lightBlueWool": 2, "m.deepslateTileStairs": 3, "q.grayWool": 41, "q.shield": 1, "u.limeWool": 10, "c.snowBlock": 62, "m.darkOakSapling": 11, "p.blackShulkerBox": 3, "c.goldenCarrot": 64, "p.whiteWool": 389, "q.gunpowder": 22, "q.pointedDripstone": 19, "q.rabbitHide": 4, "u.polishedAndesite": 219, "m.kelp": 23, "c.hopper": 38, "c.ironDoor": 6, "u.jungleFence": 22, "u.oakLeaves": 6, "q.netherrack": 388, "c.chain": 90, "q.potato": 9, "p.composter": 8, "u.sugarCane": 78, "c.orangeShulkerBox": 1, "m.grassBlock": 5349, "g.talkedToVillager": 159, "u.netherrack": 2037, "p.potato": 7241, "u.redstoneTorch": 13, "p.wheat": 1419, "c.ironNugget": 423, "g.leaveGame": 80, "u.whiteBanner": 17, "p.diamondBlock": 1, "u.diamondAxe": 9393, "m.melon": 707, "c.chest": 172, "q.stoneBrickSlab": 481, "cu.sleepInBed": 263, "p.oakPlanks": 1119, "p.barrel": 21, "u.woodenPickaxe": 48, "m.goldBlock": 8, "u.smoker": 100, "u.whiteBed": 3, "q.leatherHelmet": 1, "m.blastFurnace": 292, "m.cutSandstone": 64, "u.redNetherBrickStairs": 161, "u.stoneBricks": 178, "u.cutSandstone": 412, "p.glowBerries": 9, "p.jungleTrapdoor": 36, "u.sunflower": 3, "p.oakLeaves": 187, "p.cornflower": 3, "p.deepslateGoldOre": 267, "q.diorite": 6, "u.darkOakSlab": 7, "p.cartographyTable": 1, "cu.interactWithGrindstone": 25, "p.cyanShulkerBox": 9, "p.deepslateBrickStairs": 9, "m.endRod": 1, "q.string": 42, "m.chorusPlant": 5, "p.poppy": 29, "u.calcite": 6, "c.jukebox": 1, "u.cookedCod": 2, "p.repeater": 15, "q.chicken": 38, "c.darkOakPlanks": 630, "p.emerald": 11, "c.diamondBoots": 6, "p.blackWool": 8, "p.endRod": 1, "m.sprucePlanks": 14, "u.cobbledDeepslateSlab": 1371, "m.carvedPumpkin": 80, "p.birchTrapdoor": 37, "u.orangeShulkerBox": 1, "p.blackstone": 382, "c.whiteDye": 215, "p.crimsonStem": 204, "c.cookedMutton": 68, "q.stoneAxe": 4, "p.spruceLog": 1345, "c.ladder": 360, "m.mossCarpet": 3, "c.grindstone": 8, "p.quartz": 1494, "q.jungleLog": 128, "u.birchLog": 32, "c.yellowStainedGlass": 288, "m.warpedStem": 98, "u.ironDoor": 3, "p.redStainedGlass": 4, "k.squid": 22, "c.whiteBed": 2, "u.snowBlock": 10, "u.smithingTable": 2, "m.polishedAndesite": 32, "c.bookshelf": 106, "q.dirt": 174, "m.orangeTerracotta": 165, "c.acaciaStairs": 60, "u.oakFenceGate": 3, "p.ironNugget": 20, "m.greenCarpet": 3, "u.sprucePlanks": 70, "p.deepslateRedstoneOre": 493, "c.magentaTerracotta": 128, "q.stone": 15, "c.shield": 13, "g.play": 6356, "p.purpurSlab": 6, "u.potion": 11, "p.coalOre": 578, "p.honeycomb": 21, "c.fermentedSpiderEye": 52, "p.scaffolding": 1036, "c.lantern": 39, "u.painting": 1, "m.birchPlanks": 29, "p.yellowBed": 18, "m.brownMushroomBlock": 268, "p.saddle": 4, "p.cookie": 1, "q.obsidian": 2, "c.redStainedGlass": 64, "c.glassPane": 160, "c.darkOakDoor": 12, "g.inspectDispenser": 12, "c.endStoneBricks": 234, "u.andesite": 110, "m.lever": 3, "p.smoothStone": 131, "c.torch": 4432, "k.bee": 1, "q.woodenSword": 1, "q.netheriteIngot": 4, "cu.playTime": 7628182, "u.lectern": 78, "u.cobbledDeepslateStairs": 329, "c.acaciaFenceGate": 8, "u.cutCopper": 219, "g.damageBlockedByShield": 10895, "p.polishedAndesite": 32, "u.hopper": 36, "c.book": 372, "u.stoneBrickSlab": 34, "p.blueWool": 2, "q.carvedPumpkin": 1, "u.rail": 165, "m.redTerracotta": 203, "c.jungleStairs": 40, "p.ironDoor": 1, "q.dragonEgg": 1, "u.birchBoat": 22, "m.mossBlock": 49, "u.stickyPiston": 3, "m.craftingTable": 38, "q.gravel": 57, "c.yellowConcretePowder": 256, "p.bowl": 1, "p.smoothStoneSlab": 44, "p.musicDiscBlocks": 2, "g.openShulkerBox": 363, "g.interactWithSmoker": 258, "k.pig": 77, "u.tuff": 245, "g.interactWithBrewingstand": 89, "cu.minecartOneCm": 111482, "m.ancientDebris": 18, "m.oakStairs": 2, "q.painting": 1, "g.air": 300, "q.endStoneBricks": 4, "m.darkOakLog": 150, "p.grindstone": 9, "u.endStone": 55, "c.lightBlueTerracotta": 128, "u.birchFence": 4, "p.shroomlight": 116, "c.stoneShovel": 6, "c.redStainedGlassPane": 64, "p.bookshelf": 24, "c.goldNugget": 1199, "u.anvil": 6, "m.sweetBerryBush": 26, "p.deepslateCoalOre": 8, "m.packedIce": 64, "p.netherBrick": 512, "p.whiteTerracotta": 21, "u.porkchop": 3, "u.polishedDiorite": 206, "p.stoneSlab": 16, "u.apple": 5, "m.granite": 915, "p.cutCopper": 6, "u.birchPlanks": 156, "q.mutton": 69, "d.enderman": 1, "q.goldNugget": 10, "g.potFlowers": 2, "m.furnace": 366, "u.yellowStainedGlassPane": 48, "k.chicken": 133, "u.lapisBlock": 8, "u.boneBlock": 81, "m.waterCauldron": 7, "u.deepslateBrickSlab": 46, "g.eatCakeSlice": 3, "p.warpedNylium": 51, "q.paper": 9, "m.spruceLog": 63, "q.bone": 1, "m.grindstone": 9, "u.oakStairs": 22, "p.sandstone": 56, "u.amethystBlock": 81, "u.barrel": 93, "c.purpleTerracotta": 128, "c.crimsonPlanks": 348, "p.pinkTulip": 6, "q.flintAndSteel": 1, "q.arrow": 37, "m.podzol": 334, "b.leatherLeggings": 1, "c.birchSlab": 18, "q.coal": 1, "p.sprucePlanks": 14, "u.melonSeeds": 32, "u.furnace": 372, "c.netheriteHelmet": 1, "m.whiteBed": 3, "m.poppy": 2, "p.fireCharge": 1, "m.darkOakLeaves": 194, "m.pottedPoppy": 1, "q.copperIngot": 1, "p.basalt": 442, "u.chain": 26, "p.roseBush": 165, "q.leatherChestplate": 6, "q.rabbitFoot": 2, "k.rabbit": 17, "p.loom": 1, "p.granite": 1017, "m.brownShulkerBox": 2, "q.granite": 4, "k.traderLlama": 10, "c.spruceFenceGate": 8, "c.sandstone": 448, "m.mossyCobblestone": 48, "p.cobblestoneWall": 1, "u.emeraldBlock": 2, "p.leatherBoots": 4, "p.redMushroom": 82, "m.pinkStainedGlass": 9, "c.woodenSword": 4, "p.stoneButton": 7, "u.glowInkSac": 14, "p.tuff": 899, "c.glass": 64, "u.stoneSword": 76, "p.stoneBrickWall": 2, "p.darkOakSapling": 285, "p.gravel": 3256, "p.cookedCod": 7, "c.glisteringMelonSlice": 64, "cu.potFlower": 2, "p.emeraldBlock": 2, "p.grayWool": 83, "c.blackDye": 124, "c.stoneBricks": 256, "u.grassBlock": 540, "b.goldenHelmet": 1, "u.deepslateBrickStairs": 117, "u.darkOakStairs": 12, "u.deepslateBricks": 328, "k.sheep": 159, "c.leatherHelmet": 2, "u.endStoneBrickSlab": 71, "m.observer": 3, "c.diamondSword": 7, "m.polishedGraniteSlab": 4, "c.honeyBlock": 23, "m.jungleWallSign": 1, "c.ironBlock": 259, "m.blackCarpet": 1, "c.oakDoor": 12, "c.polishedBasalt": 64, "k.ghast": 22, "m.barrel": 21, "b.leatherHelmet": 2, "m.birchLog": 153, "p.amethystShard": 328, "b.ironShovel": 1, "p.boneMeal": 308, "u.whiteTerracotta": 4, "c.leather": 64, "u.bakedPotato": 301, "b.woodenSword": 5, "m.glowLichen": 3, "c.sprucePressurePlate": 2, "q.netheriteChestplate": 1, "u.obsidian": 67, "q.grass": 1, "u.cocoaBeans": 277, "p.rottenFlesh": 575, "m.stoneSlab": 16, "p.cod": 51, "u.netherWart": 120, "p.enchantingTable": 2, "p.darkOakLeaves": 194, "p.arrow": 2434, "q.enchantedBook": 1, "p.kelp": 1674, "u.melonSlice": 12, "p.cutSandstoneSlab": 35, "m.playerHead": 5, "m.warpedNylium": 51, "m.clay": 371, "m.stoneStairs": 10, "c.jungleFenceGate": 8, "c.smithingTable": 8, "q.torch": 304, "p.magmaCream": 135, "u.polishedGraniteSlab": 52, "u.cookedChicken": 36, "p.goldBlock": 8, "m.sporeBlossom": 2, "cu.interactWithLoom": 1, "c.paper": 2193, "c.ironIngot": 820, "p.pumpkin": 737, "u.deepslateDiamondOre": 356, "m.ironBlock": 9, "m.pointedDripstone": 257, "p.enchantedBook": 24, "m.purpurSlab": 3, "c.polishedAndesite": 233, "m.copperBlock": 2, "p.mossyStoneBricks": 927, "g.sneakTime": 295317, "p.cryingObsidian": 7, "c.blastFurnace": 16, "p.stone": 3320, "c.warpedDoor": 12, "c.netheriteSword": 2, "u.stonecutter": 3, "q.flint": 718, "p.darkOakStairs": 5, "q.boneMeal": 9, "p.grassBlock": 2279, "c.bucket": 23, "c.ironLeggings": 2, "c.stickyPiston": 32, "c.lightGrayCarpet": 60, "c.painting": 1, "k.wolf": 5, "m.oakFenceGate": 1, "c.cauldron": 1, "u.magmaBlock": 53, "p.crossbow": 2, "p.cookedRabbit": 1, "cu.aviateOneCm": 9949724, "u.birchSapling": 58, "p.vine": 128, "m.shulkerBox": 68, "u.cutSandstoneSlab": 91, "c.netheriteLeggings": 1, "p.spruceSign": 6, "g.mobKills": 13353, "cu.tradedWithVillager": 158, "u.polishedGraniteStairs": 55, "p.diamondHelmet": 1, "cusNetPor": 0, "q.deepslateBrickStairs": 1, "m.strippedDarkOakLog": 32, "u.stoneSlab": 184, "g.animalsBred": 164, "p.goldenApple": 5, "p.ironOre": 830, "p.pumpkinSeeds": 323, "p.playerHead": 79, "c.netherBrickSlab": 60, "u.spyglass": 20, "p.snowball": 16, "c.cookedBeef": 29, "p.ironBlock": 12, "m.potatoes": 306, "m.spawner": 5, "c.leatherChestplate": 4, "u.potato": 413, "q.lapisOre": 20, "p.netherWartBlock": 1824, "cu.climbOneCm": 523291, "q.diamondSword": 2, "q.goldIngot": 1, "m.stonecutter": 3, "p.netherGoldOre": 219, "k.strider": 3, "g.level": 26, "q.lapisLazuli": 3, "k.endermite": 1, "q.wheatSeeds": 66, "g.openChest": 6403, "q.crimsonRoots": 30, "c.crimsonSign": 36, "u.honeyBlock": 14, "p.redBed": 1, "u.basalt": 280, "c.brownDye": 64, "c.string": 1076, "c.diamondHoe": 3, "p.strippedSpruceLog": 32, "u.enchantingTable": 4, "m.diamondBlock": 1, "u.pinkStainedGlassPane": 46, "u.composter": 13, "m.deepslateBricks": 19, "c.rawCopperBlock": 2040, "m.blackstone": 392, "m.darkOakSlab": 7, "c.ironChestplate": 1, "c.warpedFence": 24, "c.netherBricks": 256, "m.warpedFungus": 19, "q.stoneSword": 1, "p.blackCarpet": 2, "k.wanderingTrader": 5, "p.crimsonNylium": 60, "c.minecart": 6, "c.sugar": 210, "m.tallGrass": 163, "k.enderman": 10619, "c.cutSandstone": 512, "u.deepslateRedstoneOre": 429, "p.polishedGraniteSlab": 8, "u.stoneButton": 2, "p.blueIce": 14, "m.dirt": 2361, "m.tuff": 887, "u.lightGrayCarpet": 68, "b.leatherBoots": 1, "c.stoneStairs": 256, "q.smoothBasalt": 6, "c.diamondShovel": 8, "p.goldenBoots": 1, "u.whiteWool": 29, "m.smoker": 104, "u.ironBlock": 12, "q.beef": 22, "m.cobweb": 359, "u.leatherBoots": 1, "p.glisteringMelonSlice": 4, "c.acaciaPlanks": 420, "m.pinkWool": 2, "m.jungleSlab": 9, "p.deepslateCopperOre": 67, "c.tintedGlass": 128, "m.jungleSapling": 13, "p.acaciaPlanks": 8, "q.cobblestoneWall": 1, "k.blaze": 20, "u.flowerPot": 5, "p.poweredRail": 8, "c.oakStairs": 60, "u.ironBars": 7, "p.melon": 61, "m.polishedGraniteStairs": 7, "p.nameTag": 3, "q.allium": 18, "q.bucket": 1, "c.warpedSign": 12, "p.cutSandstone": 63, "u.stoneShovel": 558, "q.cobbledDeepslate": 5, "d.player": 1, "m.brownMushroom": 32, "u.darkOakSign": 6, "g.interactWithLoom": 1, "p.snowBlock": 16, "q.amethystBlock": 6, "p.birchBoat": 22, "q.oakFence": 6, "m.deepslateDiamondOre": 650, "c.flowerPot": 2, "p.oakLog": 580, "p.strippedDarkOakLog": 32, "m.mushroomStem": 39, "m.playerWallHead": 12, "m.deepslateTileSlab": 9, "p.crimsonFungus": 1, "m.tripwire": 5, "m.redBed": 1, "p.orangeShulkerBox": 1, "c.honeycombBlock": 12, "m.stoneBricks": 1486, "p.lantern": 17, "p.birchLeaves": 150, "p.waterBucket": 2, "u.cookie": 1, "p.bucket": 3, "p.minecart": 8, "m.heavyWeightedPressurePlate": 2, "p.calcite": 53, "p.mutton": 494, "u.vine": 4, "q.goldenChestplate": 3, "g.hunger": 12, "u.stoneBrickStairs": 39, "u.polishedGranite": 52, "p.acaciaLeaves": 475, "c.enchantingTable": 2, "rc_display": 0, "u.bow": 230, "m.netherWart": 100, "m.crimsonRoots": 31, "p.leather": 253, "g.health": 20, "u.string": 1, "u.lantern": 14, "p.map": 7, "p.stonePickaxe": 1, "p.ancientDebris": 31, "u.minecart": 8, "c.stoneSword": 1, "p.strippedBirchLog": 32, "c.cutCopper": 544, "u.shield": 330, "p.blueOrchid": 47, "u.pumpkinSeeds": 32, "m.cartographyTable": 1, "u.warpedFungus": 5, "cu.interactWithBrewingstand": 89, "q.weepingVines": 35, "c.woodenAxe": 3, "cu.interactWithBlastFurnace": 681, "p.peony": 69, "m.deepslateCoalOre": 8, "m.netherGoldOre": 449, "p.mossyCobblestone": 49, "u.copperOre": 2478, "q.wheat": 13, "p.chiseledStoneBricks": 3, "u.crimsonStem": 32, "g.enchantItem": 189, "m.crimsonNylium": 70, "q.spyglass": 1, "u.birchStairs": 4, "c.quartzBlock": 352, "u.goldOre": 59, "u.deepslate": 3417, "p.comparator": 15, "p.woodenSword": 2, "g.armor": 20, "p.polishedGraniteStairs": 7, "c.blackShulkerBox": 1, "p.copperOre": 2805, "k.zombieVillager": 6, "u.goldenHelmet": 1, "m.netherrack": 12403, "p.potion": 5, "c.stonePickaxe": 12, "m.emeraldOre": 1, "p.anvil": 2, "p.cobbledDeepslate": 4873, "c.writableBook": 64, "p.hopper": 4, "m.terracotta": 980, "tc.disabled": 0, "c.lever": 37, "u.redMushroom": 1, "m.grass": 1443, "m.chiseledStoneBricks": 3, "c.lapisBlock": 353, "c.cobbledDeepslateSlab": 1392, "p.lightGrayWool": 90, "m.warpedRoots": 28, "u.redStainedGlassPane": 2, "p.whiteShulkerBox": 4, "c.scaffolding": 636, "u.diamondBlock": 9, "u.soulSand": 85, "u.blackCarpet": 2, "p.pinkStainedGlass": 25, "k.pillager": 26, "u.spruceSign": 14, "g.playerKills": 2, "m.piston": 2, "c.acaciaSlab": 72, "u.acaciaSapling": 50, "c.redstoneLamp": 38, "m.acaciaSapling": 2, "c.stoneBrickSlab": 505, "q.leather": 9, "m.spruceLeaves": 236, "m.deepslateCopperOre": 160, "p.piston": 2, "u.glassBottle": 158, "q.dripstoneBlock": 5, "q.fishingRod": 2, "m.yellowShulkerBox": 22, "u.glass": 1, "u.diamondOre": 12, "p.oakStairs": 2, "cu.flyOneCm": 16772922, "p.sunflower": 147, "p.ghastTear": 12, "m.dandelion": 6, "p.netherWart": 2020, "duraPing": 0, "c.blueDye": 124, "m.netherBricks": 4, "q.inkSac": 1, "c.smoker": 14, "u.darkOakFence": 1, "u.enderPearl": 197, "u.netheriteSword": 259, "u.oakSapling": 35, "cu.interactWithStonecutter": 31, "m.allium": 18, "g.timeSinceDeath": 806851, "u.warpedPlanks": 12, "p.string": 537, "p.twistingVines": 38, "p.goldNugget": 1836, "p.dandelion": 27, "u.oakLog": 34, "p.deepslate": 6070, "u.shroomlight": 4, "q.bakedPotato": 20, "c.polishedDeepslate": 544, "c.birchTrapdoor": 10, "u.stone": 1978, "u.dispenser": 5, "c.cookedRabbit": 2, "m.whiteTerracotta": 21, "u.sprucePressurePlate": 2, "u.cobbledDeepslate": 423, "c.glowItemFrame": 32, "c.crossbow": 1, "c.polishedAndesiteStairs": 16, "m.polishedDiorite": 20, "p.feather": 256, "p.yellowConcrete": 348, "u.sand": 257, "m.redMushroomBlock": 313, "u.cartographyTable": 2, "m.darkOakPlanks": 11, "p.flowerPot": 3, "u.oakFence": 39, "c.darkOakStairs": 56, "c.nameTag": 11, "p.stoneBrickSlab": 15, "p.hopperMinecart": 2, "cu.interactWithSmithingTable": 6, "m.copperOre": 5540, "p.observer": 17, "tc.damage": 799, "c.observer": 64, "c.driedKelpBlock": 128, "p.beetrootSeeds": 5391, "cu.walkOnWaterOneCm": 276333, "p.strippedCrimsonStem": 32, "m.stoneBrickStairs": 5, "u.gravel": 81, "m.loom": 1, "q.deepslate": 16, "u.honeycombBlock": 12, "u.jungleTrapdoor": 36, "m.amethystCluster": 96, "g.damageTaken": 20819, "m.strippedWarpedStem": 38, "m.amethystBlock": 12, "p.trident": 1, "c.cutSandstoneSlab": 234, "q.diamondAxe": 4, "m.andesite": 823, "m.orangeShulkerBox": 1, "q.stoneHoe": 1, "c.comparator": 32, "p.dragonEgg": 1, "u.copperBlock": 62, "m.netherWartBlock": 572, "g.interactWithBlastFurnace": 681, "c.bow": 125, "m.weepingVines": 8, "u.noteBlock": 1, "p.deepslateDiamondOre": 294, "c.boneMeal": 9705, "c.diamondLeggings": 6, "p.beetroot": 1342, "m.sculkSensor": 21, "p.deepslateIronOre": 257, "m.smithingTable": 1, "u.ironOre": 842, "p.endStoneBricks": 31, "c.wheat": 1038, "p.stoneShovel": 1, "c.acaciaFence": 54, "p.coal": 1743, "p.cookedChicken": 11, "c.stoneBrickStairs": 168, "u.redstoneOre": 25, "g.sleepInBed": 263, "q.rottenFlesh": 133, "c.darkOakSlab": 12, "p.furnace": 85, "c.cyanShulkerBox": 2, "c.goldenHelmet": 4, "m.netherSprouts": 2, "q.cauldron": 7, "u.strippedWarpedStem": 6, "c.leatherLeggings": 4, "c.spruceSign": 18, "p.goldOre": 47, "cu.talkedToVillager": 159, "u.carrot": 258, "p.warpedFungus": 19, "c.dispenser": 64, "m.cutCopper": 7, "m.floweringAzalea": 2, "q.fireworkRocket": 64, "q.tuff": 3, "k.skeleton": 1184, "p.honeyBlock": 6, "c.melon": 6, "q.spiderEye": 3, "p.jungleSapling": 266, "c.anvil": 8, "c.melonSeeds": 48, "p.oakFenceGate": 1, "p.redstone": 2922, "p.goldenHoe": 1, "u.woodenHoe": 16, "m.whiteWallBanner": 2, "m.honeyBlock": 2, "m.hayBlock": 169, "u.podzol": 1, "c.oakPlanks": 708, "cu.boatOneCm": 5465467, "m.stoneButton": 1, "p.shulkerBox": 68, "p.rawIron": 2291, "b.woodenPickaxe": 1, "p.cobblestone": 4209, "c.diamondBlock": 75, "g.timeSinceRest": 476, "p.glowInkSac": 57, "k.cow": 118, "p.brownWool": 6, "p.tintedGlass": 3, "p.stick": 2472, "c.warpedTrapdoor": 16, "p.shulkerShell": 108, "p.sugarCane": 2711, "m.ladder": 1, "c.polishedDiorite": 233, "p.redstoneOre": 25, "q.elytra": 6, "p.filledMap": 5, "c.candle": 42, "g.openEnderchest": 115, "p.poisonousPotato": 27, "u.netherBrickSlab": 4, "c.polishedGraniteSlab": 48, "c.deepslateBrickSlab": 90, "c.yellowShulkerBox": 1, "c.magentaDye": 64, "q.ironSword": 1, "b.ironSword": 2, "m.dripstoneBlock": 352, "q.ironBlock": 8, "b.woodenAxe": 3, "c.grayCarpet": 102, "c.lightBlueWool": 2, "u.shears": 3440, "cu.fallOneCm": 1378109, "cu.walkOneCm": 25586156, "u.lightGrayWool": 4, "p.pinkStainedGlassPane": 20, "m.polishedGranite": 2, "c.spruceFence": 24, "c.acaciaSign": 12, "c.lightGrayWool": 32, "u.ironAxe": 328, "p.amethystCluster": 54, "p.yellowShulkerBox": 22, "m.jungleTrapdoor": 36, "u.lead": 1, "p.netherQuartzOre": 749, "p.musicDiscFar": 1, "u.cookedSalmon": 3, "c.deepslateTiles": 104, "u.yellowStainedGlass": 200, "p.elytra": 8, "p.lapisOre": 92, "p.redWool": 64, "p.sweetBerries": 158, "p.polishedGranite": 2, "m.farmland": 32, "p.netherBricks": 4, "c.stoneButton": 24, "p.redNetherBrickStairs": 13, "p.carvedPumpkin": 79, "m.cobbledDeepslate": 25, "m.strippedOakWood": 1, "tc.use_netherite": 0, "g.interactWithStonecutter": 31, "p.hayBlock": 189, "p.diamondShovel": 1, "u.darkOakLog": 33, "p.lead": 7, "p.redStainedGlassPane": 2, "q.limeCarpet": 25, "p.weepingVines": 103, "p.stoneStairs": 11, "m.sand": 4538, "m.cutSandstoneSlab": 25, "c.noteBlock": 30, "u.heavyWeightedPressurePlate": 4, "c.enderEye": 10, "p.birchPlanks": 29, "g.inspectHopper": 128, "p.polishedDiorite": 19, "p.boneBlock": 13, "m.stone": 6758, "p.redNetherBricks": 13, "u.glowstone": 16, "p.bamboo": 14468, "c.diamondHelmet": 6, "m.wheat": 250, "m.oakLog": 162, "q.charcoal": 160, "p.cookedMutton": 9, "m.lantern": 2, "c.lapisLazuli": 1521, "c.hopperMinecart": 3, "m.dirtPath": 380, "u.chest": 280, "c.birchSign": 24, "u.warpedDoor": 2, "c.redstone": 765, "u.netherGoldOre": 219, "c.polishedGranite": 210, "u.birchTrapdoor": 37, "p.jungleLeaves": 162, "p.bread": 13, "u.itemFrame": 1, "u.smoothStone": 2, "m.birchSapling": 3, "b.shears": 5, "p.oakSapling": 486, "p.brownMushroom": 113, "p.flintAndSteel": 3, "u.flintAndSteel": 4, "p.strippedOakLog": 32, "p.heavyWeightedPressurePlate": 2, "u.deepslateTileStairs": 89, "u.crackedStoneBricks": 1, "c.cobblestoneStairs": 128, "p.diamondAxe": 3, "c.dropper": 128, "u.greenCarpet": 3, "p.rabbitFoot": 4, "u.bookshelf": 179, "p.warpedStem": 308, "c.stoneSlab": 282, "p.flint": 1706, "g.interactWithSmithingTable": 6}, "svioletg": {"cu.interactWithGrindstone": 17, "m.powderSnow": 100, "u.beef": 3, "c.pinkShulkerBox": 1, "c.ironPickaxe": 2, "p.deepslateBrickStairs": 7, "q.string": 7, "u.diamondPickaxe": 28495, "p.poppy": 2, "m.bamboo": 23, "cu.interactWithSmoker": 12, "c.netheriteIngot": 1, "u.deepslateTiles": 195, "c.ironHelmet": 4, "c.stone": 3, "g.openBarrel": 138, "p.wheatSeeds": 184, "p.diamondChestplate": 1, "u.rottenFlesh": 6, "k.skeletonHorse": 1, "p.repeater": 1, "g.interactWithCraftingTable": 211, "c.darkOakPlanks": 8, "p.emerald": 52, "c.redDye": 2, "u.shulkerBox": 12, "p.blackWool": 12, "m.lapisOre": 27, "p.smoothRedSandstone": 1, "p.blackstone": 137, "c.whiteDye": 9, "p.spruceLog": 652, "q.diamondShovel": 1, "c.ladder": 132, "p.lectern": 3, "p.quartz": 1086, "u.birchLog": 35, "u.deepslateTileSlab": 10, "p.andesite": 114, "u.enderEye": 15, "k.squid": 1, "p.redShulkerBox": 1, "q.glowLichen": 9, "u.musicDiscBlocks": 1, "p.ironBars": 4, "b.ironChestplate": 2, "u.snowBlock": 28, "p.birchLog": 548, "u.smithingTable": 1, "q.dirt": 158, "m.crackedDeepslateTiles": 1, "c.redShulkerBox": 1, "m.ironOre": 514, "p.ironNugget": 5, "m.greenCarpet": 1, "k.magmaCube": 47, "p.deepslateRedstoneOre": 14, "q.poppy": 2, "c.shield": 3, "u.glassPane": 4, "g.play": 4800, "d.drowned": 1, "k.drowned": 6, "c.fireworkRocket": 171, "u.goldenBoots": 1, "p.tnt": 9, "u.potion": 6, "d.skeleton": 28, "p.coalOre": 445, "u.waterBucket": 72, "u.scaffolding": 632, "p.scaffolding": 378, "c.lantern": 32, "m.polishedBlackstoneBricks": 7, "m.birchPlanks": 363, "m.birchLeaves": 9, "u.blastFurnace": 8, "p.saddle": 1, "m.stickyPiston": 3, "c.glassPane": 224, "p.ironIngot": 11, "c.darkOakDoor": 3, "u.andesite": 15, "b.ironHelmet": 2, "c.torch": 1068, "u.crossbow": 3, "cu.playTime": 5760815, "u.lectern": 3, "p.netheritePickaxe": 2, "m.cobblestone": 253, "g.damageBlockedByShield": 7895, "u.spruceSapling": 37, "u.hopper": 23, "c.book": 1, "m.redstoneOre": 7, "p.tripwireHook": 1, "p.ironDoor": 5, "p.torch": 364, "m.hopper": 11, "m.craftingTable": 19, "k.silverfish": 3, "p.blazeRod": 8, "p.apple": 2, "u.blueDye": 5, "c.blazePowder": 6, "m.deepslateBrickStairs": 9, "c.armorStand": 1, "u.bread": 21, "c.campfire": 4, "g.interactWithAnvil": 21, "p.musicDiscBlocks": 1, "g.openShulkerBox": 13, "g.interactWithSmoker": 12, "c.diamondAxe": 2, "u.tuff": 26, "c.woodenHoe": 1, "q.clayBall": 77, "p.stonePressurePlate": 1, "q.oakPlanks": 25, "p.polishedBlackstoneBricks": 3, "g.interactWithBrewingstand": 9, "m.ancientDebris": 5, "p.clayBall": 205, "g.air": 300, "q.snowball": 49, "k.enderDragon": 1, "g.interactWithLectern": 1, "c.blackBed": 1, "k.husk": 1, "c.redstoneBlock": 40, "c.diamondPickaxe": 16, "u.endStone": 1, "u.birchFence": 113, "c.flintAndSteel": 1, "c.goldNugget": 1026, "q.shulkerBox": 1, "b.stoneAxe": 1, "p.copperIngot": 280, "g.raidWin": 1, "u.anvil": 1, "u.coalOre": 444, "tc.use_gold": 0, "m.basalt": 55, "cu.interactWithCraftingTable": 211, "p.glowLichen": 17, "p.inkSac": 7, "b.stonePickaxe": 1, "cu.interactWithAnvil": 21, "c.oakBoat": 2, "u.apple": 2, "m.granite": 67, "u.birchPlanks": 831, "u.rabbit": 1, "p.birchSapling": 173, "p.birchPressurePlate": 2, "p.spruceSapling": 89, "d.enderman": 7, "q.goldNugget": 3, "tc.sneak": 0, "u.blackstone": 2, "k.glowSquid": 3, "m.furnace": 19, "cu.interactWithLectern": 1, "u.stonePickaxe": 155, "k.chicken": 10, "q.snowBlock": 4, "p.amethystBlock": 10, "u.deepslateBrickSlab": 1, "c.arrow": 12, "rc_help": 0, "p.magmaBlock": 56, "m.spruceLog": 8, "u.ironBoots": 1, "q.bone": 16, "u.stoneAxe": 53, "m.diorite": 151, "m.tallSeagrass": 1, "p.sandstone": 6, "c.barrel": 2, "u.barrel": 4, "c.smoothStone": 3, "k.witch": 2, "m.gravel": 1691, "p.goldIngot": 39, "m.carrots": 1, "m.podzol": 1, "u.playerHead": 3, "q.stoneShovel": 1, "tc.use_wood": 0, "q.coal": 6, "c.birchSlab": 546, "p.enderPearl": 31, "p.emeraldOre": 7, "u.jungleSign": 1, "u.furnace": 21, "q.cookedChicken": 6, "cu.swimOneCm": 591446, "k.spider": 104, "p.basalt": 55, "p.roseBush": 19, "d.witch": 1, "u.blackBed": 8, "m.birchStairs": 85, "c.birchPlanks": 1829, "k.rabbit": 1, "p.granite": 67, "c.deepslateBricks": 424, "p.craftingTable": 20, "u.deepslateLapisOre": 2, "q.granite": 9, "g.playMinutes": 4800, "m.coalOre": 1483, "d.blaze": 2, "q.diamondChestplate": 2, "m.mossyCobblestone": 5, "u.smoothRedSandstone": 1, "u.ladder": 51, "m.largeAmethystBud": 2, "m.cryingObsidian": 2, "q.sugarCane": 3, "u.yellowShulkerBox": 2, "m.lectern": 3, "p.gunpowder": 97, "p.birchDoor": 9, "p.stoneButton": 3, "u.glowInkSac": 13, "d.creeper": 15, "p.tuff": 125, "c.glass": 28, "k.creeper": 25, "p.gravel": 1731, "c.enchantedBook": 1, "m.composter": 1, "u.powderSnowBucket": 1, "u.cookedMutton": 1, "c.blackDye": 6, "u.grassBlock": 1, "c.rawCopper": 765, "u.mutton": 14, "p.suspiciousStew": 1, "m.pinkStainedGlassPane": 3, "u.deepslateBrickStairs": 42, "m.vine": 1, "u.deepslateBricks": 286, "k.sheep": 5, "c.diamondSword": 2, "p.shears": 1, "m.snowBlock": 1129, "c.ironBlock": 55, "k.ghast": 9, "q.redDye": 1, "m.barrel": 2, "m.birchLog": 127, "p.amethystShard": 52, "b.ironShovel": 1, "p.boneMeal": 6, "p.obsidian": 39, "p.rabbit": 1, "c.leather": 8, "m.smoothBasalt": 345, "q.playerHead": 1, "u.egg": 10, "m.deepslate": 1812, "p.blueTerracotta": 1, "m.roseBush": 19, "m.whiteBanner": 1, "m.glowLichen": 18, "cu.crouchOneCm": 310290, "tc.temp": 1561, "u.obsidian": 34, "p.rottenFlesh": 588, "m.calcite": 291, "g.damageDealt": 121776, "k.ravager": 1, "p.arrow": 481, "m.tnt": 9, "u.melonSlice": 5, "c.craftingTable": 4, "p.dirt": 2990, "u.fireworkRocket": 94, "m.playerHead": 1, "m.clay": 35, "m.redShulkerBox": 1, "c.smithingTable": 1, "c.diamondChestplate": 4, "m.soulSand": 24, "q.torch": 1, "p.magmaCream": 19, "m.mossyStoneBrickStairs": 1, "u.cookedChicken": 3, "p.goldBlock": 15, "b.diamondPickaxe": 10, "c.paper": 66, "c.ironIngot": 122, "u.deepslateDiamondOre": 6, "m.pointedDripstone": 9, "u.oakTrapdoor": 1, "p.mossyStoneBricks": 6, "q.feather": 3, "g.sneakTime": 116464, "p.cryingObsidian": 2, "m.brewingStand": 1, "p.crackedStoneBricks": 3, "c.blastFurnace": 1, "p.stone": 4282, "p.dripstoneBlock": 8, "u.stonecutter": 1, "c.stonecutter": 1, "q.flint": 4, "c.charcoal": 74, "g.bellRing": 13, "q.ironBars": 2, "p.grassBlock": 1, "c.bucket": 6, "m.torch": 181, "p.oakBoat": 21, "m.scaffolding": 183, "m.cactus": 43, "c.ironLeggings": 5, "u.mossyStoneBricks": 2, "p.diamond": 154, "c.whiteShulkerBox": 1, "color": 0, "b.ironBoots": 2, "p.netherrack": 3383, "p.pinkDye": 20, "u.whiteShulkerBox": 5, "p.crossbow": 3, "b.ironPickaxe": 2, "d.magmaCube": 1, "cu.aviateOneCm": 4321628, "p.bone": 538, "u.ironHelmet": 1, "u.birchSapling": 146, "m.whiteShulkerBox": 5, "m.shulkerBox": 8, "u.boneMeal": 57, "m.birchDoor": 9, "g.mobKills": 1103, "cu.tradedWithVillager": 1, "q.stoneBricks": 4, "cusNetPor": 0, "g.animalsBred": 102, "q.ironIngot": 2, "p.ironOre": 151, "p.playerHead": 9, "p.snowball": 2648, "q.bow": 1, "q.birchSlab": 1, "k.hoglin": 1, "u.ironLeggings": 2, "p.birchStairs": 84, "m.spawner": 5, "b.fishingRod": 1, "u.tnt": 9, "u.potato": 64, "u.air": 1, "cu.climbOneCm": 309802, "g.level": 23, "m.endStone": 4, "p.deepslateLapisOre": 2, "m.glowstone": 14, "p.beef": 16, "q.lapisLazuli": 7, "k.endermite": 1, "c.furnace": 5, "g.playTime": 5760815, "g.openChest": 1791, "q.wheatSeeds": 2, "u.diamondShovel": 6269, "c.string": 8, "p.brewingStand": 2, "c.sprucePlanks": 388, "u.cobblestoneStairs": 4, "u.enchantingTable": 1, "u.pinkStainedGlassPane": 65, "c.ironBoots": 4, "u.composter": 2, "u.pointedDripstone": 3, "m.deepslateBricks": 128, "m.mossyStoneBrickSlab": 1, "g.tradedWithVillager": 1, "c.goldBlock": 7, "c.rawCopperBlock": 85, "m.netherQuartzOre": 702, "m.blackstone": 137, "b.crossbow": 1, "m.darkOakSlab": 1, "m.pinkShulkerBox": 1, "c.ironChestplate": 4, "cu.horseOneCm": 117781, "u.bell": 1, "p.cactus": 69, "c.birchPressurePlate": 3, "u.snowball": 631, "q.stoneSword": 3, "k.wanderingTrader": 1, "q.ironChestplate": 1, "p.pinkShulkerBox": 1, "m.tallGrass": 42, "k.enderman": 205, "u.deepslateRedstoneOre": 14, "u.stoneButton": 3, "p.melonSlice": 5, "m.dirt": 2844, "m.tuff": 165, "c.diamondShovel": 2, "p.goldenBoots": 1, "p.phantomMembrane": 7, "d.spider": 8, "c.shulkerBox": 8, "p.whiteBanner": 5, "p.pointedDripstone": 15, "c.pinkStainedGlassPane": 120, "u.ironShovel": 245, "q.oakSapling": 3, "k.blaze": 11, "c.yellowDye": 1, "m.spruceSapling": 1, "p.diamondPickaxe": 1, "u.oakBoat": 22, "q.bucket": 1, "p.cutSandstone": 9, "u.stoneShovel": 92, "q.cobbledDeepslate": 66, "d.player": 1, "b.goldenPickaxe": 1, "q.stoneBrickStairs": 4, "g.interactWithFurnace": 181, "c.oakTrapdoor": 2, "p.snowBlock": 4, "u.wheatSeeds": 13, "m.deepslateDiamondOre": 94, "q.crossbow": 1, "p.oakLog": 15, "u.bucket": 77, "m.deepslateLapisOre": 68, "cu.damageBlockedByShield": 7895, "m.tripwire": 4, "p.stoneSword": 5, "m.stoneBricks": 8, "p.lantern": 12, "p.stickyPiston": 3, "c.stoneHoe": 1, "u.spiderEye": 1, "p.waterBucket": 1, "q.stick": 18, "u.birchPressurePlate": 5, "p.birchFence": 19, "p.bucket": 5, "m.deadBush": 5, "c.copperBlock": 230, "q.blazeRod": 5, "p.calcite": 287, "p.mutton": 15, "g.interactWithGrindstone": 17, "p.soulSand": 20, "q.sand": 158, "c.pinkDye": 25, "g.hunger": 12, "c.enchantingTable": 1, "rc_display": 0, "u.bow": 304, "p.stoneBricks": 6, "p.rawCopper": 2365, "q.potion": 1, "tc.use_stone": 0, "g.playRecord": 1, "p.leather": 11, "g.health": 20, "u.cobblestone": 712, "u.string": 5, "u.lantern": 30, "k.bat": 5, "c.ironShovel": 1, "cu.walkUnderWaterOneCm": 394571, "m.birchPressurePlate": 2, "p.ancientDebris": 5, "q.brewingStand": 1, "m.cornflower": 1, "c.stoneSword": 2, "p.strippedBirchLog": 1, "b.shield": 1, "m.birchFence": 19, "u.shield": 119, "cu.interactWithBrewingstand": 9, "cu.interactWithBlastFurnace": 104, "u.darkOakDoor": 1, "m.sandstone": 3, "u.ironChestplate": 1, "m.magmaBlock": 56, "p.lapisLazuli": 929, "m.netherGoldOre": 15, "u.whiteDye": 1, "m.deepslateRedstoneOre": 110, "p.mossyCobblestone": 2, "p.chiseledStoneBricks": 2, "u.copperOre": 8, "g.enchantItem": 43, "u.diamondHelmet": 1, "m.crimsonNylium": 2, "p.smoothBasalt": 345, "m.fire": 43, "u.birchStairs": 133, "m.blueTerracotta": 1, "p.crackedDeepslateTiles": 1, "u.deepslate": 1, "c.netheritePickaxe": 2, "g.armor": 10, "p.copperOre": 8, "m.deepslateEmeraldOre": 3, "cu.sprintOneCm": 10674953, "k.zombieVillager": 10, "k.witherSkeleton": 23, "m.netherrack": 4033, "p.goldenCarrot": 32, "p.potion": 4, "c.stonePickaxe": 1, "m.emeraldOre": 30, "q.cobblestone": 46, "duraPing.config": 4, "p.cobbledDeepslate": 1832, "q.coalOre": 1, "p.shield": 2, "p.hopper": 11, "m.mossyStoneBricks": 7, "tc.disabled": 0, "m.grass": 122, "c.ironAxe": 3, "d.zombie": 19, "m.chiseledStoneBricks": 2, "c.cobbledDeepslateSlab": 120, "TreeCapitator": 0, "p.lightGrayWool": 1, "d.witherSkeleton": 1, "u.birchSign": 3, "p.whiteShulkerBox": 5, "m.oakPlanks": 1, "c.scaffolding": 468, "p.egg": 10, "u.blueTerracotta": 1, "u.soulSand": 18, "p.endStone": 1, "k.pillager": 25, "g.playerKills": 3, "p.carrot": 687, "cu.interactWithFurnace": 181, "m.spruceLeaves": 4, "m.deepslateCopperOre": 22, "c.goldenBoots": 3, "u.glassBottle": 3, "b.ironAxe": 3, "b.goldenBoots": 2, "c.air": 0, "m.yellowShulkerBox": 1, "p.chicken": 12, "p.deepslateTiles": 31, "m.ironBars": 4, "u.suspiciousStew": 1, "cu.flyOneCm": 8913758, "p.ghastTear": 1, "k.zombie": 263, "p.diorite": 150, "c.glowstone": 4, "m.dandelion": 2, "c.birchDoor": 9, "u.redShulkerBox": 2, "g.drop": 150, "duraPing": 0, "c.blueDye": 12, "m.netherBricks": 1, "m.seagrass": 2, "c.smoker": 1, "u.torch": 1207, "u.enderPearl": 9, "p.rawGold": 216, "m.campfire": 3, "u.oakSapling": 1, "cu.interactWithStonecutter": 5, "p.bow": 21, "g.timeSinceDeath": 107405, "k.piglinBrute": 3, "c.bread": 22, "p.string": 224, "q.stonePickaxe": 1, "k.vindicator": 1, "p.goldNugget": 41, "p.dandelion": 2, "p.deepslate": 67, "c.goldIngot": 87, "q.bakedPotato": 4, "c.polishedDeepslate": 424, "u.stone": 1703, "u.netheritePickaxe": 12893, "u.campfire": 4, "u.cobbledDeepslate": 188, "m.snow": 14, "p.feather": 11, "u.sand": 9, "m.smoothRedSandstone": 1, "b.ironLeggings": 3, "tc.valid": 0, "c.shears": 2, "p.blackBed": 7, "c.nameTag": 1, "tc.use_diamond": 0, "cu.interactWithSmithingTable": 13, "m.crackedStoneBricks": 4, "m.copperOre": 449, "g.jump": 41760, "tc.damage": 1250, "p.deepslateBrickSlab": 1, "cu.walkOnWaterOneCm": 245661, "u.gravel": 10, "u.deepslateIronOre": 26, "m.amethystCluster": 6, "g.damageTaken": 44281, "m.amethystBlock": 10, "p.stoneBrickStairs": 4, "u.netherBricks": 1, "c.birchFence": 264, "m.ironDoor": 6, "m.strippedBirchLog": 1, "tc.use_iron": 0, "q.diamondAxe": 1, "u.diamondChestplate": 2, "m.andesite": 116, "b.diamondAxe": 1, "m.chest": 36, "c.birchStairs": 56, "q.whiteWool": 1, "g.interactWithBlastFurnace": 104, "c.bow": 13, "p.deepslateDiamondOre": 6, "u.dirt": 575, "c.boneMeal": 633, "c.copperIngot": 19, "c.diamondLeggings": 1, "p.charcoal": 259, "m.sugarCane": 6, "m.sculkSensor": 1, "p.deepslateIronOre": 26, "q.crackedDeepslateTiles": 1, "c.goldenPickaxe": 22, "m.deepslateIronOre": 232, "u.ironOre": 135, "p.coal": 1996, "q.andesite": 2, "m.wallTorch": 64, "u.diorite": 2, "g.sleepInBed": 33, "q.rottenFlesh": 6, "c.smoothStoneSlab": 6, "p.furnace": 11, "p.enderEye": 10, "u.birchDoor": 14, "q.redstone": 3, "u.milkBucket": 2, "cu.talkedToVillager": 30, "q.lightWeightedPressurePlate": 1, "p.blastFurnace": 2, "c.deepslateTileSlab": 18, "u.carrot": 483, "q.tuff": 1, "m.blackBed": 7, "m.birchSlab": 97, "p.darkOakSlab": 1, "k.skeleton": 255, "u.pinkShulkerBox": 2, "u.ironPickaxe": 483, "q.spiderEye": 19, "u.emeraldOre": 7, "p.deepslateBricks": 71, "c.anvil": 1, "p.redstone": 549, "m.deepslateTiles": 31, "p.sand": 546, "u.woodenHoe": 3, "q.bowl": 1, "m.hayBlock": 19, "c.oakPlanks": 40, "cu.boatOneCm": 1904710, "p.glowstone": 1, "m.stoneButton": 1, "p.glowstoneDust": 37, "p.shulkerBox": 9, "p.rawIron": 946, "p.cobblestone": 25314, "g.timeSinceRest": 106230, "p.spiderEye": 118, "p.glowInkSac": 36, "k.cow": 5, "p.brownWool": 4, "p.stick": 406, "p.sugarCane": 9, "m.ladder": 27, "u.stoneHoe": 89, "q.elytra": 2, "g.openEnderchest": 1, "g.totalWorldTime": 5760815, "m.crackedPolishedBlackstoneBricks": 7, "p.greenCarpet": 1, "c.yellowShulkerBox": 1, "u.craftingTable": 23, "q.netheritePickaxe": 1, "m.dripstoneBlock": 14, "g.deathCount": 124, "u.goldenCarrot": 129, "u.fishingRod": 2, "c.stick": 652, "q.sandstone": 6, "u.deepslateGoldOre": 13, "p.diamondSword": 1, "u.shears": 8, "cu.fallOneCm": 1084053, "u.diamondSword": 1211, "p.chest": 32, "m.deepslateBrickSlab": 1, "cu.walkOneCm": 9336501, "u.ironAxe": 443, "p.yellowShulkerBox": 1, "p.ladder": 28, "m.oakLeaves": 6, "c.deepslateTiles": 232, "p.elytra": 2, "u.granite": 12, "m.goldOre": 21, "m.deepslateGoldOre": 137, "m.obsidian": 39, "u.goldenPickaxe": 33, "m.farmland": 2, "p.netherBricks": 1, "p.carvedPumpkin": 1, "c.stoneButton": 2, "q.birchPlanks": 8, "m.cobbledDeepslate": 42, "u.hayBlock": 7, "tc.use_netherite": 0, "g.interactWithStonecutter": 5, "p.hayBlock": 21, "p.diamondShovel": 2, "q.shield": 2, "c.snowBlock": 546, "p.lead": 2, "c.goldenCarrot": 130, "p.whiteWool": 18, "m.sand": 375, "q.gunpowder": 61, "k.piglin": 1, "c.hopper": 14, "c.enderEye": 5, "p.birchPlanks": 359, "g.inspectHopper": 119, "p.crackedPolishedBlackstoneBricks": 4, "m.stone": 29930, "u.armorStand": 1, "m.stonePressurePlate": 1, "u.glowstone": 5, "q.netherrack": 1, "p.bamboo": 319, "c.diamondHelmet": 2, "p.composter": 1, "m.oakLog": 2, "m.grassBlock": 289, "g.talkedToVillager": 30, "p.potato": 69, "u.netherrack": 681, "u.birchSlab": 567, "m.lantern": 8, "p.wheat": 63, "c.ironNugget": 257, "m.dirtPath": 17, "u.chest": 77, "g.leaveGame": 53, "u.whiteBanner": 4, "c.birchSign": 3, "u.diamondAxe": 1214, "c.chest": 62, "cu.sleepInBed": 33, "p.oakPlanks": 1, "p.barrel": 1, "p.bread": 6, "m.goldBlock": 15, "u.smoker": 1, "m.blastFurnace": 7, "p.birchSlab": 149, "m.cutSandstone": 9, "p.oakSapling": 15, "p.flintAndSteel": 1, "u.flintAndSteel": 16, "u.cutSandstone": 9, "q.stoneButton": 2, "c.cobblestoneStairs": 4, "p.diamondAxe": 1, "u.greenCarpet": 1, "p.cornflower": 1, "p.deepslateGoldOre": 13, "c.stoneSlab": 6, "p.flint": 180, "g.interactWithSmithingTable": 13}, "Andre759": {"m.powderSnow": 3, "cu.interactWithGrindstone": 1, "p.spruceDoor": 1, "u.jungleDoor": 1, "c.ironPickaxe": 12, "m.pumpkin": 9, "q.string": 2, "p.poppy": 176, "m.bamboo": 124, "d.spider": 1, "u.deepslateTiles": 435, "c.ironHelmet": 2, "c.stone": 2389, "p.whiteBanner": 4, "p.soulLantern": 17, "u.cookedCod": 6, "g.openBarrel": 22, "p.wheatSeeds": 1074, "u.rottenFlesh": 126, "g.fishCaught": 12, "k.blaze": 2, "c.yellowDye": 26, "u.redBanner": 23, "p.chiseledDeepslate": 1, "u.ironBars": 36, "g.interactWithCraftingTable": 220, "u.oakBoat": 28, "p.emerald": 2, "p.redBanner": 15, "c.redDye": 246, "m.lapisOre": 7, "c.netherBrickStairs": 44, "u.stoneShovel": 4258, "q.cobbledDeepslate": 1564, "m.sprucePlanks": 2, "p.spruceLog": 32, "g.interactWithFurnace": 479, "g.interactWithLoom": 4, "c.ladder": 24, "u.spruceLog": 1, "q.oakFence": 5, "q.deepslateBricks": 1, "u.wheatSeeds": 1025, "p.jungleLog": 128, "m.deepslateDiamondOre": 30, "p.bricks": 33, "p.oakLog": 713, "u.bucket": 49, "p.andesite": 48, "m.deepslateLapisOre": 20, "q.glowLichen": 1, "p.ironBars": 4, "b.ironChestplate": 1, "m.playerWallHead": 1, "p.birchLog": 60, "q.dirt": 1857, "u.oakFenceGate": 5, "p.stoneSword": 2, "m.ironOre": 196, "m.stoneBricks": 423, "p.lantern": 10, "u.sprucePlanks": 2, "c.stoneHoe": 1, "m.spruceStairs": 5, "q.stick": 2, "c.oakFenceGate": 5, "c.redBanner": 8, "u.glassPane": 327, "g.play": 1986, "d.drowned": 5, "k.drowned": 18, "c.pinkBed": 2, "g.interactWithGrindstone": 1, "u.sweetBerries": 118, "p.soulSand": 2, "d.skeleton": 5, "m.chiseledDeepslate": 1, "c.pinkDye": 8, "p.stoneHoe": 1, "g.hunger": 20, "u.stoneBrickStairs": 66, "u.waterBucket": 47, "u.scaffolding": 176, "p.scaffolding": 176, "c.lantern": 38, "rc_display": 0, "u.bow": 17, "p.stoneBricks": 420, "p.netherBrickFence": 33, "c.mossyStoneBricks": 64, "c.stoneAxe": 11, "u.dandelion": 4, "tc.use_stone": 0, "c.glassPane": 528, "g.health": 20, "p.ironIngot": 1, "u.cobblestone": 112, "u.andesite": 1, "u.lantern": 46, "b.ironHelmet": 1, "c.torch": 964, "cu.walkUnderWaterOneCm": 251447, "u.crossbow": 9, "g.fillCauldron": 1, "cu.playTime": 2383488, "m.cornflower": 1, "m.glassPane": 10, "c.stoneSword": 4, "m.cobblestone": 6, "u.spruceSapling": 6, "u.pinkBed": 6, "q.birchSapling": 1, "q.oakSlab": 5, "cu.interactWithBrewingstand": 1, "c.woodenAxe": 1, "c.flowerBannerPattern": 1, "c.soulTorch": 8, "p.lapisLazuli": 177, "u.bricks": 33, "p.torch": 202, "m.netherGoldOre": 32, "m.netherBrickStairs": 6, "m.deepslateRedstoneOre": 30, "u.oakPlanks": 885, "p.mossyCobblestone": 3, "m.craftingTable": 10, "g.enchantItem": 1, "q.gravel": 53, "p.smoothBasalt": 1, "p.blazeRod": 1, "p.apple": 36, "m.redBanner": 4, "p.pinkWool": 5, "u.bread": 169, "u.pumpkin": 3, "q.sweetBerries": 3, "g.armor": 15, "p.tropicalFish": 1, "c.composter": 1, "q.basalt": 5, "cu.sprintOneCm": 5637581, "k.zombieVillager": 5, "k.witherSkeleton": 4, "m.bricks": 33, "m.netherrack": 3, "g.interactWithBrewingstand": 1, "c.ironBars": 32, "c.stonePickaxe": 36, "p.pufferfish": 1, "m.emeraldOre": 2, "m.netherBrickFence": 34, "g.air": 300, "q.snowball": 8, "q.cobblestone": 280, "c.woodenPickaxe": 1, "u.trident": 9, "p.cobbledDeepslate": 2532, "m.mossyStoneBricks": 28, "tc.disabled": 0, "c.stoneShovel": 32, "u.spruceDoor": 4, "m.grass": 818, "c.spruceDoor": 3, "d.zombie": 8, "c.redStainedGlassPane": 48, "TreeCapitator": 0, "c.goldNugget": 324, "b.stoneAxe": 8, "p.copperIngot": 2, "d.witherSkeleton": 2, "m.sweetBerryBush": 30, "tc.use_gold": 0, "u.redWool": 60, "m.packedIce": 2, "m.basalt": 5, "cu.interactWithCraftingTable": 220, "p.glowLichen": 1, "u.redStainedGlassPane": 41, "p.inkSac": 2, "b.stonePickaxe": 34, "m.oakPlanks": 99, "c.scaffolding": 18, "c.oakBoat": 2, "p.egg": 2, "u.apple": 36, "m.bell": 2, "m.granite": 4, "k.pillager": 11, "u.soulLantern": 9, "p.birchSapling": 29, "u.ironSword": 404, "u.oakPressurePlate": 2, "p.carrot": 568, "cu.interactWithFurnace": 479, "m.stoneBrickWall": 8, "p.spruceSapling": 14, "d.enderman": 1, "m.spruceLeaves": 9, "tc.sneak": 0, "c.oakFence": 45, "m.furnace": 4, "u.cod": 1, "q.dripstoneBlock": 2, "u.stonePickaxe": 4586, "c.air": 0, "p.deepslateTiles": 43, "u.glass": 372, "rc_help": 0, "m.ironBars": 4, "m.oakFence": 14, "m.spruceLog": 7, "q.bone": 5, "p.glass": 4, "cu.flyOneCm": 1207610, "p.sunflower": 1, "p.diorite": 1, "m.redWallBanner": 11, "k.zombie": 82, "u.stoneAxe": 704, "p.oxeyeDaisy": 3, "m.dandelion": 29, "m.diorite": 1, "m.tallSeagrass": 1, "g.drop": 165, "p.goldenSword": 2, "duraPing": 0, "m.netherBricks": 739, "p.crackedDeepslateBricks": 3, "m.seagrass": 1, "c.spruceStairs": 4, "k.witch": 1, "u.woodenAxe": 31, "m.gravel": 62, "k.polarBear": 2, "q.arrow": 3, "u.torch": 1012, "p.rawGold": 54, "u.oakSapling": 81, "m.carrots": 156, "p.bow": 8, "cu.interactWithStonecutter": 69, "u.playerHead": 4, "p.netherBrickSlab": 12, "tc.use_wood": 0, "g.timeSinceDeath": 12471, "q.coal": 2, "c.bread": 214, "p.sprucePlanks": 2, "p.string": 28, "p.goldNugget": 133, "p.dandelion": 29, "u.oakLog": 175, "u.jungleSign": 2, "u.furnace": 16, "c.goldIngot": 55, "u.stone": 1, "c.oakSlab": 12, "c.ironSword": 3, "cu.swimOneCm": 194134, "m.poppy": 177, "u.cobbledDeepslate": 1, "m.snow": 1, "c.lead": 4, "q.copperIngot": 2, "k.spider": 13, "p.basalt": 5, "p.roseBush": 35, "u.chain": 8, "d.witch": 1, "c.loom": 1, "u.cornflower": 1, "b.ironLeggings": 1, "tc.valid": 0, "p.goldenHelmet": 1, "d.ghast": 1, "c.shears": 1, "u.oakFence": 28, "c.birchPlanks": 240, "c.hayBlock": 1, "tc.use_diamond": 0, "p.granite": 4, "c.deepslateBricks": 1, "m.crackedStoneBricks": 47, "p.craftingTable": 9, "m.pinkBed": 4, "g.jump": 17203, "tc.damage": 42, "g.playMinutes": 1986, "q.granite": 2, "m.coalOre": 878, "d.blaze": 1, "m.chain": 3, "p.ironChestplate": 1, "m.mossyCobblestone": 3, "b.stoneSword": 4, "cu.walkOnWaterOneCm": 167893, "u.ladder": 17, "q.dandelion": 1, "c.redWool": 106, "m.stoneBrickStairs": 13, "c.stoneBrickWall": 38, "u.gravel": 1, "p.gunpowder": 2, "p.netherBrickStairs": 6, "g.damageTaken": 21322, "u.stoneBrickWall": 49, "p.stoneBrickStairs": 13, "q.redStainedGlassPane": 7, "p.rail": 53, "d.creeper": 2, "u.netherBricks": 212, "p.tuff": 321, "u.loom": 1, "p.trident": 1, "m.rail": 39, "c.glass": 821, "u.stoneSword": 625, "tc.use_iron": 0, "m.andesite": 48, "k.creeper": 2, "p.stoneBrickWall": 8, "m.chest": 4, "c.pinkWool": 8, "p.gravel": 54, "m.composter": 1, "p.grayWool": 1, "c.bow": 1, "u.dirt": 945, "c.boneMeal": 75, "k.salmon": 6, "m.sugarCane": 8, "m.sculkSensor": 3, "c.soulLantern": 8, "u.deepslateBricks": 1, "m.deepslateIronOre": 34, "c.wheat": 324, "p.shears": 1, "m.jungleWallSign": 1, "m.snowBlock": 16, "cu.interactWithCartographyTable": 1, "p.stoneShovel": 2, "p.coal": 872, "q.andesite": 47, "m.wallTorch": 40, "p.bell": 5, "c.stoneBrickStairs": 38, "g.sleepInBed": 61, "q.rottenFlesh": 3, "k.ghast": 1, "p.furnace": 4, "m.birchLog": 11, "q.redstone": 52, "p.boneMeal": 27, "u.milkBucket": 1, "m.smoothBasalt": 1, "u.egg": 2, "cu.talkedToVillager": 4, "m.deepslate": 2571, "m.sunflower": 1, "q.craftingTable": 1, "u.netherBrickStairs": 114, "m.roseBush": 35, "u.carrot": 355, "m.glowLichen": 7, "q.tuff": 321, "cu.crouchOneCm": 181335, "tc.temp": 131, "p.oakFence": 14, "k.skeleton": 101, "u.ironPickaxe": 2783, "p.rottenFlesh": 124, "q.spiderEye": 3, "p.deepslateBricks": 8, "p.cod": 7, "b.goldenSword": 2, "g.damageDealt": 34524, "p.oakFenceGate": 1, "m.deepslateTiles": 43, "p.arrow": 46, "p.redstone": 131, "p.chain": 3, "p.sand": 821, "p.nautilusShell": 1, "c.cookedSalmon": 4, "m.hayBlock": 60, "c.craftingTable": 7, "c.oakPlanks": 1356, "p.dirt": 3204, "cu.boatOneCm": 873177, "p.jungleSign": 1, "m.soulSand": 3, "p.rawIron": 229, "b.woodenPickaxe": 1, "g.timeSinceRest": 12494, "p.cobblestone": 1699, "p.spiderEye": 4, "cu.interactWithLoom": 4, "u.bamboo": 22, "p.stick": 190, "c.paper": 3, "q.furnace": 1, "p.sugarCane": 12, "u.stoneHoe": 40, "c.ironIngot": 229, "b.stoneShovel": 30, "p.pumpkin": 15, "g.totalWorldTime": 2383488, "u.netherBrickSlab": 174, "p.mossyStoneBricks": 28, "u.cauldron": 1, "m.spruceDoor": 1, "g.sneakTime": 67890, "c.junglePlanks": 8, "m.oxeyeDaisy": 2, "c.mossyCobblestoneWall": 1, "c.cookedCod": 6, "p.crackedStoneBricks": 47, "b.ironSword": 1, "u.craftingTable": 15, "p.dripstoneBlock": 2, "u.stonecutter": 4, "u.netherBrickFence": 2, "m.dripstoneBlock": 2, "c.stonecutter": 1, "u.spruceStairs": 9, "g.deathCount": 37, "b.woodenAxe": 1, "g.bellRing": 3, "m.oakSapling": 3, "u.goldenSword": 111, "c.bucket": 2, "p.salmon": 5, "u.fishingRod": 17, "c.stick": 656, "u.goldenCarrot": 4, "m.torch": 128, "p.oakBoat": 27, "m.scaffolding": 120, "c.ironLeggings": 2, "cu.fallOneCm": 279329, "u.mossyStoneBricks": 91, "p.chest": 4, "p.stonecutter": 3, "q.pufferfish": 1, "p.diamond": 30, "cu.walkOneCm": 8515855, "color": 0, "m.oakFenceGate": 1, "c.cauldron": 1, "b.ironBoots": 2, "p.netherrack": 4, "p.crossbow": 1, "b.ironPickaxe": 11, "q.bamboo": 5, "p.bone": 57, "p.ladder": 3, "u.birchSapling": 5, "p.vine": 64, "q.shears": 1, "m.oakLeaves": 74, "g.interactWithCartographyTable": 1, "u.cookedSalmon": 4, "c.deepslateTiles": 6, "u.boneMeal": 98, "g.mobKills": 260, "p.redWool": 3, "q.tropicalFish": 1, "u.granite": 2, "m.goldOre": 12, "p.sweetBerries": 141, "m.deepslateGoldOre": 42, "cusNetPor": 0, "m.farmland": 1, "g.animalsBred": 2, "p.netherBricks": 722, "q.chiseledDeepslate": 1, "m.strippedOakLog": 1, "u.hayBlock": 25, "p.spruceStairs": 5, "c.oakPressurePlate": 2, "tc.use_netherite": 0, "q.grayWool": 1, "p.playerHead": 4, "p.hayBlock": 96, "g.interactWithStonecutter": 69, "c.netherBrickSlab": 82, "p.pinkBed": 4, "p.snowball": 57, "q.bow": 3, "c.crackedStoneBricks": 148, "c.goldenCarrot": 56, "q.pinkWool": 3, "p.whiteWool": 129, "m.sand": 839, "q.gunpowder": 1, "c.jungleDoor": 3, "u.potato": 3, "u.oxeyeDaisy": 2, "cu.climbOneCm": 99159, "m.stonecutter": 3, "g.level": 40, "p.birchPlanks": 20, "m.stone": 1648, "c.furnace": 9, "g.playTime": 2383488, "q.netherrack": 3, "c.chain": 9, "p.bamboo": 1497, "g.openChest": 820, "q.wheatSeeds": 48, "p.composter": 1, "m.wheat": 356, "m.grassBlock": 2812, "m.oakLog": 196, "g.talkedToVillager": 4, "m.soulLantern": 17, "u.netherrack": 1, "p.potato": 1, "c.string": 44, "c.sprucePlanks": 24, "m.lantern": 2, "m.netherBrickSlab": 12, "p.wheat": 330, "c.ironNugget": 387, "m.dirtPath": 2, "u.salmon": 1, "c.ironBoots": 3, "u.chest": 15, "g.leaveGame": 63, "m.grayWool": 1, "u.composter": 2, "m.deepslateBricks": 8, "m.crackedDeepslateBricks": 3, "k.stray": 1, "c.chest": 11, "c.ironChestplate": 3, "cu.sleepInBed": 61, "p.oakPlanks": 261, "u.woodenPickaxe": 59, "cu.horseOneCm": 159199, "b.trident": 1, "u.snowball": 49, "q.stoneSword": 2, "u.stoneBricks": 2286, "p.oakSapling": 378, "q.ironChestplate": 2, "p.flintAndSteel": 1, "p.strippedOakLog": 1, "m.tallGrass": 140, "u.crackedStoneBricks": 161, "m.glass": 122, "p.cornflower": 1, "m.dirt": 300, "m.tuff": 322, "q.diorite": 1, "p.flint": 8, "q.smoothBasalt": 1}, "splashmob": {"cu.interactWithGrindstone": 5, "m.powderSnow": 48, "c.ironPickaxe": 3, "m.endRod": 1, "q.string": 40, "q.deepslateIronOre": 51, "u.lilac": 7, "u.diamondPickaxe": 28181, "p.poppy": 25, "m.bamboo": 441, "cu.interactWithSmoker": 57, "c.mushroomStew": 1, "c.ironHelmet": 2, "p.campfire": 12, "g.openBarrel": 979, "p.wheatSeeds": 92, "q.spruceSapling": 2, "p.diamondChestplate": 4, "u.rottenFlesh": 33, "g.fishCaught": 64, "q.glisteringMelonSlice": 4, "p.whiteTulip": 1, "g.interactWithCraftingTable": 193, "c.darkOakPlanks": 96, "p.emerald": 1, "c.redDye": 4, "m.buddingAmethyst": 4, "u.shulkerBox": 15, "m.largeFern": 5, "u.roseBush": 22, "m.lapisOre": 41, "m.sprucePlanks": 1, "p.endRod": 1, "m.carvedPumpkin": 32, "p.birchTrapdoor": 3, "p.blackstone": 663, "p.crimsonStem": 141, "c.cookedMutton": 8, "p.spruceLog": 95, "q.diamondShovel": 1, "c.jackOLantern": 32, "p.lectern": 104, "p.quartz": 140, "p.jungleLog": 126, "u.redNetherBricks": 3, "m.warpedStem": 51, "p.mossCarpet": 1, "p.andesite": 92, "p.brownMushroomBlock": 47, "p.acaciaSapling": 10, "q.daylightDetector": 2, "c.whiteBed": 1, "p.ironBars": 8, "b.ironChestplate": 2, "p.birchLog": 67, "q.dirt": 8, "m.orangeTerracotta": 192, "u.beeNest": 11, "m.ironOre": 448, "m.greenCarpet": 4, "q.birchBoat": 1, "p.slimeBall": 4, "m.peony": 10, "m.spruceStairs": 1, "k.magmaCube": 350, "q.poppy": 19, "q.stone": 224, "q.ironShovel": 1, "u.junglePlanks": 12, "c.shield": 4, "g.play": 4600, "d.drowned": 2, "k.drowned": 17, "p.warpedWartBlock": 13, "m.strippedAcaciaLog": 6, "p.strippedAcaciaLog": 6, "u.goldenBoots": 1, "p.purpurSlab": 3, "u.potion": 7, "p.coalOre": 294, "p.honeycomb": 390, "p.stoneHoe": 1, "m.redstoneLamp": 1, "u.waterBucket": 30, "u.scaffolding": 65, "c.redBed": 1, "p.scaffolding": 165, "c.lantern": 8, "u.purpurBlock": 4, "u.painting": 59, "m.birchPlanks": 4, "m.birchLeaves": 5, "p.netherBrickFence": 4, "p.yellowBed": 24, "m.brownMushroomBlock": 47, "u.redTerracotta": 2, "p.saddle": 1, "m.stickyPiston": 9, "u.dandelion": 8, "q.obsidian": 16, "p.ironIngot": 5, "g.inspectDispenser": 3, "u.andesite": 53, "b.ironHelmet": 2, "m.pinkTulip": 12, "c.torch": 1892, "p.smoothStone": 1, "c.netheriteBoots": 1, "k.bee": 2, "u.crossbow": 1, "cu.playTime": 5520458, "u.lectern": 106, "m.cobblestone": 31, "g.damageBlockedByShield": 9745, "u.spruceSapling": 1, "u.stoneBrickSlab": 262, "q.birchSapling": 4, "u.woodenSword": 337, "p.crimsonPlanks": 3, "m.redstoneOre": 6, "q.carvedPumpkin": 2, "p.glassBottle": 13, "m.redTerracotta": 195, "u.whiteCarpet": 16, "q.dragonEgg": 1, "p.torch": 484, "u.birchBoat": 6, "m.craftingTable": 26, "q.crackedStoneBricks": 1, "q.gravel": 363, "u.honeyBottle": 2, "p.blazeRod": 21, "p.apple": 26, "p.brick": 34, "p.pinkWool": 41, "c.campfire": 26, "g.interactWithAnvil": 18, "p.smoothStoneSlab": 4, "p.musicDiscBlocks": 3, "g.openShulkerBox": 61, "g.interactWithSmoker": 57, "q.blackstone": 159, "k.pig": 14, "u.tuff": 91, "q.basalt": 821, "c.brick": 6, "q.oakPlanks": 184, "g.interactWithBrewingstand": 7, "m.ancientDebris": 44, "p.clayBall": 40, "p.pufferfish": 11, "g.air": 300, "q.snowball": 101, "m.infestedStoneBricks": 82, "q.diamondPickaxe": 3, "k.husk": 1, "m.infestedDeepslate": 3, "c.diamondPickaxe": 8, "u.endStone": 4, "u.birchFence": 3, "u.cryingObsidian": 2, "p.cookedBeef": 8, "p.shroomlight": 32, "p.ironShovel": 1, "p.bookshelf": 496, "p.leatherLeggings": 1, "b.stoneAxe": 2, "p.copperIngot": 4, "m.sweetBerryBush": 2, "u.coalOre": 39, "tc.use_gold": 0, "m.packedIce": 43, "m.basalt": 2729, "cu.interactWithCraftingTable": 193, "p.glowLichen": 9, "p.mushroomStem": 45, "p.inkSac": 1, "b.stonePickaxe": 1, "u.darkOakFenceGate": 1, "p.musicDiscOtherside": 2, "p.whiteTerracotta": 195, "q.birchTrapdoor": 32, "cu.interactWithAnvil": 18, "p.mycelium": 32, "c.daylightDetector": 4, "u.apple": 21, "m.granite": 133, "p.mushroomStew": 2, "u.birchPlanks": 4, "p.birchSapling": 29, "q.mutton": 2, "p.spruceSapling": 26, "d.enderman": 1, "q.goldNugget": 4, "tc.sneak": 0, "u.blackstone": 61, "g.potFlowers": 2, "k.glowSquid": 2, "m.furnace": 14, "u.stonePickaxe": 131, "k.chicken": 6, "m.weepingVinesPlant": 2, "p.amethystBlock": 193, "m.waterCauldron": 1, "g.eatCakeSlice": 4, "rc_help": 0, "p.magmaBlock": 7, "q.paper": 51, "m.spruceLog": 6, "q.bone": 63, "u.beehive": 2, "u.stoneAxe": 107, "p.prismarineCrystals": 3, "m.diorite": 112, "m.tallSeagrass": 2, "c.barrel": 1, "u.amethystBlock": 3, "u.barrel": 3, "c.crimsonPlanks": 4, "q.mossyCobblestone": 2, "p.pinkTulip": 12, "u.darkOakPlanks": 43, "m.gravel": 1161, "q.flintAndSteel": 1, "q.arrow": 40, "p.redstoneLamp": 1, "q.cocoaBeans": 3, "q.mushroomStew": 1, "u.redstoneLamp": 5, "m.carrots": 3, "m.podzol": 22, "cu.killedByDarkPurpleTeam": 2, "u.playerHead": 3, "u.ironHoe": 91, "tc.use_wood": 0, "q.coal": 4, "b.leatherLeggings": 1, "p.junglePlanks": 8, "p.enderPearl": 132, "p.diamondBoots": 1, "u.furnace": 4, "c.netheriteHelmet": 1, "m.whiteBed": 4, "u.blueOrchid": 3, "c.warpedPlanks": 8, "c.ironSword": 1, "u.poppy": 10, "cu.swimOneCm": 826258, "m.poppy": 24, "m.lightGrayCarpet": 14, "q.copperIngot": 2, "k.spider": 88, "p.basalt": 1868, "u.chain": 5, "p.roseBush": 24, "m.lightGrayTerracotta": 192, "p.goldenHelmet": 1, "p.darkOakFence": 7, "m.birchStairs": 10, "c.birchPlanks": 60, "k.shulker": 65, "k.rabbit": 2, "p.granite": 130, "p.craftingTable": 27, "q.granite": 108, "g.playMinutes": 4600, "m.coalOre": 391, "d.blaze": 1, "p.stoneAxe": 1, "q.emeraldBlock": 2, "u.redBed": 1, "q.diamondChestplate": 2, "q.cryingObsidian": 4, "m.mossyCobblestone": 8, "m.lilac": 9, "u.ladder": 80, "p.cobblestoneWall": 2, "u.emeraldBlock": 7, "p.leatherBoots": 1, "m.cryingObsidian": 7, "c.redWool": 3, "q.sugarCane": 10, "p.redMushroom": 6, "m.lectern": 104, "p.gunpowder": 62, "c.woodenSword": 10, "p.rail": 25, "p.stoneButton": 1, "p.tuff": 123, "m.rail": 25, "c.glass": 20, "u.stoneSword": 120, "q.oakLog": 13, "p.smoker": 2, "k.creeper": 78, "p.purpurBlock": 45, "p.gravel": 800, "cu.potFlower": 2, "p.emeraldBlock": 9, "u.cookedMutton": 103, "m.beeNest": 11, "p.grayWool": 102, "c.blackDye": 2, "u.cake": 1, "p.suspiciousStew": 2, "k.salmon": 4, "m.vine": 18, "u.darkOakStairs": 1, "k.sheep": 2, "p.diamondLeggings": 1, "p.bigDripleaf": 2, "u.elytra": 1, "c.diamondSword": 1, "c.honeyBlock": 2, "cu.interactWithCartographyTable": 3, "m.snowBlock": 46, "p.lilyOfTheValley": 9, "q.filledMap": 5, "m.jungleLog": 11, "c.cookedChicken": 6, "m.smallDripleaf": 1, "k.ghast": 4, "m.barrel": 1, "m.birchLog": 15, "b.ironShovel": 1, "p.obsidian": 43, "p.beeNest": 11, "u.whiteTerracotta": 3, "p.rabbit": 6, "q.pumpkin": 29, "c.leather": 26, "m.smoothBasalt": 284, "c.whiteWool": 2, "m.birchTrapdoor": 3, "q.playerHead": 5, "u.egg": 38, "m.deepslate": 1603, "p.blueTerracotta": 2, "u.bakedPotato": 167, "q.porkchop": 3, "m.roseBush": 24, "b.woodenSword": 9, "m.glowLichen": 2, "cu.crouchOneCm": 197931, "tc.temp": 1561, "q.netheriteChestplate": 1, "u.obsidian": 22, "q.oakSign": 1, "p.rottenFlesh": 394, "q.ironPickaxe": 1, "c.whiteBanner": 9, "p.cod": 36, "m.calcite": 251, "g.damageDealt": 200878, "q.goldOre": 2, "p.arrow": 356, "q.enchantedBook": 3, "c.bakedPotato": 24, "p.kelp": 29, "c.greenWool": 3, "c.craftingTable": 3, "p.dirt": 560, "q.suspiciousStew": 1, "u.fireworkRocket": 54, "m.playerHead": 2, "m.clay": 7, "m.dragonWallHead": 1, "m.stoneStairs": 3, "q.saddle": 2, "c.diamondChestplate": 1, "m.yellowTerracotta": 192, "m.soulSand": 1, "q.torch": 103, "p.magentaStainedGlass": 5, "p.magmaCream": 24, "m.yellowBed": 22, "u.cookedChicken": 126, "p.goldBlock": 13, "cu.interactWithLoom": 5, "b.diamondPickaxe": 2, "c.paper": 51, "c.ironIngot": 83, "u.cactus": 2, "p.pumpkin": 9, "q.diamond": 6, "m.ironBlock": 1, "m.pointedDripstone": 23, "p.azureBluet": 1, "p.enchantedBook": 2, "m.purpurSlab": 5, "m.endStoneBricks": 16, "p.purpurStairs": 1, "p.mossyStoneBricks": 524, "p.allium": 37, "g.sneakTime": 73042, "c.junglePlanks": 64, "p.cryingObsidian": 9, "p.beehive": 1, "u.yellowBed": 19, "q.mossBlock": 7, "m.brewingStand": 1, "p.acaciaLog": 33, "p.crackedStoneBricks": 343, "p.stone": 989, "p.lightGrayTerracotta": 192, "p.dripstoneBlock": 55, "q.flint": 31, "c.charcoal": 140, "m.magentaStainedGlass": 5, "q.boneMeal": 258, "p.salmon": 20, "c.bucket": 5, "m.torch": 80, "p.oakBoat": 5, "m.scaffolding": 7, "m.cactus": 1, "c.ironLeggings": 2, "c.lightGrayDye": 2, "c.painting": 5, "p.diamond": 20, "c.whiteShulkerBox": 2, "color": 0, "m.purpurStairs": 1, "b.ironBoots": 1, "u.magmaBlock": 1, "p.netherrack": 13991, "p.crossbow": 1, "b.ironPickaxe": 1, "q.trident": 1, "q.ladder": 480, "cu.aviateOneCm": 5898095, "q.rawIron": 5, "p.bone": 370, "m.redstoneWire": 3, "m.shulkerBox": 13, "g.interactWithCartographyTable": 3, "u.boneMeal": 100, "m.whiteTulip": 1, "c.netheriteChestplate": 1, "c.netheriteLeggings": 1, "g.mobKills": 1990, "q.magmaCream": 47, "p.diamondHelmet": 1, "cusNetPor": 0, "p.enderChest": 3, "g.animalsBred": 36, "q.ironIngot": 31, "q.redMushroom": 3, "p.ironOre": 379, "p.pumpkinSeeds": 128, "p.playerHead": 17, "c.glassBottle": 9, "u.spyglass": 13, "p.snowball": 201, "q.bow": 12, "c.cookedBeef": 38, "p.ironBlock": 9, "m.potatoes": 62, "p.birchStairs": 10, "m.spawner": 17, "k.caveSpider": 61, "u.potato": 96, "q.lapisOre": 21, "cu.climbOneCm": 252415, "p.netherWartBlock": 4, "q.diamondSword": 4, "q.goldIngot": 26, "q.ironOre": 191, "p.netherGoldOre": 7, "g.level": 39, "m.endStone": 4, "p.deepslateLapisOre": 1, "p.beef": 50, "c.beehive": 1, "c.furnace": 6, "g.playTime": 5520458, "g.openChest": 1331, "q.wheatSeeds": 13, "c.bowl": 8, "m.emeraldBlock": 1, "c.ironHoe": 1, "u.honeyBlock": 3, "q.glowBerries": 6, "u.basalt": 71, "q.cod": 31, "p.lilac": 8, "u.diamondShovel": 3435, "p.brewingStand": 2, "u.limeCarpet": 11, "c.ironBoots": 1, "u.pointedDripstone": 1, "m.shroomlight": 32, "m.mossyStoneBrickSlab": 3, "m.whiteWool": 4, "c.rawCopperBlock": 148, "m.netherQuartzOre": 147, "m.blackstone": 817, "m.darkOakSlab": 7, "c.ironChestplate": 2, "cu.horseOneCm": 229800, "p.whiteBed": 4, "p.cactus": 2, "m.warpedFungus": 12, "u.snowball": 40, "p.crimsonNylium": 2, "q.musicDiscBlocks": 2, "c.sugar": 5, "m.tallGrass": 85, "k.enderman": 317, "u.deepslateRedstoneOre": 64, "u.stoneButton": 1, "p.blueIce": 14, "p.melonSlice": 20, "m.dirt": 203, "m.tuff": 133, "u.lightGrayCarpet": 13, "b.leatherBoots": 1, "u.greenBed": 1, "q.smoothBasalt": 18, "c.diamondShovel": 1, "u.whiteWool": 4, "m.smoker": 2, "m.fern": 37, "u.ironBlock": 6, "q.goldenHelmet": 3, "q.beef": 3, "m.pumpkin": 11, "m.cobweb": 202, "p.phantomMembrane": 1, "p.netheriteIngot": 4, "q.goldenHoe": 1, "p.netheriteSword": 1, "p.whiteBanner": 8, "p.pointedDripstone": 62, "u.ironShovel": 489, "q.oakSapling": 7, "k.blaze": 44, "k.slime": 5, "u.flowerPot": 2, "p.redMushroomBlock": 47, "q.ancientDebris": 13, "p.diamondPickaxe": 2, "u.oakBoat": 4, "p.rabbitHide": 5, "u.peony": 24, "q.bucket": 1, "c.warpedSign": 3, "p.cutSandstone": 1, "q.cobbledDeepslate": 59, "d.player": 2, "m.brownMushroom": 3, "u.lapisOre": 20, "g.interactWithFurnace": 134, "g.interactWithLoom": 5, "q.amethystBlock": 6, "p.birchBoat": 7, "q.oakFence": 5, "q.yellowBed": 1, "q.enderPearl": 16, "u.wheatSeeds": 14, "m.deepslateDiamondOre": 109, "c.flowerPot": 2, "p.oakLog": 57, "u.bucket": 33, "m.deepslateLapisOre": 9, "c.cake": 1, "cu.damageBlockedByShield": 9745, "m.mushroomStem": 46, "c.brownShulkerBox": 1, "q.calcite": 12, "q.netherQuartzOre": 1, "p.crimsonFungus": 9, "m.tripwire": 6, "p.limeCarpet": 25, "p.terracotta": 266, "q.musicDiscFar": 1, "c.honeycombBlock": 12, "p.packedIce": 98, "m.stoneBricks": 796, "p.lantern": 5, "p.stickyPiston": 15, "p.fireworkRocket": 64, "p.waterBucket": 2, "q.stick": 19, "u.cookie": 6, "p.birchFence": 1, "p.bucket": 1, "q.egg": 1, "m.deadBush": 9, "q.blazeRod": 18, "p.calcite": 249, "p.mutton": 77, "g.interactWithGrindstone": 5, "q.map": 7, "p.crimsonRoots": 23, "u.oakSign": 2, "u.sweetBerries": 5, "m.redMushroom": 4, "q.sand": 59, "g.hunger": 15, "u.stoneBrickStairs": 73, "rc_display": 0, "u.bow": 389, "p.stoneBricks": 907, "q.stickyPiston": 9, "p.rawCopper": 1372, "c.stoneAxe": 1, "m.crimsonRoots": 2, "tc.use_stone": 0, "g.playRecord": 1, "p.leather": 18, "g.health": 18, "q.apple": 10, "u.cobblestone": 133, "u.lantern": 35, "k.bat": 7, "c.ironShovel": 2, "cu.walkUnderWaterOneCm": 429617, "p.fishingRod": 2, "p.stonePickaxe": 1, "p.ancientDebris": 44, "q.brewingStand": 1, "u.endRod": 1, "m.cornflower": 1, "c.stoneSword": 1, "b.shield": 1, "m.oakTrapdoor": 3, "m.cocoa": 4, "m.birchFence": 1, "u.shield": 313, "p.blueOrchid": 8, "cu.interactWithBrewingstand": 7, "cu.interactWithBlastFurnace": 33, "p.peony": 16, "m.sandstone": 14, "u.acaciaLog": 6, "u.magentaStainedGlass": 2, "q.oakLeaves": 1, "m.cobblestoneWall": 1, "m.magmaBlock": 7, "p.lapisLazuli": 277, "q.lilac": 1, "m.netherGoldOre": 28, "p.witherSkeletonSkull": 3, "m.deepslateRedstoneOre": 82, "u.oakPlanks": 94, "p.mossyCobblestone": 4, "u.copperOre": 192, "q.wheat": 4, "q.kelp": 4, "g.enchantItem": 14, "p.smoothBasalt": 290, "m.fire": 12, "u.birchStairs": 13, "u.mossCarpet": 1, "c.cookie": 24, "m.blueTerracotta": 2, "u.deepslate": 545, "u.pumpkin": 32, "g.armor": 20, "m.crimsonPlanks": 3, "p.copperOre": 58, "u.cookedPorkchop": 11, "cu.sprintOneCm": 11480159, "c.grayDye": 4, "k.zombieVillager": 4, "m.lilyOfTheValley": 9, "k.witherSkeleton": 46, "m.netherrack": 15519, "p.dragonHead": 1, "p.potion": 7, "m.seaLantern": 1, "q.cornflower": 1, "m.emeraldOre": 1, "m.netherBrickFence": 4, "q.cobblestone": 150, "p.cobbledDeepslate": 631, "q.coalOre": 80, "p.shield": 1, "m.mossyStoneBricks": 540, "m.terracotta": 255, "tc.disabled": 0, "m.jungleLeaves": 17, "m.grass": 316, "q.redSand": 2, "c.ironAxe": 3, "d.zombie": 3, "TreeCapitator": 0, "p.porkchop": 56, "p.lightGrayWool": 46, "d.witherSkeleton": 1, "q.whiteShulkerBox": 2, "m.oakPlanks": 908, "p.cocoaBeans": 7, "p.egg": 44, "u.blueTerracotta": 2, "m.purpurBlock": 55, "p.yellowTerracotta": 192, "p.endStone": 7, "k.pillager": 5, "m.enderChest": 3, "m.redSand": 2, "u.ironSword": 260, "p.carrot": 9, "cu.interactWithFurnace": 134, "c.redstoneLamp": 4, "m.spruceLeaves": 20, "m.deepslateCopperOre": 1, "q.rail": 8, "c.goldenBoots": 4, "c.brewingStand": 8, "u.glassBottle": 186, "b.ironAxe": 1, "u.mushroomStew": 3, "q.dripstoneBlock": 26, "b.goldenBoots": 4, "q.fishingRod": 2, "u.smoothBasalt": 3, "m.kelpPlant": 3, "p.musicDiscCat": 2, "c.air": 0, "p.chicken": 54, "u.daylightDetector": 2, "m.ironBars": 8, "m.oakFence": 55, "c.greenBed": 1, "u.suspiciousStew": 9, "cu.flyOneCm": 9786898, "p.sunflower": 4, "p.ghastTear": 1, "k.zombie": 290, "p.diorite": 105, "p.oxeyeDaisy": 1, "c.glowstone": 1, "m.dandelion": 11, "g.drop": 638, "duraPing": 0, "m.netherBricks": 5, "m.seagrass": 1, "q.inkSac": 1, "c.smoker": 3, "q.goldBlock": 1, "u.torch": 2406, "c.pumpkinPie": 1, "u.darkOakFence": 45, "u.enderPearl": 27, "p.rawGold": 6, "u.netheriteSword": 265, "m.campfire": 12, "u.oakSapling": 4, "p.oakSign": 1, "cu.interactWithStonecutter": 4, "p.bow": 33, "m.acaciaLog": 4, "m.allium": 19, "g.timeSinceDeath": 552608, "p.string": 246, "q.stonePickaxe": 1, "u.brownMushroom": 1, "m.warpedWartBlock": 10, "p.goldNugget": 125, "p.dandelion": 10, "m.mycelium": 32, "m.crimsonStem": 113, "p.deepslate": 884, "p.grayCarpet": 6, "c.birchTrapdoor": 36, "u.stone": 651, "m.whiteTerracotta": 195, "u.pinkTulip": 3, "u.campfire": 38, "u.cobbledDeepslate": 787, "p.oakTrapdoor": 3, "m.snow": 29, "p.feather": 36, "p.yellowConcrete": 34, "q.melonSlice": 52, "u.sand": 29, "m.redMushroomBlock": 47, "b.ironLeggings": 1, "tc.valid": 0, "c.shears": 2, "u.oakFence": 5, "c.darkOakStairs": 4, "p.stoneBrickSlab": 520, "tc.use_diamond": 0, "q.deepslateLapisOre": 1, "cu.interactWithSmithingTable": 10, "m.crackedStoneBricks": 329, "u.musicDiscOtherside": 1, "m.copperOre": 260, "g.jump": 57705, "tc.damage": 513, "p.painting": 54, "m.chain": 1, "m.redNetherBricks": 3, "b.stoneSword": 1, "q.acaciaSapling": 4, "cu.walkOnWaterOneCm": 251511, "m.blueOrchid": 8, "q.azureBluet": 1, "m.stoneBrickStairs": 4, "u.gravel": 90, "q.deepslate": 131, "q.goldenBoots": 1, "u.honeycombBlock": 12, "g.damageTaken": 30033, "q.quartz": 2, "m.amethystBlock": 187, "p.stoneBrickStairs": 132, "u.netherBricks": 5, "q.jackOLantern": 32, "p.lilyPad": 1, "c.birchFence": 21, "p.trident": 1, "q.redstoneOre": 5, "tc.use_iron": 0, "q.diamondAxe": 2, "m.andesite": 115, "m.chest": 7, "q.whiteWool": 70, "u.enderChest": 1, "p.dragonEgg": 2, "g.interactWithBlastFurnace": 33, "q.jungleSapling": 16, "m.netherWartBlock": 6, "c.bow": 1, "p.itemFrame": 4, "p.cauldron": 8, "p.deepslateDiamondOre": 88, "u.dirt": 230, "c.boneMeal": 30, "c.copperIngot": 128, "c.diamondLeggings": 1, "p.charcoal": 160, "p.mossyStoneBrickSlab": 1, "u.goldBlock": 8, "m.sugarCane": 33, "m.sculkSensor": 13, "q.lantern": 9, "p.deepslateIronOre": 185, "q.bread": 15, "m.deepslateIronOre": 274, "u.ironOre": 2, "u.book": 1, "p.endStoneBricks": 16, "q.emerald": 8, "q.goldenCarrot": 12, "u.warpedSign": 1, "p.coal": 109, "q.andesite": 36, "m.wallTorch": 43, "u.diorite": 75, "g.sleepInBed": 128, "q.rottenFlesh": 36, "c.darkOakSlab": 24, "p.furnace": 3, "c.greenCarpet": 1, "p.enderEye": 1, "q.redstone": 36, "u.milkBucket": 3, "p.redTerracotta": 195, "p.goldOre": 14, "cu.talkedToVillager": 150, "m.sunflower": 5, "u.carrot": 2, "p.warpedFungus": 11, "m.crimsonFungus": 8, "u.dripstoneBlock": 19, "q.tuff": 12, "m.birchSlab": 5, "p.darkOakSlab": 7, "u.lilyOfTheValley": 9, "p.oakFence": 70, "k.skeleton": 396, "p.honeyBlock": 2, "u.ironPickaxe": 426, "q.spiderEye": 12, "m.darkOakFence": 7, "p.jungleSapling": 16, "c.darkOakFenceGate": 1, "p.redstone": 462, "p.chain": 1, "p.sand": 2069, "q.bowl": 1, "m.whiteWallBanner": 6, "m.honeyBlock": 2, "c.oakPlanks": 16, "m.stoneBrickSlab": 33, "cu.boatOneCm": 10036182, "p.shulkerBox": 13, "q.brownShulkerBox": 1, "q.yellowConcrete": 34, "p.rawIron": 150, "p.cobblestone": 393, "g.timeSinceRest": 193044, "p.spiderEye": 53, "p.glowInkSac": 36, "k.cow": 9, "p.redSand": 2, "p.stick": 513, "p.shulkerShell": 80, "q.poisonousPotato": 6, "p.sugarCane": 94, "m.bookshelf": 497, "u.stoneHoe": 124, "p.redstoneOre": 5, "q.elytra": 6, "p.filledMap": 2, "q.scaffolding": 111, "c.candle": 10, "u.pumpkinPie": 1, "g.openEnderchest": 33, "p.musicDisc11": 2, "g.totalWorldTime": 5520458, "p.poisonousPotato": 3, "c.darkOakFence": 39, "q.slimeBall": 1, "m.oxeyeDaisy": 1, "p.greenCarpet": 4, "q.honeyBottle": 15, "q.whiteTulip": 1, "q.terracotta": 10, "m.junglePlanks": 8, "u.craftingTable": 28, "p.orangeTerracotta": 192, "b.ironSword": 1, "m.beehive": 1, "c.whiteCarpet": 18, "m.dripstoneBlock": 64, "q.cookie": 3, "q.ironBlock": 3, "g.deathCount": 17, "q.salmon": 18, "q.lightGrayWool": 6, "q.netherGoldOre": 7, "u.fishingRod": 73, "c.stick": 444, "p.diamondSword": 3, "u.shears": 163, "cu.fallOneCm": 1056316, "u.diamondSword": 2769, "p.chest": 8, "q.pufferfish": 8, "cu.walkOneCm": 24224612, "u.lightGrayWool": 2, "p.lightGrayCarpet": 14, "u.crimsonPlanks": 3, "u.grindstone": 1, "q.bamboo": 171, "u.ironAxe": 132, "p.ladder": 669, "p.netherQuartzOre": 1, "m.oakLeaves": 72, "p.musicDiscFar": 1, "u.cookedBeef": 197, "q.rawCopper": 40, "p.elytra": 7, "p.lapisOre": 41, "p.redWool": 9, "u.granite": 8, "m.goldOre": 15, "p.sweetBerries": 5, "m.deepslateGoldOre": 120, "m.obsidian": 40, "m.farmland": 1, "q.ironNugget": 20, "p.netherBricks": 5, "p.carvedPumpkin": 35, "m.cobbledDeepslate": 29, "tc.use_netherite": 0, "q.grayWool": 16, "g.interactWithStonecutter": 4, "p.hayBlock": 14, "q.glowInkSac": 3, "p.lead": 34, "p.spyglass": 1, "p.weepingVines": 25, "p.whiteWool": 123, "p.stoneStairs": 2, "m.sand": 2310, "q.gunpowder": 35, "q.pointedDripstone": 16, "k.piglin": 5, "q.deepslateGoldOre": 15, "m.azureBluet": 1, "p.birchPlanks": 4, "g.inspectHopper": 5, "m.stone": 1295, "p.redNetherBricks": 3, "q.nameTag": 2, "q.ironAxe": 2, "q.netherrack": 7685, "p.bamboo": 4729, "q.potato": 8, "c.diamondHelmet": 1, "m.wheat": 11, "u.sugarCane": 14, "m.oakLog": 12, "m.grassBlock": 330, "g.talkedToVillager": 150, "p.potato": 236, "u.netherrack": 661, "q.charcoal": 1, "u.birchSlab": 5, "m.lantern": 5, "p.purpurPillar": 2, "q.deepslateDiamondOre": 18, "p.wheat": 16, "c.ironNugget": 72, "m.dirtPath": 25, "g.leaveGame": 44, "u.whiteBanner": 10, "q.goldenApple": 5, "u.diamondAxe": 2192, "m.purpurPillar": 2, "m.melon": 5, "m.bigDripleaf": 1, "u.brewingStand": 8, "cu.sleepInBed": 128, "u.birchTrapdoor": 6, "p.oakPlanks": 867, "p.barrel": 1, "p.bread": 8, "m.goldBlock": 4, "u.whiteBed": 5, "u.smoker": 7, "u.itemFrame": 9, "m.blastFurnace": 6, "p.birchSlab": 5, "m.cutSandstone": 1, "p.oakSapling": 62, "p.brownMushroom": 9, "u.flintAndSteel": 12, "p.diamondAxe": 3, "u.sunflower": 4, "u.greenCarpet": 4, "p.rabbitFoot": 2, "p.oakLeaves": 2, "u.bookshelf": 146, "p.cornflower": 1, "p.deepslateGoldOre": 111, "p.warpedStem": 67, "q.diorite": 24, "q.copperOre": 8, "u.darkOakSlab": 25, "p.flint": 180, "c.fishingRod": 1, "q.birchLog": 5, "u.jukebox": 1, "g.interactWithSmithingTable": 10}, "leggory": {"u.whiteWool": 2, "c.birchPlanks": 180, "m.pumpkin": 2, "tc.use_diamond": 0, "m.bamboo": 52, "cu.interactWithSmoker": 1, "p.craftingTable": 6, "m.copperOre": 11, "d.spider": 1, "g.jump": 2128, "tc.damage": 96, "g.playMinutes": 214, "m.coalOre": 73, "g.openBarrel": 5, "p.wheatSeeds": 21, "u.rottenFlesh": 5, "p.beetrootSeeds": 8, "cu.walkOnWaterOneCm": 4166, "p.bakedPotato": 34, "g.interactWithCraftingTable": 45, "g.damageTaken": 1829, "c.woodenSword": 1, "u.stoneShovel": 915, "d.creeper": 1, "m.cobblestoneStairs": 8, "u.stoneSword": 47, "tc.use_iron": 0, "b.woodenShovel": 1, "g.interactWithFurnace": 10, "u.cobblestoneSlab": 18, "m.chest": 2, "u.wheatSeeds": 1, "u.cookedMutton": 5, "g.interactWithBlastFurnace": 1, "p.grayWool": 2, "p.oakLog": 71, "u.mutton": 1, "u.dirt": 143, "p.beetroot": 6, "c.whiteBed": 1, "p.birchLog": 104, "k.sheep": 9, "u.beetrootSeeds": 8, "m.ironOre": 9, "p.coal": 115, "m.wallTorch": 9, "u.spiderEye": 1, "u.cookie": 1, "g.sleepInBed": 9, "c.woodenShovel": 1, "g.play": 214, "m.birchLog": 25, "p.mutton": 19, "d.skeleton": 1, "cu.talkedToVillager": 4, "g.hunger": 20, "u.bakedPotato": 17, "u.scaffolding": 7, "u.carrot": 6, "p.scaffolding": 5, "p.cobblestoneStairs": 8, "rc_display": 0, "b.woodenSword": 1, "m.birchPlanks": 26, "cu.crouchOneCm": 125, "tc.temp": 131, "p.rawCopper": 34, "c.stoneAxe": 4, "k.skeleton": 2, "p.cookie": 1, "tc.use_stone": 0, "g.health": 20, "p.rottenFlesh": 21, "c.torch": 20, "p.smoothStone": 2, "cu.walkUnderWaterOneCm": 1206, "g.damageDealt": 2377, "p.arrow": 2, "cu.playTime": 257940, "m.hayBlock": 17, "u.melonSlice": 1, "c.stoneSword": 1, "c.craftingTable": 1, "c.oakPlanks": 164, "p.dirt": 1658, "u.woodenSword": 44, "p.rawIron": 9, "m.smoothStone": 1, "b.woodenPickaxe": 1, "cu.interactWithBlastFurnace": 1, "c.woodenAxe": 1, "p.cobblestone": 827, "g.timeSinceRest": 338, "p.spiderEye": 1, "p.stick": 131, "p.torch": 12, "u.oakPlanks": 112, "m.craftingTable": 6, "b.stoneShovel": 6, "p.pumpkin": 4, "g.totalWorldTime": 257940, "p.apple": 4, "g.sneakTime": 385, "c.campfire": 1, "g.interactWithSmoker": 1, "g.armor": 0, "cu.sprintOneCm": 512296, "k.zombieVillager": 1, "u.craftingTable": 6, "g.deathCount": 4, "c.stonePickaxe": 4, "b.woodenAxe": 1, "g.bellRing": 2, "g.air": 300, "c.stick": 16, "m.torch": 1, "m.scaffolding": 2, "c.woodenPickaxe": 1, "cu.fallOneCm": 58285, "p.chest": 2, "cu.interactWithCampfire": 16, "cu.walkOneCm": 1080249, "tc.disabled": 0, "color": 0, "c.stoneShovel": 8, "m.grass": 41, "d.zombie": 1, "TreeCapitator": 0, "b.stoneAxe": 2, "p.lightGrayWool": 2, "p.bone": 8, "tc.use_gold": 0, "u.birchSapling": 20, "cu.interactWithCraftingTable": 45, "b.stonePickaxe": 3, "m.oakLeaves": 7, "m.oakPlanks": 3, "c.scaffolding": 6, "g.mobKills": 20, "cusNetPor": 0, "u.birchPlanks": 186, "u.woodenShovel": 64, "p.birchSapling": 34, "p.carrot": 26, "cu.interactWithFurnace": 10, "tc.use_netherite": 0, "p.playerHead": 3, "p.hayBlock": 34, "tc.sneak": 0, "m.potatoes": 9, "u.stonePickaxe": 429, "p.whiteWool": 14, "k.chicken": 2, "u.potato": 9, "cu.climbOneCm": 25472, "m.beetroots": 5, "p.chicken": 3, "g.level": 9, "p.birchPlanks": 26, "rc_help": 0, "m.stone": 381, "cu.flyOneCm": 288231, "p.diorite": 1, "k.zombie": 5, "u.stoneAxe": 200, "c.furnace": 4, "g.playTime": 257940, "m.diorite": 1, "g.drop": 1, "p.bamboo": 641, "duraPing": 0, "g.openChest": 136, "m.wheat": 1, "m.grassBlock": 223, "m.oakLog": 24, "u.woodenAxe": 20, "g.interactWithCampfire": 16, "g.talkedToVillager": 4, "p.potato": 73, "p.cookedMutton": 19, "u.torch": 26, "c.string": 4, "u.cobblestoneStairs": 16, "u.oakSapling": 17, "m.carrots": 4, "u.playerHead": 1, "tc.use_wood": 0, "u.chest": 8, "g.leaveGame": 2, "g.timeSinceDeath": 318, "p.string": 5, "m.whiteWool": 2, "u.oakLog": 21, "m.melon": 3, "u.jungleSign": 1, "c.chest": 6, "q.bakedPotato": 10, "u.furnace": 4, "cu.sleepInBed": 9, "p.oakPlanks": 3, "m.whiteBed": 3, "u.woodenPickaxe": 59, "u.whiteBed": 4, "p.whiteBed": 3, "u.campfire": 1, "p.oakSapling": 43, "k.spider": 1, "p.feather": 5, "m.tallGrass": 5, "c.cobblestoneStairs": 8, "c.cobblestoneSlab": 18, "p.melonSlice": 17, "m.dirt": 743, "tc.valid": 0}, "Shotoria_": {"m.powderSnow": 5, "u.beef": 6, "c.ironPickaxe": 19, "p.deepslateBrickStairs": 1, "q.string": 4, "u.diamondPickaxe": 7306, "m.bamboo": 7, "cu.interactWithSmoker": 1, "u.deepslateTiles": 16, "c.ironHelmet": 4, "c.stone": 512, "g.openBarrel": 218, "p.wheatSeeds": 85, "u.rottenFlesh": 1, "q.chicken": 2, "g.interactWithCraftingTable": 172, "c.darkOakPlanks": 368, "p.emerald": 1, "c.diamondBoots": 1, "c.polishedBlackstoneStairs": 4, "m.polishedBasalt": 4, "q.cutRedSandstone": 161, "p.blackWool": 3, "m.darkOakTrapdoor": 12, "m.largeFern": 2, "c.netherBrick": 1456, "u.roseBush": 1, "m.lapisOre": 43, "p.ironAxe": 2, "p.smoothRedSandstone": 18, "m.sprucePlanks": 3, "p.blackstone": 667, "p.crimsonStem": 1, "p.spruceLog": 586, "c.ladder": 117, "p.quartz": 731, "u.birchLog": 127, "p.jungleLog": 84, "c.spruceBoat": 3, "u.redNetherBricks": 635, "c.smoothRedSandstoneStairs": 4, "p.ironPickaxe": 2, "p.andesite": 44, "p.acaciaSapling": 8, "p.birchLog": 266, "u.yellowCarpet": 26, "q.dirt": 1, "m.orangeTerracotta": 2, "m.ironOre": 457, "p.slimeBall": 5, "u.sprucePlanks": 73, "m.spruceStairs": 2, "k.magmaCube": 43, "p.deepslateRedstoneOre": 12, "q.stone": 25, "q.ironShovel": 2, "q.ironLeggings": 1, "u.junglePlanks": 1, "u.glassPane": 29, "g.play": 1808, "p.oxidizedCopper": 1, "u.potion": 2, "d.skeleton": 6, "p.coalOre": 36, "p.spruceFence": 1, "u.waterBucket": 36, "p.redSandstone": 9, "m.polishedBlackstoneBricks": 329, "m.birchPlanks": 49, "m.birchLeaves": 1, "u.dandelion": 8, "p.ironIngot": 81, "c.darkOakDoor": 3, "u.andesite": 6, "b.diamondBoots": 1, "b.ironHelmet": 1, "c.torch": 188, "q.woodenSword": 1, "u.crossbow": 2, "cu.playTime": 2170611, "m.cobblestone": 79, "u.spruceSapling": 73, "u.pinkBed": 2, "u.woodenSword": 43, "p.blueWool": 1, "q.redNetherBricks": 37, "p.crimsonPlanks": 6, "m.redstoneOre": 51, "u.bricks": 1, "p.torch": 258, "p.darkOakTrapdoor": 12, "m.craftingTable": 17, "q.gravel": 10, "m.redWool": 2, "p.blazeRod": 2, "p.apple": 8, "m.deepslateBrickStairs": 1, "p.pinkWool": 1, "u.bread": 9, "g.interactWithSmoker": 1, "q.sweetBerries": 1, "k.pig": 4, "p.chiseledNetherBricks": 2, "c.diamondAxe": 1, "u.tuff": 1, "q.basalt": 2, "m.bricks": 1, "p.stonePressurePlate": 4, "c.brick": 852, "p.polishedBlackstoneBricks": 312, "p.clayBall": 1124, "m.oakStairs": 17, "p.redstoneBlock": 4, "u.netherQuartzOre": 8, "g.air": 300, "c.chiseledDeepslate": 1, "m.darkOakLog": 8, "g.interactWithLectern": 3, "q.diamondPickaxe": 1, "p.grindstone": 1, "u.polishedDeepslate": 1, "c.redstoneBlock": 194, "c.diamondPickaxe": 3, "c.stoneShovel": 1, "c.flintAndSteel": 2, "p.ironShovel": 3, "b.stoneAxe": 1, "m.quartzBricks": 22, "u.coalOre": 32, "tc.use_gold": 0, "m.basalt": 201, "cu.interactWithCraftingTable": 172, "b.stonePickaxe": 1, "m.soulSoil": 21, "u.polishedDiorite": 1, "c.oakBoat": 1, "u.apple": 8, "m.granite": 13, "u.birchPlanks": 139, "p.birchSapling": 76, "u.oakPressurePlate": 2, "p.spruceSapling": 196, "q.goldNugget": 2, "tc.sneak": 0, "m.furnace": 15, "cu.interactWithLectern": 3, "u.stonePickaxe": 130, "k.chicken": 2, "c.redNetherBricks": 590, "u.deepslateBrickSlab": 15, "p.magmaBlock": 5, "m.spruceLog": 145, "u.ironBoots": 1, "q.bone": 25, "p.glass": 7, "m.grindstone": 1, "u.oakStairs": 30, "u.stoneAxe": 72, "c.polishedBlackstoneBricks": 1, "m.diorite": 14, "m.tallSeagrass": 1, "c.barrel": 52, "u.barrel": 42, "c.crimsonPlanks": 268, "u.darkOakPlanks": 5, "m.gravel": 168, "q.flintAndSteel": 2, "m.redNetherBrickStairs": 4, "m.carrots": 7, "u.playerHead": 19, "u.chiseledDeepslate": 1, "tc.use_wood": 0, "q.coal": 1, "p.sprucePlanks": 8, "p.junglePlanks": 19, "u.jungleSign": 2, "u.furnace": 27, "m.whiteBed": 2, "cu.swimOneCm": 251828, "m.lightGrayCarpet": 8, "k.spider": 27, "p.basalt": 192, "p.roseBush": 1, "m.blackWool": 1, "c.crimsonSlab": 126, "p.spruceBoat": 2, "c.birchPlanks": 168, "u.acaciaPlanks": 4, "p.granite": 13, "c.deepslateBricks": 8, "m.darkOakStairs": 32, "p.craftingTable": 18, "u.deepslateLapisOre": 9, "q.granite": 5, "g.playMinutes": 1808, "m.coalOre": 597, "u.smoothRedSandstone": 140, "p.bakedPotato": 1, "u.ladder": 142, "q.dandelion": 1, "m.largeAmethystBud": 1, "c.redWool": 16, "q.whiteConcretePowder": 128, "p.redMushroom": 2, "p.gunpowder": 6, "p.netherBrickStairs": 11, "c.woodenSword": 1, "d.creeper": 5, "p.tuff": 154, "m.rail": 1, "u.stoneSword": 58, "k.creeper": 3, "p.whiteConcrete": 138, "p.darkOakSapling": 14, "p.gravel": 230, "m.composter": 1, "c.stoneBricks": 321, "u.grassBlock": 6, "u.deepslateBrickStairs": 17, "m.whiteConcrete": 10, "u.redCarpet": 16, "u.darkOakStairs": 68, "u.goldenApple": 1, "u.whiteConcrete": 10, "u.deepslateBricks": 1027, "k.sheep": 50, "m.polishedDeepslate": 1, "c.leatherHelmet": 1, "c.ironBlock": 92, "c.oakDoor": 6, "m.jungleLog": 1, "c.cookedChicken": 1, "m.barrel": 17, "m.birchLog": 59, "p.amethystShard": 16, "b.ironShovel": 4, "q.playerHead": 1, "u.egg": 5, "m.deepslate": 1926, "u.bakedPotato": 259, "q.craftingTable": 1, "u.netherBrickStairs": 13, "m.roseBush": 1, "cu.crouchOneCm": 366636, "tc.temp": 1561, "q.grass": 6, "m.lightBlueWool": 4, "u.chiseledStoneBricks": 1, "p.rottenFlesh": 106, "m.frostedIce": 5, "u.netherWart": 1110, "u.blackWool": 2, "g.damageDealt": 62903, "p.arrow": 105, "c.bakedPotato": 259, "c.craftingTable": 2, "p.dirt": 945, "m.playerHead": 7, "m.clay": 281, "c.diamondChestplate": 1, "m.soulSand": 102, "p.magmaCream": 1, "u.cookedChicken": 1, "p.goldBlock": 13, "b.diamondPickaxe": 2, "u.strippedBirchLog": 23, "c.ironIngot": 984, "u.cactus": 2, "q.diamond": 1, "u.deepslateDiamondOre": 12, "m.ironBlock": 110, "m.oakDoor": 1, "m.pointedDripstone": 2, "u.oakTrapdoor": 1, "q.woodenPickaxe": 1, "p.polishedBlackstoneStairs": 11, "q.feather": 2, "g.sneakTime": 95951, "c.junglePlanks": 4, "m.lilyPad": 3, "m.brewingStand": 1, "p.acaciaLog": 18, "q.pinkBed": 1, "p.stone": 1821, "m.mediumAmethystBud": 1, "p.dripstoneBlock": 69, "u.stonecutter": 2, "q.flint": 4, "c.charcoal": 115, "p.darkOakStairs": 32, "p.redTulip": 1, "m.oakSapling": 12, "p.grassBlock": 6, "p.salmon": 3, "c.bucket": 2, "m.torch": 105, "p.oakBoat": 3, "c.ironLeggings": 3, "c.lightGrayCarpet": 15, "c.polishedBlackstone": 1, "c.spruceSlab": 90, "p.diamond": 90, "color": 0, "b.ironBoots": 1, "u.magmaBlock": 1, "p.netherrack": 1739, "p.crossbow": 4, "b.ironPickaxe": 20, "d.magmaCube": 1, "p.bone": 148, "u.ironHelmet": 1, "u.birchSapling": 41, "u.oakDoor": 3, "u.boneMeal": 150, "c.lightBlueDye": 4, "g.mobKills": 471, "cusNetPor": 0, "m.strippedDarkOakLog": 2, "g.animalsBred": 25, "p.ironOre": 1, "p.spruceStairs": 2, "p.playerHead": 34, "q.bow": 7, "c.cookedBeef": 52, "p.ironBlock": 109, "m.potatoes": 54, "m.spawner": 1, "k.caveSpider": 7, "c.bricks": 1208, "u.potato": 59, "cu.climbOneCm": 536557, "p.ironLeggings": 2, "m.stonecutter": 2, "p.glassPane": 11, "p.spruceSlab": 34, "p.soulSoil": 21, "p.netherGoldOre": 23, "g.level": 38, "p.deepslateLapisOre": 9, "m.glowstone": 88, "p.beef": 73, "q.lapisLazuli": 36, "c.furnace": 12, "g.playTime": 2170611, "g.openChest": 1008, "q.wheatSeeds": 49, "m.acaciaPlanks": 3, "u.basalt": 5, "u.diamondShovel": 2752, "p.brewingStand": 1, "c.sprucePlanks": 304, "p.strippedSpruceLog": 6, "c.ironBoots": 4, "u.composter": 1, "p.polishedDeepslate": 1, "u.pointedDripstone": 19, "m.deepslateBricks": 343, "c.goldBlock": 47, "m.netherQuartzOre": 475, "m.blackstone": 676, "q.strippedCrimsonStem": 1, "m.darkOakSlab": 45, "c.ironChestplate": 3, "c.netherBricks": 32, "p.whiteBed": 2, "p.cactus": 4, "q.stoneSword": 1, "q.ironChestplate": 1, "m.tallGrass": 16, "q.ironBoots": 1, "u.deepslateRedstoneOre": 12, "m.glass": 7, "m.dirt": 819, "m.tuff": 175, "u.lightGrayCarpet": 14, "c.diamondShovel": 1, "m.fern": 1, "u.ironBlock": 111, "u.spruceSlab": 94, "c.acaciaPlanks": 4, "u.terracotta": 1, "d.spider": 3, "m.pinkWool": 1, "q.acaciaLog": 1, "p.whiteBanner": 2, "p.pointedDripstone": 19, "p.acaciaPlanks": 3, "u.ironShovel": 1171, "q.oakSapling": 1, "p.quartzBlock": 1, "k.blaze": 4, "k.slime": 8, "u.smoothRedSandstoneStairs": 4, "p.chiseledDeepslate": 1, "c.oakStairs": 24, "u.oakBoat": 4, "u.stoneShovel": 131, "q.cobbledDeepslate": 29, "d.player": 6, "p.yellowCarpet": 2, "g.interactWithFurnace": 602, "c.oakTrapdoor": 2, "u.spruceLog": 459, "m.yellowCarpet": 2, "q.deepslateBricks": 8, "u.wheatSeeds": 33, "m.deepslateDiamondOre": 78, "q.crossbow": 3, "p.bricks": 1, "p.oakLog": 119, "u.bucket": 36, "p.strippedDarkOakLog": 2, "m.deepslateLapisOre": 55, "q.netherQuartzOre": 1, "m.playerWallHead": 13, "m.tripwire": 3, "p.terracotta": 1, "m.stoneBricks": 25, "q.stick": 5, "m.polishedBlackstoneStairs": 11, "m.deadBush": 9, "c.copperBlock": 76, "u.jungleLog": 2, "c.pinkBed": 2, "p.mutton": 76, "u.oakSign": 1, "u.sweetBerries": 2, "p.soulSand": 102, "m.chiseledDeepslate": 1, "g.hunger": 20, "p.cutRedSandstone": 101, "u.polishedGranite": 1, "q.oakTrapdoor": 1, "u.bow": 101, "p.stoneBricks": 23, "m.netherWart": 1046, "p.rawCopper": 538, "c.stoneAxe": 1, "tc.use_stone": 0, "c.pinkStainedGlass": 64, "p.leather": 34, "g.health": 20, "u.cobblestone": 81, "u.string": 7, "c.ironShovel": 4, "q.spruceBoat": 5, "cu.walkUnderWaterOneCm": 259660, "g.damageAbsorbed": 38, "m.glassPane": 11, "c.stoneSword": 1, "u.pinkWool": 13, "p.strippedBirchLog": 27, "u.darkOakDoor": 1, "u.acaciaLog": 3, "u.ironChestplate": 1, "m.redSandstone": 9, "m.magmaBlock": 5, "p.lapisLazuli": 681, "m.netherGoldOre": 30, "m.netherBrickStairs": 13, "m.deepslateRedstoneOre": 139, "u.oakPlanks": 494, "p.chiseledStoneBricks": 1, "u.copperOre": 1, "q.wheat": 1, "u.crimsonStem": 18, "g.enchantItem": 17, "p.polishedBasalt": 4, "m.fire": 4, "c.quartzBlock": 185, "m.cutRedSandstone": 4, "u.deepslate": 641, "c.stonePressurePlate": 2, "g.armor": 13, "m.crimsonPlanks": 6, "p.copperOre": 1, "cu.sprintOneCm": 3586523, "k.zombieVillager": 2, "k.witherSkeleton": 3, "m.netherrack": 2265, "c.stonePickaxe": 1, "m.emeraldOre": 1, "p.oakDoor": 1, "u.chiseledNetherBricks": 4, "m.redTulip": 1, "q.cobblestone": 30, "c.woodenPickaxe": 1, "p.cobbledDeepslate": 987, "c.writableBook": 1, "m.terracotta": 1, "tc.disabled": 0, "u.redMushroom": 2, "m.grass": 72, "c.ironAxe": 6, "d.zombie": 7, "m.chiseledStoneBricks": 1, "c.lapisBlock": 120, "TreeCapitator": 0, "q.orangeTerracotta": 1, "u.oakSlab": 8, "p.porkchop": 10, "p.lightGrayWool": 1, "d.witherSkeleton": 1, "q.netherWart": 2, "m.oakPlanks": 505, "u.diamondBlock": 9, "p.egg": 5, "u.soulSand": 102, "k.pillager": 14, "m.redSand": 2665, "g.playerKills": 11, "p.carrot": 23, "cu.interactWithFurnace": 602, "u.acaciaSapling": 2, "m.spruceLeaves": 14, "m.deepslateCopperOre": 3, "p.quartzBricks": 22, "b.ironAxe": 5, "c.chiseledStoneBricks": 1, "q.dripstoneBlock": 1, "u.writableBook": 3, "c.darkOakTrapdoor": 28, "c.redNetherBrickStairs": 32, "c.air": 0, "p.chicken": 3, "u.glass": 11, "p.deepslateTiles": 16, "p.oakStairs": 17, "u.soulSoil": 1, "b.diamondHelmet": 1, "cu.flyOneCm": 3004647, "k.zombie": 118, "p.diorite": 12, "m.dandelion": 7, "m.strippedSpruceLog": 6, "g.drop": 782, "p.netherWart": 2194, "duraPing": 0, "m.smallAmethystBud": 1, "p.darkOakPlanks": 4, "m.netherBricks": 18, "c.spruceStairs": 20, "q.chiseledNetherBricks": 2, "p.ironHelmet": 1, "u.torch": 458, "c.redSandstone": 641, "p.rawGold": 351, "u.oakSapling": 37, "cu.interactWithStonecutter": 33, "p.bow": 8, "m.acaciaLog": 3, "g.timeSinceDeath": 35297, "c.bread": 9, "p.string": 34, "p.goldNugget": 19, "p.dandelion": 9, "u.oakLog": 24, "m.crimsonStem": 1, "p.deepslate": 713, "c.goldIngot": 381, "q.bakedPotato": 1, "m.oakSlab": 4, "d.pillager": 2, "c.polishedDeepslate": 12, "u.stone": 80, "c.oakSlab": 12, "p.grass": 18, "u.cobbledDeepslate": 9, "m.polishedDiorite": 1, "p.feather": 3, "u.sand": 13, "m.redstoneBlock": 4, "c.blueWool": 2, "m.smoothRedSandstone": 18, "u.pinkStainedGlass": 21, "b.ironLeggings": 1, "tc.valid": 0, "m.darkOakPlanks": 4, "c.shears": 6, "c.darkOakStairs": 40, "tc.use_diamond": 0, "m.copperOre": 122, "g.jump": 25457, "tc.damage": 1077, "p.deepslateBrickSlab": 4, "c.redCarpet": 24, "m.redNetherBricks": 176, "p.lightBlueWool": 4, "cu.walkOnWaterOneCm": 331820, "p.strippedCrimsonStem": 22, "u.gravel": 60, "q.deepslate": 7, "u.deepslateIronOre": 52, "m.amethystCluster": 4, "g.damageTaken": 33914, "u.netherBricks": 13, "p.lilyPad": 18, "m.spruceFence": 1, "m.strippedBirchLog": 27, "tc.use_iron": 0, "q.diamondAxe": 1, "m.andesite": 46, "c.pinkWool": 40, "m.chest": 20, "c.quartzBricks": 4, "u.strippedSpruceLog": 5, "u.polishedBlackstoneStairs": 50, "u.copperBlock": 1, "c.bow": 1, "c.polishedBlackstoneBrickStairs": 32, "q.ironHelmet": 2, "p.deepslateDiamondOre": 24, "u.dirt": 704, "c.boneMeal": 150, "c.copperIngot": 832, "c.diamondLeggings": 1, "u.goldBlock": 84, "m.sugarCane": 15, "p.deepslateIronOre": 52, "q.bread": 1, "m.deepslateIronOre": 394, "u.ironOre": 1, "p.oakSlab": 4, "p.coal": 859, "m.wallTorch": 74, "u.diorite": 3, "m.quartzBlock": 1, "g.sleepInBed": 49, "q.rottenFlesh": 37, "c.darkOakSlab": 126, "p.furnace": 15, "u.grass": 12, "cu.talkedToVillager": 1, "u.spruceFence": 19, "u.carrot": 22, "c.oakSign": 3, "u.dripstoneBlock": 3, "q.tuff": 20, "p.darkOakSlab": 45, "k.skeleton": 93, "c.yellowCarpet": 24, "u.ironPickaxe": 6441, "q.spiderEye": 2, "p.deepslateBricks": 341, "p.jungleSapling": 7, "u.redstoneBlock": 4, "p.redstone": 869, "m.deepslateTiles": 16, "p.sand": 86, "u.quartzBlock": 1, "c.oakPlanks": 336, "cu.boatOneCm": 2767992, "p.glowstone": 62, "p.glowstoneDust": 110, "p.rawIron": 1001, "u.blueWool": 3, "u.crimsonSlab": 90, "p.cobblestone": 3369, "g.timeSinceRest": 35484, "c.diamondBlock": 13, "p.spiderEye": 4, "p.glowInkSac": 17, "k.cow": 32, "p.redSand": 2558, "p.stick": 608, "m.strippedCrimsonStem": 21, "p.sugarCane": 32, "m.ladder": 58, "c.polishedDiorite": 1, "u.polishedBasalt": 4, "b.stoneShovel": 1, "u.darkOakSapling": 2, "g.totalWorldTime": 2170611, "p.darkOakLog": 224, "u.redSandstone": 2, "d.piglin": 2, "u.cutRedSandstone": 4, "u.craftingTable": 18, "p.orangeTerracotta": 2, "u.strippedCrimsonStem": 4, "m.dripstoneBlock": 69, "u.spruceStairs": 22, "g.deathCount": 76, "q.salmon": 3, "q.lightGrayWool": 1, "m.blueWool": 1, "c.stick": 132, "u.deepslateGoldOre": 17, "c.lightBlueWool": 4, "u.shears": 1419, "cu.fallOneCm": 692288, "p.chest": 20, "p.stonecutter": 2, "m.deepslateBrickSlab": 3, "cu.walkOneCm": 8223699, "c.whiteConcretePowder": 128, "p.lightGrayCarpet": 8, "u.crimsonPlanks": 6, "m.polishedGranite": 1, "c.spruceFence": 18, "u.grindstone": 1, "c.lightGrayWool": 14, "u.ironAxe": 619, "p.ladder": 63, "p.netherQuartzOre": 9, "m.oakLeaves": 49, "c.deepslateTiles": 4, "u.cookedBeef": 25, "q.rawCopper": 1, "p.redWool": 2, "u.writtenBook": 1, "u.granite": 5, "m.goldOre": 80, "m.spruceSlab": 30, "p.sweetBerries": 3, "m.deepslateGoldOre": 176, "p.polishedGranite": 1, "p.netherBricks": 14, "p.redNetherBrickStairs": 4, "m.cobbledDeepslate": 1, "c.oakPressurePlate": 2, "u.lightBlueWool": 6, "tc.use_netherite": 0, "g.interactWithStonecutter": 33, "q.glowInkSac": 7, "u.darkOakLog": 134, "p.pinkBed": 1, "p.whiteWool": 48, "m.sand": 88, "k.piglin": 6, "c.yellowWool": 16, "m.oxidizedCopper": 1, "p.birchPlanks": 49, "p.polishedDiorite": 1, "m.stone": 4376, "p.redNetherBricks": 208, "p.crimsonSlab": 8, "m.crimsonSlab": 7, "m.stonePressurePlate": 3, "u.glowstone": 11, "q.ironAxe": 2, "q.netherrack": 256, "p.bamboo": 63, "u.stonePressurePlate": 4, "q.potato": 13, "c.diamondHelmet": 1, "m.wheat": 16, "p.composter": 1, "u.sugarCane": 32, "m.oakLog": 36, "m.grassBlock": 231, "g.talkedToVillager": 1, "u.polishedBlackstoneBricks": 330, "p.potato": 162, "u.netherrack": 87, "u.quartzBricks": 22, "p.wheat": 20, "u.chest": 38, "g.leaveGame": 62, "u.whiteBanner": 2, "u.diamondAxe": 2702, "u.netherGoldOre": 23, "u.brewingStand": 1, "c.chest": 38, "c.polishedGranite": 1, "cu.sleepInBed": 49, "p.oakPlanks": 445, "p.barrel": 17, "u.woodenPickaxe": 8, "m.goldBlock": 13, "m.chiseledNetherBricks": 4, "u.darkOakTrapdoor": 28, "q.leatherHelmet": 1, "m.birchSapling": 1, "u.redNetherBrickStairs": 26, "b.shears": 6, "u.stoneBricks": 250, "p.oakSapling": 46, "u.flintAndSteel": 62, "c.smoothRedSandstone": 584, "p.diamondAxe": 1, "b.diamondLeggings": 1, "p.deepslateGoldOre": 25, "q.diorite": 5, "u.darkOakSlab": 140, "p.flint": 18}, "The_Doctor_EV": {"cu.interactWithGrindstone": 5, "m.powderSnow": 7, "c.ironPickaxe": 7, "u.jungleDoor": 2, "q.string": 43, "u.cutCopperSlab": 497, "u.diamondPickaxe": 13278, "u.calcite": 4, "cu.interactWithSmoker": 21, "u.deepslateTiles": 62, "m.jungleFence": 7, "c.ironHelmet": 2, "c.stone": 1198, "u.cookedCod": 1, "g.openBarrel": 33, "p.wheatSeeds": 1835, "u.jungleSlab": 23, "p.whiteTulip": 33, "p.cutCopperSlab": 262, "g.interactWithCraftingTable": 266, "u.enchantedBook": 1, "c.darkOakPlanks": 264, "p.emerald": 20, "c.birchBoat": 1, "u.shulkerBox": 8, "p.blackWool": 1, "m.lapisOre": 27, "p.ironAxe": 1, "m.sprucePlanks": 6, "c.whiteDye": 64, "c.cookedMutton": 8, "p.spruceLog": 324, "q.diamondShovel": 1, "c.ladder": 42, "u.jungleBoat": 47, "p.jungleLog": 354, "c.jungleBoat": 1, "m.pinkConcrete": 1, "q.polishedDiorite": 1, "p.mossCarpet": 3, "p.andesite": 34, "m.caveVinesPlant": 8, "p.acaciaSapling": 13, "c.fletchingTable": 1, "p.birchLog": 101, "c.bookshelf": 25, "q.dirt": 672, "q.birchStairs": 1, "m.orangeTerracotta": 26, "m.ironOre": 224, "q.tripwireHook": 1, "p.slimeBall": 6, "u.sprucePlanks": 74, "m.peony": 3, "m.spruceStairs": 2, "k.magmaCube": 16, "p.deepslateRedstoneOre": 27, "q.stone": 431, "c.shield": 1, "u.glassPane": 43, "g.play": 2981, "q.yellowTerracotta": 14, "k.drowned": 2, "u.potion": 1, "d.skeleton": 1, "p.coalOre": 414, "p.spruceFence": 5, "u.waterBucket": 195, "u.scaffolding": 755, "p.scaffolding": 764, "c.lantern": 9, "m.birchPlanks": 4, "p.yellowBed": 29, "u.blastFurnace": 2, "u.redTerracotta": 21, "p.saddle": 2, "p.cookie": 2, "c.glassPane": 48, "p.ironIngot": 90, "c.darkOakDoor": 3, "b.ironHelmet": 1, "m.pinkTulip": 1, "c.torch": 696, "p.smoothStone": 1, "q.woodenSword": 1, "q.darkOakLog": 4, "p.pinkConcretePowder": 202, "cu.playTime": 3578194, "g.fillCauldron": 2, "m.cobblestone": 63, "g.damageBlockedByShield": 470, "u.spruceSapling": 24, "c.book": 29, "u.stoneBrickSlab": 26, "u.pinkBed": 13, "u.woodenSword": 32, "m.redstoneOre": 19, "p.glassBottle": 5, "u.rail": 667, "m.redTerracotta": 272, "p.tripwireHook": 3, "c.jungleStairs": 8, "u.bricks": 406, "p.torch": 198, "u.birchBoat": 24, "m.mossBlock": 1, "m.craftingTable": 6, "u.pinkConcrete": 1, "q.gravel": 494, "p.apple": 6, "c.pumpkinSeeds": 20, "p.orangeTulip": 81, "u.bread": 97, "c.campfire": 2, "g.interactWithAnvil": 5, "g.openShulkerBox": 50, "g.interactWithSmoker": 21, "k.pig": 10, "c.diamondAxe": 1, "u.tuff": 407, "c.composter": 1, "m.bricks": 78, "c.brick": 1848, "q.oakPlanks": 324, "cu.minecartOneCm": 223901, "p.clayBall": 3556, "p.redstoneBlock": 1, "g.air": 300, "q.snowball": 24, "m.darkOakLog": 13, "q.pinkConcretePowder": 64, "q.diamondPickaxe": 3, "c.jungleSlab": 96, "q.smoothStone": 1, "c.redstoneBlock": 31, "c.diamondPickaxe": 3, "p.cookedBeef": 3, "u.spruceDoor": 1, "c.spruceDoor": 3, "q.shulkerBox": 1, "p.leatherLeggings": 3, "b.stoneAxe": 1, "p.copperIngot": 155, "u.coalOre": 389, "tc.use_gold": 0, "m.packedIce": 32, "m.basalt": 536, "cu.interactWithCraftingTable": 266, "b.stonePickaxe": 2, "p.whiteTerracotta": 612, "u.polishedDiorite": 143, "cu.interactWithAnvil": 5, "c.oakBoat": 1, "u.apple": 6, "p.jungleFence": 13, "m.granite": 725, "u.birchPlanks": 72, "p.birchSapling": 33, "p.spruceSapling": 71, "u.whiteConcretePowder": 2, "q.goldNugget": 3, "tc.sneak": 0, "k.glowSquid": 2, "m.furnace": 22, "u.stonePickaxe": 263, "k.chicken": 7, "p.amethystBlock": 8, "m.beetroots": 1, "rc_help": 0, "m.spruceLog": 18, "q.bone": 6, "p.glass": 16, "q.pumpkinSeeds": 5, "u.stoneAxe": 35, "m.diorite": 200, "m.tallSeagrass": 2, "q.purpleBed": 1, "c.smoothStone": 8, "q.mossyCobblestone": 10, "p.pinkTulip": 3, "u.darkOakPlanks": 188, "k.witch": 3, "m.gravel": 1237, "q.arrow": 8, "p.goldIngot": 14, "m.carrots": 116, "m.podzol": 40, "q.carrot": 5, "u.playerHead": 5, "u.ironHoe": 185, "tc.use_wood": 0, "m.cutCopperStairs": 70, "q.coal": 1, "c.birchSlab": 198, "p.sprucePlanks": 8, "p.junglePlanks": 87, "u.melonSeeds": 19, "p.emeraldOre": 3, "u.jungleSign": 9, "u.furnace": 30, "m.whiteBed": 21, "c.ironSword": 1, "cu.swimOneCm": 38114, "m.poppy": 1, "k.spider": 24, "p.basalt": 1, "u.deepslateCopperOre": 70, "d.witch": 1, "m.lightGrayTerracotta": 129, "p.goldenHelmet": 2, "p.darkOakFence": 2, "m.birchStairs": 1, "c.birchPlanks": 380, "u.acaciaPlanks": 25, "m.whiteConcretePowder": 2, "k.rabbit": 2, "p.granite": 979, "m.pinkBed": 12, "p.craftingTable": 6, "u.deepslateLapisOre": 6, "q.granite": 8, "g.playMinutes": 2981, "m.coalOre": 1187, "m.mossyCobblestone": 8, "q.greenCarpet": 1, "p.bakedPotato": 5, "u.ladder": 7, "p.leatherBoots": 1, "m.cutCopperSlab": 258, "q.whiteConcretePowder": 528, "p.gunpowder": 19, "m.purpleBed": 10, "p.rail": 210, "d.creeper": 2, "p.tuff": 1978, "m.rail": 140, "u.loom": 1, "c.glass": 276, "u.stoneSword": 106, "k.creeper": 17, "p.stoneBrickWall": 8, "p.whiteConcrete": 555, "p.darkOakSapling": 7, "p.gravel": 1078, "m.tripwireHook": 3, "m.composter": 1, "u.cookedMutton": 6, "c.stoneBricks": 488, "p.suspiciousStew": 1, "m.whiteConcrete": 179, "k.salmon": 11, "m.vine": 5, "u.whiteConcrete": 179, "u.deepslateBricks": 1446, "k.sheep": 8, "c.diamondSword": 1, "m.jungleWallSign": 2, "cu.interactWithCartographyTable": 1, "m.snowBlock": 14, "c.ironBlock": 31, "c.oakDoor": 6, "q.filledMap": 2, "m.jungleLog": 8, "m.birchLog": 16, "p.amethystShard": 31, "b.ironShovel": 5, "p.boneMeal": 97, "u.whiteTerracotta": 395, "m.smoothBasalt": 5, "u.egg": 8, "m.deepslate": 2616, "u.bakedPotato": 200, "m.whiteBanner": 1, "cu.crouchOneCm": 303450, "tc.temp": 1561, "u.obsidian": 1, "q.grass": 2, "p.rottenFlesh": 187, "m.calcite": 287, "u.jungleFenceGate": 3, "g.damageDealt": 55827, "p.arrow": 119, "q.ironHoe": 1, "c.bakedPotato": 316, "m.tnt": 1, "u.melonSlice": 17, "c.craftingTable": 11, "p.dirt": 5141, "q.suspiciousStew": 2, "m.clay": 925, "p.jungleSign": 7, "c.jungleFenceGate": 3, "m.yellowTerracotta": 203, "q.torch": 18, "m.smoothStone": 1, "p.magmaCream": 1, "m.yellowBed": 28, "u.cookedChicken": 6, "b.diamondPickaxe": 1, "c.ironIngot": 595, "p.pumpkin": 70, "u.deepslateDiamondOre": 10, "m.pointedDripstone": 3, "c.itemFrame": 8, "u.floweringAzalea": 12, "p.azureBluet": 40, "u.cauldron": 2, "g.sneakTime": 102516, "c.junglePlanks": 530, "q.jungleBoat": 1, "u.yellowBed": 29, "p.acaciaLog": 32, "m.pinkConcretePowder": 2, "c.blastFurnace": 2, "p.stone": 1342, "p.lightGrayTerracotta": 246, "m.mediumAmethystBud": 1, "p.dripstoneBlock": 12, "u.stonecutter": 2, "q.flint": 46, "c.charcoal": 62, "g.bellRing": 13, "p.redTulip": 54, "p.grassBlock": 1, "p.salmon": 6, "c.bucket": 3, "m.torch": 120, "p.oakBoat": 3, "m.scaffolding": 119, "c.ironLeggings": 2, "c.spruceSlab": 204, "c.rail": 532, "p.diamond": 84, "color": 0, "c.cauldron": 1, "b.ironBoots": 1, "q.glowstone": 15, "p.pinkDye": 40, "p.crossbow": 1, "b.ironPickaxe": 7, "p.cookedRabbit": 2, "c.jungleFence": 223, "p.bone": 97, "u.oakDoor": 2, "m.redstoneWire": 3, "m.shulkerBox": 5, "g.interactWithCartographyTable": 1, "u.boneMeal": 592, "m.whiteTulip": 15, "g.mobKills": 382, "cu.tradedWithVillager": 30, "cusNetPor": 0, "u.woodenShovel": 87, "g.raidTrigger": 1, "p.goldenApple": 2, "q.ironIngot": 27, "p.ironOre": 77, "p.spruceStairs": 3, "p.pumpkinSeeds": 21, "p.playerHead": 5, "u.spyglass": 159, "p.snowball": 24, "q.bow": 7, "c.cookedBeef": 5, "m.potatoes": 274, "p.birchStairs": 2, "k.caveSpider": 2, "c.bricks": 1848, "u.tnt": 1, "c.jungleDoor": 3, "u.potato": 490, "cu.climbOneCm": 291579, "p.glassPane": 5, "p.spruceSlab": 11, "g.level": 28, "p.deepslateLapisOre": 6, "m.glowstone": 22, "p.beef": 5, "q.lapisLazuli": 67, "c.furnace": 14, "g.playTime": 3578194, "g.openChest": 1394, "q.wheatSeeds": 76, "m.acaciaPlanks": 1, "c.ironHoe": 1, "p.whiteDye": 17, "q.sprucePlanks": 12, "p.cookedPorkchop": 3, "p.lilac": 3, "u.diamondShovel": 7467, "c.sprucePlanks": 532, "c.diamondHoe": 1, "c.ironBoots": 2, "m.brownTerracotta": 66, "u.composter": 2, "m.deepslateBricks": 60, "g.tradedWithVillager": 30, "m.blackstone": 56, "m.darkOakSlab": 4, "c.ironChestplate": 2, "p.whiteBed": 20, "q.stoneSword": 1, "c.minecart": 2, "c.poweredRail": 72, "c.sugar": 132, "m.tallGrass": 59, "k.enderman": 1, "u.deepslateRedstoneOre": 27, "m.glass": 2, "p.melonSlice": 43, "m.dirt": 1705, "m.tuff": 1991, "u.cutCopperStairs": 197, "b.leatherBoots": 1, "c.diamondShovel": 2, "p.goldenBoots": 2, "m.pumpkin": 65, "m.cobweb": 39, "p.phantomMembrane": 2, "u.cookedRabbit": 1, "u.spruceSlab": 167, "c.acaciaPlanks": 128, "u.terracotta": 4, "m.jungleSlab": 10, "p.deepslateCopperOre": 70, "c.shulkerBox": 3, "m.jungleSapling": 6, "p.whiteBanner": 4, "p.pointedDripstone": 11, "p.acaciaPlanks": 1, "c.spyglass": 1, "u.ironShovel": 1297, "q.oakSapling": 4, "p.clay": 19, "k.blaze": 1, "k.slime": 3, "m.spruceSapling": 8, "q.lilyPad": 32, "p.poweredRail": 3, "k.mooshroom": 1, "p.melon": 25, "p.diamondPickaxe": 3, "q.acaciaPlanks": 4, "u.oakBoat": 4, "m.repeater": 1, "p.rabbitHide": 1, "q.darkOakSlab": 4, "q.bucket": 1, "q.cobbledDeepslate": 157, "q.spruceStairs": 2, "b.woodenShovel": 1, "u.lapisOre": 8, "g.interactWithFurnace": 522, "m.dispenser": 2, "p.birchBoat": 24, "u.wheatSeeds": 422, "m.deepslateDiamondOre": 55, "p.bricks": 68, "p.oakLog": 105, "u.bucket": 195, "q.rawGold": 1, "m.deepslateLapisOre": 17, "cu.damageBlockedByShield": 470, "m.playerWallHead": 1, "p.goldenLeggings": 2, "p.terracotta": 388, "q.musicDiscFar": 1, "u.fletchingTable": 1, "m.stoneBricks": 70, "p.azalea": 7, "q.stick": 29, "p.bucket": 1, "p.minecart": 11, "c.copperBlock": 160, "q.darkOakFence": 2, "p.calcite": 288, "c.pinkBed": 1, "p.mutton": 11, "g.interactWithGrindstone": 5, "q.sand": 439, "c.rawIron": 9, "c.pinkDye": 73, "g.hunger": 20, "u.stoneBrickStairs": 20, "u.polishedGranite": 330, "p.book": 48, "rc_display": 0, "u.bow": 85, "p.stoneBricks": 70, "q.jungleSlab": 1, "p.rawCopper": 1716, "c.stoneAxe": 1, "p.jungleBoat": 48, "tc.use_stone": 0, "p.leather": 7, "g.health": 20, "u.cobblestone": 367, "u.string": 2, "u.lantern": 9, "k.bat": 1, "c.ironShovel": 5, "cu.walkUnderWaterOneCm": 425605, "m.coarseDirt": 8, "u.minecart": 11, "m.cornflower": 16, "c.stoneSword": 1, "m.cocoa": 1, "u.shield": 16, "p.blueOrchid": 21, "u.pumpkinSeeds": 30, "m.cartographyTable": 1, "cu.interactWithBlastFurnace": 87, "u.darkOakDoor": 3, "p.peony": 4, "m.sandstone": 196, "q.oakLeaves": 7, "p.lapisLazuli": 505, "m.deepslateRedstoneOre": 74, "u.oakPlanks": 43, "p.mossyCobblestone": 10, "u.copperOre": 138, "q.wheat": 1, "g.enchantItem": 8, "p.smoothBasalt": 5, "q.spyglass": 1, "u.birchStairs": 21, "m.caveVines": 5, "q.sunflower": 64, "u.deepslate": 256, "g.armor": 1, "p.copperOre": 434, "u.cookedPorkchop": 22, "cu.sprintOneCm": 7585568, "k.zombieVillager": 1, "q.mossCarpet": 3, "m.netherrack": 575, "c.stonePickaxe": 2, "m.emeraldOre": 13, "c.cookedPorkchop": 19, "m.redTulip": 23, "q.cobblestone": 230, "p.cobbledDeepslate": 1759, "q.coalOre": 2, "p.shield": 1, "m.terracotta": 223, "tc.disabled": 0, "u.azalea": 4, "m.grass": 495, "c.ironAxe": 2, "m.pumpkinStem": 11, "c.lapisBlock": 36, "TreeCapitator": 0, "q.orangeTerracotta": 23, "p.porkchop": 19, "m.oakPlanks": 5, "p.cocoaBeans": 3, "c.scaffolding": 150, "q.beetrootSeeds": 3, "p.egg": 20, "p.yellowTerracotta": 222, "k.pillager": 9, "u.ironSword": 170, "p.carrot": 472, "cu.interactWithFurnace": 522, "m.stoneBrickWall": 9, "c.stoneBrickSlab": 108, "m.spruceLeaves": 13, "m.cauldron": 1, "m.deepslateCopperOre": 177, "b.ironAxe": 2, "q.dripstoneBlock": 7, "c.air": 0, "u.glass": 24, "p.deepslateTiles": 6, "cu.flyOneCm": 1042233, "p.sunflower": 257, "k.zombie": 133, "p.diorite": 185, "m.dandelion": 23, "g.drop": 503, "duraPing": 0, "p.darkOakPlanks": 1, "c.smoker": 2, "u.torch": 895, "p.rawGold": 29, "m.campfire": 1, "m.jungleStairs": 3, "cu.interactWithStonecutter": 33, "p.bow": 11, "c.leatherBoots": 2, "m.acaciaLog": 6, "g.timeSinceDeath": 238218, "c.bread": 218, "p.string": 65, "p.dandelion": 43, "p.deepslate": 533, "c.goldIngot": 23, "q.bakedPotato": 1, "u.stone": 45, "p.grass": 4, "m.whiteTerracotta": 482, "c.pinkConcretePowder": 264, "m.poweredRail": 2, "u.campfire": 2, "u.cobbledDeepslate": 85, "m.polishedDiorite": 97, "q.coarseDirt": 1, "m.snow": 4, "p.floweringAzalea": 23, "p.feather": 2, "p.yellowConcrete": 2, "q.melonSlice": 18, "u.sand": 51, "m.redstoneBlock": 1, "c.loom": 1, "tc.valid": 0, "u.cartographyTable": 1, "m.darkOakPlanks": 1, "u.clay": 462, "c.shears": 1, "p.stoneBrickSlab": 26, "tc.use_diamond": 0, "m.copperOre": 694, "g.jump": 27828, "tc.damage": 152, "p.beetrootSeeds": 4, "cu.walkOnWaterOneCm": 411072, "m.blueOrchid": 21, "p.jungleSlab": 9, "m.stoneBrickStairs": 17, "c.clay": 443, "u.gravel": 3, "q.deepslate": 211, "u.deepslateIronOre": 53, "m.amethystCluster": 4, "g.damageTaken": 20886, "u.stoneBrickWall": 9, "m.amethystBlock": 8, "p.woodenHoe": 1, "p.stoneBrickStairs": 15, "p.lilyPad": 47, "m.spruceFence": 5, "tc.use_iron": 0, "q.diamondAxe": 1, "m.andesite": 35, "p.leatherChestplate": 1, "c.pinkWool": 5, "m.chest": 15, "c.birchStairs": 20, "q.whiteWool": 3, "q.leatherBoots": 1, "g.interactWithBlastFurnace": 87, "q.jungleSapling": 4, "c.bow": 2, "p.itemFrame": 2, "p.cauldron": 1, "p.deepslateDiamondOre": 11, "u.dirt": 2878, "c.boneMeal": 297, "c.copperIngot": 1464, "p.charcoal": 2, "m.sugarCane": 136, "p.deepslateIronOre": 53, "q.bread": 24, "m.deepslateIronOre": 111, "u.book": 6, "u.ironOre": 72, "c.wheat": 153, "q.emerald": 2, "p.chestMinecart": 1, "p.coal": 1266, "p.cookedChicken": 12, "q.andesite": 21, "m.wallTorch": 68, "c.stoneBrickStairs": 20, "u.redstoneOre": 8, "g.sleepInBed": 161, "c.woodenShovel": 2, "q.rottenFlesh": 66, "p.furnace": 20, "u.map": 2, "q.redstone": 8, "p.redTerracotta": 517, "cu.talkedToVillager": 56, "m.sunflower": 72, "p.purpleBed": 11, "p.coarseDirt": 8, "u.spruceFence": 125, "u.diamondHoe": 1409, "u.carrot": 335, "m.floweringAzalea": 24, "q.tuff": 916, "m.birchSlab": 10, "p.darkOakSlab": 4, "k.skeleton": 94, "m.rawIronBlock": 2, "u.pinkConcretePowder": 2, "u.ironPickaxe": 1742, "q.spiderEye": 3, "u.emeraldOre": 3, "m.darkOakFence": 2, "p.deepslateBricks": 58, "p.jungleSapling": 41, "q.phantomMembrane": 1, "u.redstoneBlock": 25, "c.melonSeeds": 48, "p.redstone": 300, "m.deepslateTiles": 6, "p.goldenHoe": 2, "p.sand": 963, "g.useCauldron": 1, "c.cookedSalmon": 4, "m.hayBlock": 17, "c.oakPlanks": 308, "m.stoneBrickSlab": 22, "cu.boatOneCm": 9467758, "p.glowstone": 20, "p.shulkerBox": 6, "p.rawIron": 304, "b.woodenPickaxe": 1, "p.cobblestone": 846, "g.timeSinceRest": 120181, "p.spiderEye": 10, "p.glowInkSac": 20, "u.jungleStairs": 11, "k.cow": 2, "p.stick": 480, "p.ironSword": 1, "q.poisonousPotato": 2, "p.sugarCane": 217, "m.bookshelf": 16, "m.ladder": 1, "p.redstoneOre": 8, "p.filledMap": 3, "q.scaffolding": 71, "p.dispenser": 2, "g.totalWorldTime": 3578194, "p.whiteConcretePowder": 154, "p.poisonousPotato": 9, "q.jungleFence": 4, "p.darkOakLog": 104, "u.jungleSapling": 21, "q.junglePlanks": 224, "p.greenCarpet": 1, "m.junglePlanks": 3, "u.craftingTable": 19, "p.orangeTerracotta": 23, "u.poweredRail": 31, "m.dripstoneBlock": 19, "g.deathCount": 14, "c.stick": 588, "u.deepslateGoldOre": 7, "cu.fallOneCm": 434240, "u.diamondSword": 761, "p.chest": 13, "p.stonecutter": 1, "p.polishedDioriteSlab": 128, "cu.walkOneCm": 14207095, "c.whiteConcretePowder": 376, "m.polishedGranite": 272, "c.spruceFence": 120, "p.pinkConcrete": 129, "u.ironAxe": 220, "p.ladder": 1, "p.musicDiscFar": 1, "m.oakLeaves": 29, "u.cookedSalmon": 4, "u.cookedBeef": 5, "q.rawCopper": 24, "p.lapisOre": 8, "m.azalea": 4, "m.goldOre": 8, "m.spruceSlab": 10, "m.deepslateGoldOre": 15, "p.polishedGranite": 491, "m.farmland": 38, "q.ironNugget": 6, "c.emerald": 9, "q.birchPlanks": 43, "m.cobbledDeepslate": 58, "tc.use_netherite": 0, "p.cutCopperStairs": 74, "q.woodenHoe": 1, "g.interactWithStonecutter": 33, "p.hayBlock": 17, "p.diamondShovel": 1, "q.glowInkSac": 3, "u.purpleBed": 10, "p.pinkBed": 12, "p.goldenShovel": 1, "b.diamondShovel": 1, "p.spyglass": 1, "p.whiteWool": 13, "m.sand": 1251, "m.rootedDirt": 2, "q.gunpowder": 1, "q.pointedDripstone": 8, "q.rabbitHide": 1, "m.kelp": 1, "m.azureBluet": 23, "p.birchPlanks": 28, "p.polishedDiorite": 185, "m.stone": 2334, "u.jungleFence": 229, "q.ironAxe": 1, "p.bamboo": 100, "m.orangeTulip": 27, "m.wheat": 441, "p.composter": 1, "u.sugarCane": 35, "p.rawIronBlock": 2, "m.oakLog": 9, "m.grassBlock": 3622, "g.talkedToVillager": 56, "p.potato": 1362, "u.birchSlab": 134, "p.wheat": 460, "m.dirtPath": 1, "u.salmon": 2, "u.rawIronBlock": 1, "u.chest": 34, "g.leaveGame": 42, "u.whiteBanner": 2, "u.diamondAxe": 1454, "m.melon": 32, "c.chest": 25, "cu.sleepInBed": 161, "p.oakPlanks": 372, "u.woodenPickaxe": 50, "u.whiteBed": 23, "u.smoker": 2, "u.itemFrame": 10, "u.glowBerries": 16, "p.birchSlab": 10, "u.stoneBricks": 1295, "p.oakSapling": 77, "p.brownMushroom": 3, "u.flintAndSteel": 1, "p.glowBerries": 10, "p.jungleStairs": 3, "p.diamondAxe": 1, "p.brownTerracotta": 51, "u.sunflower": 1, "p.oakLeaves": 7, "u.bookshelf": 25, "p.cornflower": 16, "p.deepslateGoldOre": 9, "p.flint": 112, "p.cartographyTable": 1}, "SailorJaden": {"c.diamondShovel": 1, "c.ironPickaxe": 1, "tc.use_diamond": 0, "k.rabbit": 1, "u.diamondPickaxe": 851, "p.craftingTable": 8, "m.copperOre": 1, "g.jump": 3354, "c.ironHelmet": 1, "g.playMinutes": 151, "m.coalOre": 90, "g.openBarrel": 2, "p.wheatSeeds": 6, "g.fishCaught": 7, "q.oakSapling": 6, "m.lilac": 1, "cu.walkOnWaterOneCm": 26360, "g.interactWithCraftingTable": 44, "p.gunpowder": 7, "m.lapisOre": 3, "g.damageTaken": 4817, "p.ironAxe": 1, "c.woodenSword": 1, "q.cobbledDeepslate": 1, "d.creeper": 1, "m.cobblestoneStairs": 1, "p.tuff": 56, "tc.use_iron": 0, "q.stoneAxe": 1, "g.interactWithFurnace": 46, "k.creeper": 4, "p.gravel": 108, "m.deepslateDiamondOre": 22, "c.bow": 2, "p.oakLog": 24, "u.bucket": 15, "m.deepslateLapisOre": 4, "u.dirt": 6, "k.squid": 1, "cu.damageBlockedByShield": 1375, "k.sheep": 3, "m.deepslateIronOre": 49, "q.bread": 31, "c.diamondSword": 1, "m.ironOre": 49, "c.wheat": 504, "c.ironBlock": 3, "p.coal": 109, "m.wallTorch": 2, "g.sleepInBed": 3, "q.rottenFlesh": 14, "c.shield": 1, "p.furnace": 1, "g.play": 151, "p.mutton": 2, "p.obsidian": 14, "p.rabbit": 1, "d.skeleton": 1, "cu.talkedToVillager": 3, "m.deepslate": 459, "g.hunger": 20, "u.waterBucket": 14, "p.cobblestoneStairs": 1, "u.bow": 23, "b.woodenSword": 1, "m.glowLichen": 1, "cu.crouchOneCm": 9317, "p.rawCopper": 4, "c.stoneAxe": 1, "k.skeleton": 34, "tc.use_stone": 0, "u.ironPickaxe": 248, "p.leather": 2, "g.health": 20, "p.ironIngot": 2, "p.rottenFlesh": 51, "u.cobblestone": 113, "q.ironPickaxe": 1, "p.cod": 4, "c.anvil": 1, "c.torch": 240, "k.bat": 1, "cu.walkUnderWaterOneCm": 13230, "g.damageDealt": 18539, "p.arrow": 23, "p.redstone": 163, "cu.playTime": 181372, "m.hayBlock": 56, "c.craftingTable": 1, "c.oakPlanks": 172, "p.dirt": 33, "m.cobblestone": 19, "g.damageBlockedByShield": 1375, "u.shield": 40, "u.woodenSword": 47, "p.rawIron": 98, "b.woodenPickaxe": 1, "p.cobblestone": 266, "g.timeSinceRest": 6753, "p.spiderEye": 3, "p.glowInkSac": 13, "k.cow": 2, "p.brownWool": 1, "p.stick": 2, "p.lapisLazuli": 43, "p.torch": 4, "q.lilac": 1, "m.deepslateRedstoneOre": 36, "u.oakPlanks": 16, "c.ironIngot": 67, "q.wheat": 3, "m.craftingTable": 8, "g.enchantItem": 2, "m.fire": 3, "m.pointedDripstone": 1, "p.enchantedBook": 1, "g.totalWorldTime": 181372, "g.sneakTime": 3918, "u.bread": 68, "g.interactWithAnvil": 3, "k.pig": 9, "g.armor": 15, "u.cookedPorkchop": 8, "cu.sprintOneCm": 428001, "u.craftingTable": 9, "p.dripstoneBlock": 2, "m.dripstoneBlock": 24, "g.deathCount": 5, "c.stonePickaxe": 1, "p.pufferfish": 2, "g.air": 300, "c.cookedPorkchop": 16, "c.bucket": 1, "p.salmon": 1, "u.fishingRod": 15, "c.stick": 148, "m.torch": 1, "c.woodenPickaxe": 1, "p.cobbledDeepslate": 428, "c.ironLeggings": 1, "cu.fallOneCm": 113225, "u.diamondSword": 270, "c.diamondPickaxe": 2, "p.diamond": 22, "q.brownWool": 1, "cu.walkOneCm": 344872, "tc.disabled": 0, "color": 0, "m.grass": 63, "c.ironAxe": 1, "TreeCapitator": 0, "p.porkchop": 17, "u.ironAxe": 39, "u.anvil": 1, "p.bone": 27, "tc.use_gold": 0, "cu.interactWithCraftingTable": 44, "p.inkSac": 2, "m.oakLeaves": 13, "cu.interactWithAnvil": 3, "g.mobKills": 135, "m.granite": 7, "cusNetPor": 0, "m.deepslateGoldOre": 51, "k.pillager": 1, "m.obsidian": 14, "g.playerKills": 2, "cu.interactWithFurnace": 46, "tc.use_netherite": 0, "p.playerHead": 2, "p.hayBlock": 56, "g.interactWithStonecutter": 1, "tc.sneak": 0, "k.glowSquid": 7, "q.bow": 1, "m.furnace": 1, "q.dripstoneBlock": 2, "u.stonePickaxe": 65, "p.whiteWool": 1, "q.fishingRod": 1, "k.chicken": 17, "cu.climbOneCm": 6752, "c.air": 0, "p.chicken": 17, "g.level": 20, "c.arrow": 36, "m.stone": 264, "p.beef": 4, "cu.flyOneCm": 658354, "p.diorite": 5, "k.zombie": 38, "u.stoneAxe": 52, "c.furnace": 1, "g.playTime": 181372, "m.dandelion": 1, "q.ironAxe": 1, "m.diorite": 8, "g.drop": 31, "duraPing": 0, "q.wheatSeeds": 6, "g.openChest": 58, "m.grassBlock": 10, "m.oakLog": 24, "m.gravel": 118, "g.talkedToVillager": 3, "u.diamondShovel": 137, "u.torch": 222, "p.lilac": 1, "p.rawGold": 49, "p.bow": 2, "cu.interactWithStonecutter": 1, "c.ironBoots": 1, "tc.use_wood": 0, "u.chest": 2, "g.leaveGame": 3, "g.timeSinceDeath": 6725, "c.bread": 167, "q.stonePickaxe": 1, "p.string": 8, "c.chest": 2, "u.furnace": 2, "c.goldIngot": 37, "c.ironChestplate": 1, "cu.sleepInBed": 3, "u.woodenPickaxe": 42, "p.bread": 2, "cu.swimOneCm": 28458, "u.cobbledDeepslate": 20, "p.oakSapling": 6, "u.flintAndSteel": 6, "k.spider": 10, "p.feather": 19, "m.tallGrass": 30, "m.dirt": 24, "m.tuff": 56, "p.flint": 10, "c.fishingRod": 1, "tc.valid": 0}, ".GorgonX32": {"c.ironPickaxe": 6, "tc.use_diamond": 0, "p.poppy": 1, "p.granite": 70, "p.craftingTable": 1, "m.copperOre": 49, "d.spider": 5, "g.jump": 2355, "tc.damage": 4, "c.stone": 64, "g.playMinutes": 482, "m.coalOre": 140, "p.pointedDripstone": 9, "g.openBarrel": 7, "p.wheatSeeds": 15, "u.ironShovel": 411, "u.rottenFlesh": 4, "u.ladder": 9, "cu.walkOnWaterOneCm": 60206, "g.interactWithCraftingTable": 42, "m.stoneBrickStairs": 6, "p.emerald": 3, "p.blackWool": 1, "u.roseBush": 1, "u.peony": 12, "g.damageTaken": 8480, "u.stoneShovel": 278, "p.stoneBrickStairs": 6, "d.creeper": 3, "p.tuff": 4, "c.glass": 64, "tc.use_iron": 0, "b.woodenShovel": 1, "g.interactWithFurnace": 23, "m.andesite": 137, "c.ladder": 9, "m.chest": 1, "q.oakFence": 3, "p.gravel": 13, "p.oakLog": 6, "c.stoneBricks": 20, "p.andesite": 134, "u.dirt": 268, "m.sugarCane": 3, "q.dirt": 55, "k.sheep": 1, "c.oakButton": 1, "m.ironOre": 32, "p.coal": 137, "c.stoneHoe": 1, "m.peony": 7, "m.wallTorch": 10, "c.stoneBrickStairs": 12, "g.sleepInBed": 6, "q.ironShovel": 1, "g.play": 482, "d.drowned": 2, "p.mutton": 4, "b.ironShovel": 1, "d.skeleton": 7, "m.deepslate": 245, "c.pinkDye": 64, "g.hunger": 20, "u.stoneBrickStairs": 18, "m.roseBush": 1, "rc_display": 0, "u.dripstoneBlock": 2, "cu.crouchOneCm": 32098, "p.yellowBed": 1, "tc.temp": 131, "p.oakFence": 3, "p.rawCopper": 135, "c.stoneAxe": 3, "k.skeleton": 1, "tc.use_stone": 0, "c.pinkStainedGlass": 40, "u.ironPickaxe": 1732, "g.health": 20, "p.rottenFlesh": 6, "u.cobblestone": 14, "c.torch": 184, "c.ironShovel": 3, "cu.walkUnderWaterOneCm": 50898, "g.damageDealt": 2030, "p.arrow": 3, "p.stonePickaxe": 1, "p.sand": 72, "cu.playTime": 579205, "c.craftingTable": 3, "c.oakPlanks": 24, "p.dirt": 787, "cu.boatOneCm": 160679, "m.cobblestone": 1, "q.torch": 1, "p.rawIron": 30, "b.woodenPickaxe": 3, "p.cobblestone": 2523, "g.timeSinceRest": 362, "p.peony": 7, "m.yellowBed": 1, "p.stick": 63, "p.torch": 68, "p.sugarCane": 15, "u.stoneHoe": 68, "c.ironIngot": 23, "m.craftingTable": 1, "b.stoneShovel": 2, "g.enchantItem": 5, "m.pointedDripstone": 5, "g.totalWorldTime": 579205, "g.sneakTime": 30401, "u.bread": 1, "u.yellowBed": 1, "k.pig": 2, "g.armor": 0, "cu.sprintOneCm": 36465, "u.craftingTable": 4, "p.dripstoneBlock": 8, "m.dripstoneBlock": 11, "g.deathCount": 30, "c.stonePickaxe": 13, "m.emeraldOre": 2, "p.oakDoor": 1, "g.air": 300, "c.stick": 232, "q.cobblestone": 130, "m.torch": 4, "c.woodenPickaxe": 3, "p.cobbledDeepslate": 233, "cu.fallOneCm": 86929, "p.chest": 1, "cu.walkOneCm": 1982359, "tc.disabled": 0, "color": 0, "c.stoneShovel": 2, "m.grass": 92, "d.zombie": 3, "b.ironPickaxe": 5, "TreeCapitator": 0, "p.ironShovel": 1, "b.stoneAxe": 2, "p.porkchop": 3, "p.bone": 1, "tc.use_gold": 0, "cu.interactWithCraftingTable": 42, "u.oakDoor": 1, "b.stonePickaxe": 13, "c.deepslate": 64, "m.oakLeaves": 2, "g.mobKills": 10, "p.egg": 2, "m.granite": 73, "cusNetPor": 0, "k.pillager": 1, "u.woodenShovel": 60, "cu.interactWithFurnace": 23, "tc.use_netherite": 0, "d.enderman": 1, "tc.sneak": 0, "u.stonePickaxe": 1700, "k.chicken": 2, "m.sand": 92, "cu.climbOneCm": 5612, "p.oakButton": 1, "p.chicken": 1, "g.level": 6, "rc_help": 0, "m.stone": 2678, "q.bone": 1, "cu.flyOneCm": 12009, "p.diorite": 28, "u.stoneAxe": 178, "c.furnace": 4, "g.playTime": 579205, "m.diorite": 35, "g.drop": 15, "duraPing": 0, "g.openChest": 44, "u.sugarCane": 1, "m.grassBlock": 308, "m.oakLog": 6, "u.woodenAxe": 25, "m.gravel": 18, "q.arrow": 1, "u.torch": 119, "m.dirtPath": 3, "tc.use_wood": 0, "u.chest": 5, "g.leaveGame": 13, "g.timeSinceDeath": 330, "q.stonePickaxe": 1, "p.string": 3, "q.oakButton": 1, "c.chest": 4, "u.furnace": 4, "cu.sleepInBed": 6, "u.woodenPickaxe": 183, "u.poppy": 1, "p.oakSapling": 1, "p.feather": 2, "m.tallGrass": 6, "p.roseBush": 1, "u.pinkStainedGlass": 28, "m.dirt": 456, "m.tuff": 4, "p.flint": 2, "tc.valid": 0}, "ThatLeona": {"m.powderSnow": 1, "c.diamondShovel": 1, "cu.interactWithGrindstone": 2, "c.ironPickaxe": 2, "m.pumpkin": 8, "m.cobweb": 1, "u.lilac": 11, "u.diamondPickaxe": 381, "u.spruceSlab": 193, "d.spider": 1, "u.deepslateTiles": 287, "p.whiteCarpet": 2, "c.ironHelmet": 1, "c.stone": 3, "p.wheatSeeds": 46, "q.oakSapling": 9, "p.quartzBlock": 2, "k.blaze": 2, "c.oakStairs": 32, "g.interactWithCraftingTable": 98, "c.darkOakPlanks": 676, "u.oakBoat": 1, "u.roseBush": 12, "m.lapisOre": 8, "c.spruceTrapdoor": 144, "p.ironAxe": 1, "u.stoneShovel": 168, "d.player": 1, "p.yellowCarpet": 1, "m.sprucePlanks": 37, "p.blackstone": 3, "p.crimsonStem": 102, "c.cookedMutton": 41, "q.yellowCarpet": 1, "q.stoneAxe": 2, "p.spruceLog": 59, "g.interactWithFurnace": 134, "u.spruceLog": 280, "p.quartz": 44, "m.yellowCarpet": 2, "q.yellowBed": 1, "u.deepslateTileSlab": 89, "u.wheatSeeds": 16, "m.deepslateDiamondOre": 18, "p.ironPickaxe": 1, "p.oakLog": 250, "u.bucket": 37, "p.andesite": 1, "q.cookedPorkchop": 5, "m.deepslateLapisOre": 10, "m.deepslateTileSlab": 6, "p.birchLog": 100, "q.dirt": 1, "p.stoneSword": 3, "m.ironOre": 63, "u.sprucePlanks": 255, "c.stoneHoe": 1, "m.peony": 1, "m.spruceStairs": 17, "k.magmaCube": 19, "u.glassPane": 87, "g.play": 599, "p.warpedWartBlock": 1, "p.mutton": 22, "g.interactWithGrindstone": 2, "p.soulSand": 5, "d.skeleton": 1, "p.spruceFence": 12, "m.blueBed": 1, "g.hunger": 15, "u.waterBucket": 25, "u.scaffolding": 302, "p.book": 18, "p.scaffolding": 279, "m.birchPlanks": 5, "m.birchLeaves": 3, "m.netherWart": 20, "p.yellowBed": 4, "u.spruceTrapdoor": 131, "c.stoneAxe": 2, "p.saddle": 1, "m.spruceTrapdoor": 25, "tc.use_stone": 0, "p.leather": 2, "d.piglinBrute": 1, "u.lavaBucket": 12, "c.boneBlock": 9, "c.glassPane": 160, "g.health": 19, "u.cobblestone": 186, "c.torch": 156, "cu.walkUnderWaterOneCm": 5462, "q.woodenSword": 1, "cu.playTime": 718804, "m.cornflower": 1, "c.stoneSword": 2, "m.cobblestone": 4, "m.whiteCarpet": 2, "q.birchSapling": 9, "u.woodenSword": 39, "c.woodenAxe": 3, "m.redstoneOre": 1, "p.peony": 1, "u.ironChestplate": 1, "p.lapisLazuli": 114, "p.torch": 6, "m.deepslateRedstoneOre": 6, "u.oakPlanks": 76, "m.craftingTable": 9, "g.enchantItem": 4, "m.fire": 10, "p.apple": 12, "c.quartzBlock": 11, "u.bread": 75, "u.spruceFenceGate": 12, "p.woodenSword": 1, "k.pig": 6, "g.armor": 15, "u.tuff": 3, "u.cookedPorkchop": 19, "cu.sprintOneCm": 1850959, "u.goldenHelmet": 1, "k.witherSkeleton": 6, "m.netherrack": 88, "q.oakPlanks": 2, "m.oakStairs": 9, "q.woodenAxe": 3, "c.stonePickaxe": 2, "g.air": 300, "c.cookedPorkchop": 41, "c.woodenPickaxe": 1, "q.diamondPickaxe": 1, "p.cobbledDeepslate": 54, "p.grindstone": 1, "c.diamondPickaxe": 2, "p.cookedBeef": 3, "tc.disabled": 0, "p.shroomlight": 6, "c.stoneShovel": 2, "u.spruceDoor": 1, "m.grass": 129, "c.spruceDoor": 3, "c.ironAxe": 6, "q.goldenSword": 2, "c.flintAndSteel": 1, "TreeCapitator": 0, "p.porkchop": 25, "b.stoneAxe": 1, "p.lightGrayWool": 1, "m.sweetBerryBush": 3, "tc.use_gold": 0, "m.basalt": 31, "cu.interactWithCraftingTable": 98, "u.darkOakFenceGate": 10, "u.porkchop": 1, "m.oakPlanks": 2, "c.scaffolding": 84, "u.polishedDiorite": 65, "c.oakBoat": 1, "p.egg": 1, "u.apple": 6, "m.granite": 1, "u.birchPlanks": 220, "p.birchSapling": 41, "p.carrot": 5, "cu.interactWithFurnace": 134, "m.spruceLeaves": 1, "tc.sneak": 0, "u.blackstone": 3, "m.furnace": 8, "b.ironAxe": 2, "u.stonePickaxe": 110, "u.boneBlock": 166, "c.air": 0, "p.woodenAxe": 1, "p.deepslateTiles": 24, "m.spruceLog": 59, "p.oakStairs": 9, "m.grindstone": 1, "u.oakStairs": 32, "cu.flyOneCm": 1769146, "p.ghastTear": 1, "p.diorite": 7, "k.zombie": 32, "u.stoneAxe": 139, "m.dandelion": 1, "m.diorite": 11, "g.drop": 41, "p.goldenSword": 2, "p.netherWart": 23, "duraPing": 0, "p.darkOakPlanks": 20, "c.crimsonPlanks": 152, "m.netherBricks": 4, "u.darkOakPlanks": 86, "c.spruceStairs": 136, "u.woodenAxe": 49, "m.boneBlock": 120, "m.gravel": 21, "u.torch": 135, "p.rawGold": 21, "u.oakSapling": 4, "m.carrots": 1, "p.bow": 3, "cu.interactWithStonecutter": 12, "u.playerHead": 4, "tc.use_wood": 0, "g.timeSinceDeath": 42636, "c.bread": 27, "p.sprucePlanks": 23, "q.stonePickaxe": 1, "p.string": 15, "p.enderPearl": 1, "m.warpedWartBlock": 1, "p.dandelion": 6, "u.oakLog": 187, "m.crimsonStem": 5, "u.furnace": 7, "cu.swimOneCm": 33621, "u.pinkTulip": 5, "u.cobbledDeepslate": 15, "m.polishedDiorite": 5, "k.spider": 12, "p.basalt": 30, "tc.valid": 0, "m.darkOakPlanks": 22, "p.spruceFenceGate": 9, "c.darkOakStairs": 128, "c.birchPlanks": 220, "tc.use_diamond": 0, "p.granite": 1, "m.darkOakStairs": 36, "p.craftingTable": 8, "g.jump": 10983, "tc.damage": 131, "p.deepslateTileStairs": 74, "g.playMinutes": 599, "m.coalOre": 54, "p.stoneAxe": 1, "c.spruceFenceGate": 14, "k.traderLlama": 2, "u.deepslateTileWall": 20, "cu.walkOnWaterOneCm": 12582, "p.woodenPickaxe": 1, "q.whiteCarpet": 2, "p.gunpowder": 5, "g.damageTaken": 13372, "m.purpleBed": 1, "c.woodenSword": 1, "p.rail": 8, "d.creeper": 1, "p.tuff": 3, "m.spruceFence": 12, "m.rail": 8, "u.stoneSword": 65, "tc.use_iron": 0, "m.andesite": 1, "k.creeper": 3, "m.chest": 10, "p.gravel": 18, "m.composter": 1, "u.cookedMutton": 31, "m.netherWartBlock": 2, "u.dirt": 106, "c.boneMeal": 99, "m.sugarCane": 2, "u.darkOakStairs": 118, "k.sheep": 14, "q.bread": 11, "m.deepslateIronOre": 41, "c.diamondSword": 2, "c.wheat": 81, "p.coal": 86, "m.wallTorch": 2, "u.diorite": 59, "c.cookedChicken": 13, "m.quartzBlock": 2, "g.sleepInBed": 22, "c.woodenShovel": 1, "q.rottenFlesh": 4, "k.ghast": 2, "c.darkOakSlab": 192, "p.furnace": 8, "c.goldenHelmet": 1, "m.birchLog": 17, "q.playerHead": 1, "cu.talkedToVillager": 12, "m.deepslate": 54, "p.purpleBed": 1, "u.bakedPotato": 7, "m.soulFire": 3, "u.spruceFence": 87, "m.glowLichen": 1, "cu.crouchOneCm": 252954, "tc.temp": 250, "p.darkOakSlab": 18, "k.skeleton": 21, "u.ironPickaxe": 303, "p.rottenFlesh": 50, "p.deepslateTileSlab": 9, "q.spiderEye": 1, "q.ironPickaxe": 1, "c.darkOakFenceGate": 32, "g.damageDealt": 19288, "m.deepslateTiles": 28, "p.arrow": 26, "p.redstone": 30, "p.sand": 100, "u.quartzBlock": 2, "m.hayBlock": 9, "c.craftingTable": 9, "p.blueBed": 1, "c.oakPlanks": 340, "p.dirt": 186, "cu.boatOneCm": 26937, "m.playerHead": 2, "p.glowstoneDust": 20, "m.soulSand": 5, "p.rawIron": 103, "p.magmaCream": 2, "g.timeSinceRest": 17004, "p.cobblestone": 83, "m.yellowBed": 4, "u.cookedChicken": 13, "p.spiderEye": 5, "k.cow": 2, "p.brownWool": 2, "p.stick": 126, "p.sugarCane": 5, "m.bookshelf": 6, "c.polishedDiorite": 2, "u.stoneHoe": 9, "c.ironIngot": 74, "b.stoneShovel": 1, "p.pumpkin": 7, "c.deepslateTileWall": 84, "p.azureBluet": 5, "g.totalWorldTime": 718804, "q.woodenPickaxe": 1, "g.sneakTime": 67007, "u.yellowBed": 3, "m.brewingStand": 2, "u.craftingTable": 14, "u.stonecutter": 2, "c.stonecutter": 1, "u.spruceStairs": 96, "g.deathCount": 12, "p.darkOakStairs": 35, "b.woodenAxe": 1, "q.lightGrayWool": 1, "c.bucket": 1, "c.stick": 296, "m.torch": 4, "p.oakBoat": 1, "m.scaffolding": 134, "c.ironLeggings": 2, "cu.fallOneCm": 373783, "u.diamondSword": 304, "p.chest": 10, "p.stonecutter": 1, "c.spruceSlab": 210, "p.diamond": 18, "cu.walkOneCm": 2409821, "color": 0, "u.crimsonPlanks": 120, "p.netherrack": 94, "c.spruceFence": 144, "q.cookedMutton": 2, "u.grindstone": 1, "u.ironAxe": 785, "p.bone": 24, "u.ironHelmet": 2, "c.deepslate": 28, "m.oakLeaves": 63, "u.boneMeal": 15, "u.cookedBeef": 36, "g.mobKills": 136, "m.goldOre": 5, "m.spruceSlab": 24, "p.sweetBerries": 8, "m.deepslateGoldOre": 16, "cusNetPor": 0, "u.woodenShovel": 24, "g.animalsBred": 3, "p.netherBricks": 4, "m.strippedOakLog": 4, "m.deepslateTileStairs": 79, "p.spruceStairs": 25, "tc.use_netherite": 0, "p.playerHead": 6, "p.hayBlock": 9, "g.interactWithStonecutter": 12, "u.orangeTulip": 12, "p.lead": 23, "q.bow": 2, "k.hoglin": 6, "c.cookedBeef": 40, "p.weepingVines": 10, "m.potatoes": 1, "p.whiteWool": 12, "m.sand": 100, "k.piglin": 2, "cu.climbOneCm": 176789, "p.netherWartBlock": 259, "m.stonecutter": 1, "m.spruceFenceGate": 9, "p.spruceSlab": 24, "g.level": 22, "m.azureBluet": 4, "u.netherWartBlock": 194, "p.birchPlanks": 5, "p.polishedDiorite": 5, "p.boneBlock": 118, "m.stone": 83, "m.glowstone": 6, "p.beef": 1, "q.lapisLazuli": 20, "c.furnace": 2, "g.playTime": 718804, "q.ironAxe": 1, "d.hoglin": 1, "p.bamboo": 64, "g.openChest": 488, "q.wheatSeeds": 1, "p.spruceTrapdoor": 25, "p.composter": 1, "m.wheat": 9, "m.grassBlock": 167, "m.oakLog": 63, "g.talkedToVillager": 12, "u.basalt": 29, "u.netherrack": 75, "p.potato": 3, "u.diamondShovel": 101, "p.cookedMutton": 2, "p.lilac": 1, "p.brewingStand": 2, "c.sprucePlanks": 1448, "p.wheat": 9, "c.ironBoots": 2, "u.chest": 22, "g.leaveGame": 14, "m.netherQuartzOre": 44, "d.zombifiedPiglin": 2, "c.chest": 21, "m.blackstone": 3, "m.darkOakSlab": 17, "c.ironChestplate": 2, "cu.sleepInBed": 22, "p.oakPlanks": 3, "u.woodenPickaxe": 31, "p.bread": 29, "cu.horseOneCm": 1348997, "q.stoneSword": 2, "k.wanderingTrader": 1, "p.oakSapling": 115, "u.flintAndSteel": 1, "p.strippedOakLog": 4, "m.tallGrass": 15, "u.deepslateTileStairs": 334, "m.dirt": 26, "u.darkOakSlab": 123, "m.tuff": 3, "p.flint": 1}, "ellliebutton": {"m.powderSnow": 29, "cu.interactWithGrindstone": 3, "p.goldenBoots": 1, "m.fern": 1, "p.spruceDoor": 6, "c.ironPickaxe": 18, "m.pumpkin": 17, "q.string": 17, "m.cobweb": 13, "u.cookedRabbit": 1, "u.diamondPickaxe": 4784, "p.poppy": 31, "m.bamboo": 2, "cu.interactWithSmoker": 1, "d.spider": 2, "c.ironHelmet": 5, "m.strippedJungleLog": 1, "p.pointedDripstone": 16, "g.openBarrel": 159, "p.wheatSeeds": 188, "u.rottenFlesh": 19, "p.acaciaPlanks": 1, "u.ironShovel": 677, "u.rawCopperBlock": 1, "q.oakSapling": 21, "c.yellowDye": 136, "k.slime": 21, "q.spruceLog": 7, "g.interactWithCraftingTable": 128, "p.strippedJungleLog": 1, "p.diamondPickaxe": 1, "u.oakBoat": 1, "p.emerald": 3, "p.rabbitHide": 1, "c.redDye": 95, "m.buddingAmethyst": 1, "p.blackWool": 4, "c.netherBrick": 6, "u.roseBush": 1, "m.lapisOre": 30, "q.oakStairs": 1, "d.player": 11, "m.brownMushroom": 9, "p.cookedSalmon": 1, "p.blackstone": 750, "c.whiteDye": 30, "q.grassBlock": 1, "p.crimsonStem": 77, "c.cookedMutton": 109, "p.spruceLog": 55, "g.interactWithFurnace": 212, "c.ladder": 66, "m.mossCarpet": 4, "u.spruceLog": 1, "q.glassPane": 1, "p.lectern": 10, "p.quartz": 95, "q.jungleLog": 5, "u.wheatSeeds": 64, "p.jungleLog": 6, "m.deepslateDiamondOre": 72, "p.ironPickaxe": 3, "m.infestedStone": 1, "p.oakLog": 242, "p.mossCarpet": 11, "u.bucket": 15, "p.strippedDarkOakLog": 1, "p.andesite": 58, "q.rawGold": 1, "m.deepslateLapisOre": 33, "p.acaciaSapling": 8, "k.squid": 5, "cu.damageBlockedByShield": 4001, "q.calcite": 5, "c.whiteBed": 2, "k.horse": 3, "b.ironChestplate": 5, "q.cookedSalmon": 1, "p.crimsonFungus": 2, "p.birchLog": 11, "m.tripwire": 4, "q.dirt": 24, "u.beetrootSeeds": 58, "m.ironOre": 229, "p.azalea": 7, "p.slimeBall": 16, "m.peony": 55, "k.magmaCube": 4, "q.stick": 33, "q.ironShovel": 1, "q.ironLeggings": 1, "c.shield": 1, "u.glassPane": 71, "g.play": 1600, "d.drowned": 1, "k.drowned": 7, "p.calcite": 5, "p.mutton": 113, "m.strippedAcaciaLog": 1, "p.strippedAcaciaLog": 1, "g.interactWithGrindstone": 3, "u.oakSign": 3, "p.crimsonRoots": 1, "q.netherWartBlock": 36, "c.rawIron": 9, "m.redMushroom": 8, "q.lectern": 1, "d.skeleton": 8, "c.pinkDye": 106, "q.magmaBlock": 9, "g.hunger": 20, "p.cutRedSandstone": 67, "u.waterBucket": 15, "p.book": 57, "q.oakTrapdoor": 1, "rc_display": 0, "p.stoneBricks": 2, "m.birchPlanks": 4, "m.birchLeaves": 3, "m.netherWart": 88, "p.rawCopper": 404, "c.stoneAxe": 4, "m.crimsonRoots": 1, "tc.use_stone": 0, "p.leather": 18, "c.glassPane": 160, "g.health": 20, "p.ironIngot": 4, "q.apple": 1, "u.cobblestone": 256, "u.andesite": 10, "b.ironHelmet": 7, "c.torch": 614, "c.ironShovel": 3, "cu.walkUnderWaterOneCm": 321219, "k.bee": 2, "u.crossbow": 54, "q.darkOakLog": 184, "q.brewingStand": 1, "cu.playTime": 1921088, "m.cornflower": 48, "m.glassPane": 2, "u.lectern": 9, "c.stoneSword": 1, "m.cobblestone": 17, "m.cocoa": 13, "g.damageBlockedByShield": 4001, "u.shield": 142, "c.book": 1, "m.cartographyTable": 3, "u.woodenSword": 56, "u.warpedFungus": 1, "cu.interactWithBrewingstand": 1, "c.woodenAxe": 1, "m.redstoneOre": 27, "p.peony": 53, "m.magmaBlock": 12, "p.lapisLazuli": 435, "p.torch": 35, "m.netherGoldOre": 20, "m.mossBlock": 48, "m.deepslateRedstoneOre": 186, "u.oakPlanks": 356, "p.mossyCobblestone": 1, "q.wheat": 2, "m.craftingTable": 10, "g.enchantItem": 8, "q.gravel": 7, "p.smoothBasalt": 4, "m.fire": 9, "k.silverfish": 1, "p.apple": 13, "u.mossCarpet": 1, "c.quartzBlock": 3, "p.orangeTulip": 5, "m.cutRedSandstone": 7, "u.bread": 31, "d.guardian": 1, "g.interactWithAnvil": 1, "g.interactWithSmoker": 1, "k.pig": 12, "g.armor": 8, "u.tuff": 86, "u.cookedPorkchop": 23, "q.basalt": 13, "cu.sprintOneCm": 5280925, "k.zombieVillager": 7, "m.lilyOfTheValley": 30, "q.mossCarpet": 5, "m.netherrack": 564, "c.brick": 356, "q.oakPlanks": 32, "g.interactWithBrewingstand": 1, "p.clayBall": 148, "m.oakStairs": 1, "c.stonePickaxe": 3, "m.emeraldOre": 3, "p.oakDoor": 1, "g.air": 300, "c.cookedPorkchop": 23, "q.snowball": 260, "m.darkOakLog": 32, "m.redTulip": 2, "q.cobblestone": 82, "c.woodenPickaxe": 1, "g.interactWithLectern": 31, "p.cobbledDeepslate": 887, "c.writableBook": 5, "p.grindstone": 2, "c.diamondPickaxe": 2, "p.shield": 1, "p.cookedBeef": 1, "tc.disabled": 0, "p.shroomlight": 15, "u.spruceDoor": 7, "m.grass": 148, "c.spruceDoor": 3, "c.ironAxe": 6, "d.zombie": 13, "c.flintAndSteel": 1, "TreeCapitator": 0, "p.porkchop": 32, "b.stoneAxe": 3, "p.lightGrayWool": 1, "tc.use_gold": 0, "m.basalt": 123, "cu.interactWithCraftingTable": 128, "p.inkSac": 10, "b.stonePickaxe": 2, "u.porkchop": 2, "m.oakPlanks": 67, "p.cocoaBeans": 25, "cu.interactWithAnvil": 1, "u.diamondBlock": 2, "q.beetrootSeeds": 1, "c.oakBoat": 1, "p.egg": 1, "m.granite": 99, "u.birchPlanks": 9, "p.birchSapling": 2, "g.playerKills": 6, "u.ironSword": 1510, "p.carrot": 210, "cu.interactWithFurnace": 212, "q.leather": 2, "p.spruceSapling": 3, "m.deepslateCopperOre": 10, "q.goldNugget": 12, "tc.sneak": 0, "m.furnace": 5, "c.goldenBoots": 1, "cu.interactWithLectern": 31, "b.ironAxe": 2, "u.writableBook": 6, "b.goldenBoots": 1, "u.stonePickaxe": 301, "k.chicken": 14, "m.kelpPlant": 2, "p.amethystBlock": 11, "m.beetroots": 58, "p.chicken": 14, "rc_help": 0, "q.goldenPickaxe": 1, "p.magmaBlock": 9, "m.oakFence": 3, "m.spruceLog": 8, "p.oakStairs": 1, "q.bone": 3, "m.grindstone": 2, "cu.flyOneCm": 2476175, "p.ghastTear": 2, "p.diorite": 57, "k.zombie": 147, "u.stoneAxe": 217, "p.oxeyeDaisy": 12, "m.dandelion": 140, "m.strippedSpruceLog": 1, "m.diorite": 51, "g.drop": 162, "p.netherWart": 234, "duraPing": 0, "c.blueDye": 43, "p.darkOakPlanks": 1, "c.crimsonPlanks": 4, "q.inkSac": 2, "q.mossyCobblestone": 1, "u.woodenAxe": 41, "m.boneBlock": 6, "m.gravel": 77, "p.ironHelmet": 2, "q.arrow": 6, "u.torch": 477, "p.rawGold": 144, "m.carrots": 61, "p.bow": 5, "cu.interactWithStonecutter": 5, "u.playerHead": 11, "u.ironHoe": 46, "tc.use_wood": 0, "q.cookedBeef": 1, "m.acaciaLog": 8, "g.timeSinceDeath": 21888, "c.bread": 21, "q.beetroot": 6, "p.junglePlanks": 1, "p.string": 57, "p.enderPearl": 1, "p.goldNugget": 87, "p.dandelion": 136, "m.crimsonStem": 24, "u.jungleSign": 1, "u.furnace": 9, "c.goldIngot": 43, "d.pillager": 1, "c.polishedDeepslate": 200, "u.stone": 2, "p.grass": 12, "c.ironSword": 7, "c.cookedRabbit": 1, "cu.swimOneCm": 552489, "m.poppy": 34, "p.oakTrapdoor": 1, "u.cobbledDeepslate": 141, "m.snow": 3, "p.floweringAzalea": 2, "k.spider": 20, "p.feather": 9, "p.basalt": 121, "p.roseBush": 33, "b.ironLeggings": 4, "tc.valid": 0, "u.cartographyTable": 2, "m.darkOakPlanks": 1, "c.shears": 2, "c.birchPlanks": 44, "tc.use_diamond": 0, "k.rabbit": 1, "cu.interactWithSmithingTable": 4, "p.granite": 113, "c.deepslateBricks": 196, "p.craftingTable": 9, "m.copperOre": 115, "g.jump": 19068, "tc.damage": 105, "g.playMinutes": 1600, "q.granite": 37, "m.coalOre": 561, "m.mossyCobblestone": 1, "m.redNetherBricks": 6, "p.beetrootSeeds": 148, "cu.walkOnWaterOneCm": 297124, "u.ladder": 30, "m.lilac": 11, "m.largeAmethystBud": 2, "p.redMushroom": 9, "m.lectern": 10, "q.grindstone": 1, "p.gunpowder": 9, "q.goldenBoots": 1, "m.amethystCluster": 1, "g.damageTaken": 49234, "d.caveSpider": 1, "c.woodenSword": 1, "m.amethystBlock": 11, "p.rail": 6, "p.goldenPickaxe": 1, "d.creeper": 4, "p.tuff": 124, "m.rail": 2, "c.glass": 196, "u.stoneSword": 52, "tc.use_iron": 0, "q.oakLog": 17, "m.andesite": 56, "k.creeper": 1, "p.darkOakSapling": 21, "q.whiteWool": 1, "p.gravel": 57, "m.composter": 1, "u.cookedMutton": 109, "m.beeNest": 1, "m.netherWartBlock": 2, "p.grayWool": 2, "u.mutton": 1, "q.ironHelmet": 1, "u.dirt": 108, "c.boneMeal": 78, "p.beetroot": 51, "u.goldBlock": 2, "k.salmon": 15, "m.sugarCane": 22, "m.rawCopperBlock": 1, "m.vine": 1, "m.sculkSensor": 3, "u.deepslateBricks": 8, "k.sheep": 78, "m.deepslateIronOre": 159, "m.snowBlock": 77, "p.chestMinecart": 1, "cu.interactWithCartographyTable": 4, "p.lilyOfTheValley": 30, "p.coal": 559, "q.andesite": 5, "c.oakDoor": 9, "m.wallTorch": 7, "m.jungleLog": 3, "u.diorite": 8, "c.cookedChicken": 14, "g.sleepInBed": 17, "q.rottenFlesh": 17, "k.ghast": 3, "p.furnace": 5, "p.amethystShard": 4, "m.birchLog": 12, "b.ironShovel": 1, "q.redstone": 6, "p.boneMeal": 2, "p.rabbit": 2, "c.leather": 41, "m.smoothBasalt": 4, "q.playerHead": 1, "cu.talkedToVillager": 7, "m.deepslate": 1292, "u.bakedPotato": 84, "q.craftingTable": 1, "m.roseBush": 36, "u.carrot": 147, "p.warpedFungus": 2, "m.floweringAzalea": 2, "m.crimsonFungus": 2, "b.woodenSword": 1, "m.glowLichen": 4, "c.oakSign": 3, "u.dripstoneBlock": 1, "q.tuff": 12, "cu.crouchOneCm": 35701, "tc.temp": 250, "p.darkOakSlab": 9, "k.skeleton": 69, "m.rawIronBlock": 1, "u.ironPickaxe": 4584, "p.rottenFlesh": 145, "q.spiderEye": 4, "q.ironPickaxe": 4, "m.calcite": 5, "p.deepslateBricks": 2, "u.netherWart": 88, "g.damageDealt": 65788, "p.arrow": 84, "p.redstone": 835, "p.sand": 237, "c.bakedPotato": 84, "c.cookedSalmon": 6, "c.craftingTable": 17, "c.oakPlanks": 668, "p.dirt": 293, "cu.boatOneCm": 46125, "m.playerHead": 4, "m.clay": 37, "p.glowstoneDust": 108, "q.torch": 1, "p.rawIron": 399, "p.magmaCream": 1, "g.timeSinceRest": 21908, "p.cobblestone": 2990, "m.yellowBed": 1, "u.cookedChicken": 14, "p.spiderEye": 8, "p.goldBlock": 2, "p.glowInkSac": 5, "k.cow": 16, "p.brownWool": 1, "p.stick": 116, "b.diamondPickaxe": 1, "p.ironSword": 8, "q.furnace": 1, "m.ladder": 3, "p.sugarCane": 47, "m.bookshelf": 12, "c.ironIngot": 195, "p.pumpkin": 15, "u.darkOakSapling": 19, "m.oakDoor": 1, "m.pointedDripstone": 11, "p.azureBluet": 7, "g.totalWorldTime": 1921088, "p.darkOakLog": 185, "q.feather": 3, "m.spruceDoor": 4, "g.sneakTime": 12345, "m.oxeyeDaisy": 19, "p.writtenBook": 3, "u.cutRedSandstone": 7, "m.brewingStand": 2, "p.acaciaLog": 47, "p.leatherHelmet": 1, "p.stone": 77, "c.magentaDye": 22, "q.ironSword": 9, "m.junglePlanks": 1, "b.ironSword": 4, "u.craftingTable": 24, "m.mediumAmethystBud": 1, "p.dripstoneBlock": 8, "p.rawCopperBlock": 1, "m.dripstoneBlock": 12, "p.ironBoots": 1, "g.deathCount": 106, "q.salmon": 1, "b.woodenAxe": 1, "g.bellRing": 5, "q.boneMeal": 1, "p.grassBlock": 1, "c.bucket": 2, "p.salmon": 12, "c.stick": 360, "m.torch": 2, "c.ironLeggings": 3, "u.shears": 232, "cu.fallOneCm": 612643, "c.lightGrayDye": 19, "p.diamond": 75, "q.brownWool": 1, "cu.walkOneCm": 5796134, "color": 0, "m.oakFenceGate": 1, "b.ironBoots": 2, "p.netherrack": 535, "b.ironPickaxe": 14, "u.grindstone": 1, "u.ironAxe": 466, "q.rawIron": 9, "p.bone": 80, "p.ladder": 7, "u.oakDoor": 3, "q.shears": 1, "m.redstoneWire": 8, "m.oakLeaves": 32, "g.interactWithCartographyTable": 4, "u.cookedSalmon": 6, "u.boneMeal": 51, "u.cookedBeef": 35, "q.rawCopper": 17, "g.mobKills": 465, "m.azalea": 6, "u.writtenBook": 10, "u.granite": 34, "m.goldOre": 20, "m.deepslateGoldOre": 124, "cusNetPor": 0, "u.goldenPickaxe": 2, "m.strippedDarkOakLog": 1, "m.farmland": 40, "q.ironIngot": 40, "q.birchPlanks": 1, "m.cobbledDeepslate": 11, "tc.use_netherite": 0, "q.grayWool": 1, "p.playerHead": 16, "g.interactWithStonecutter": 5, "q.shield": 1, "p.snowball": 258, "q.bow": 2, "m.darkOakSapling": 1, "k.hoglin": 2, "c.cookedBeef": 37, "m.potatoes": 74, "p.whiteWool": 64, "m.spawner": 4, "k.caveSpider": 6, "m.sand": 251, "q.gunpowder": 5, "u.potato": 76, "p.mossBlock": 47, "cu.climbOneCm": 395993, "p.netherWartBlock": 36, "p.ironLeggings": 1, "p.glassPane": 2, "k.strider": 2, "g.level": 33, "m.azureBluet": 10, "p.birchPlanks": 2, "g.inspectHopper": 1, "p.boneBlock": 6, "m.stone": 4630, "m.glowstone": 39, "p.beef": 26, "c.furnace": 5, "g.playTime": 1921088, "q.ironAxe": 2, "q.netherrack": 13, "p.bamboo": 14, "m.orangeTulip": 5, "g.openChest": 906, "q.potato": 3, "q.wheatSeeds": 5, "q.crimsonRoots": 1, "m.acaciaPlanks": 1, "p.composter": 1, "m.wheat": 64, "c.ironHoe": 1, "p.rawIronBlock": 1, "m.grassBlock": 117, "m.oakLog": 74, "g.talkedToVillager": 7, "u.netherrack": 103, "p.potato": 203, "p.lilac": 11, "p.brewingStand": 3, "c.sprucePlanks": 24, "p.strippedSpruceLog": 1, "m.diamondBlock": 2, "p.wheat": 63, "u.salmon": 3, "c.ironBoots": 6, "u.chest": 6, "g.leaveGame": 34, "u.composter": 1, "m.deepslateBricks": 1, "p.diamondBlock": 2, "c.rawCopperBlock": 7, "m.netherQuartzOre": 92, "d.zombifiedPiglin": 1, "c.chest": 6, "m.blackstone": 755, "u.brewingStand": 2, "c.ironChestplate": 5, "cu.sleepInBed": 17, "p.oakPlanks": 105, "u.woodenPickaxe": 7, "m.goldBlock": 2, "u.whiteBed": 2, "cu.horseOneCm": 44759, "q.leatherHelmet": 1, "m.warpedFungus": 2, "b.shears": 1, "p.oakSapling": 93, "p.brownMushroom": 9, "u.flintAndSteel": 1, "m.tallGrass": 46, "k.enderman": 1, "q.ironBoots": 1, "p.cornflower": 43, "m.dirt": 140, "m.tuff": 122, "q.diorite": 6, "p.flint": 7, "p.cartographyTable": 3, "g.interactWithSmithingTable": 4}, "WaveringLibi": {"cu.interactWithGrindstone": 2, "m.powderSnow": 5, "m.fern": 1, "c.ironPickaxe": 1, "m.pumpkin": 8, "tc.use_diamond": 0, "u.diamondPickaxe": 12, "p.poppy": 7, "p.granite": 10, "p.craftingTable": 13, "m.copperOre": 3, "g.jump": 7843, "tc.damage": 70, "g.playMinutes": 487, "q.granite": 5, "m.coalOre": 232, "g.openBarrel": 2, "p.stoneAxe": 1, "p.wheatSeeds": 12, "u.rottenFlesh": 6, "q.oakSapling": 1, "m.lilac": 33, "cu.walkOnWaterOneCm": 58551, "p.bakedPotato": 1, "q.dandelion": 4, "p.whiteTulip": 5, "g.interactWithCraftingTable": 55, "q.azureBluet": 2, "c.darkOakPlanks": 12, "p.diamondPickaxe": 1, "u.oakBoat": 13, "m.lectern": 1, "p.gunpowder": 4, "p.blackWool": 2, "m.largeFern": 1, "g.damageTaken": 12132, "u.stoneShovel": 299, "d.player": 2, "q.spruceStairs": 8, "p.blackstone": 30, "c.glass": 64, "u.stoneSword": 91, "c.cookedMutton": 16, "tc.use_iron": 0, "q.oakLog": 3, "p.spruceLog": 608, "g.interactWithFurnace": 126, "m.andesite": 7, "k.creeper": 3, "m.mossCarpet": 2, "p.lectern": 1, "p.quartz": 20, "p.darkOakSapling": 95, "p.gravel": 1, "q.enderPearl": 1, "u.cookedMutton": 2, "m.netherWartBlock": 1, "p.oakLog": 54, "u.chicken": 2, "p.mossCarpet": 5, "p.andesite": 7, "u.dirt": 70, "cu.damageBlockedByShield": 870, "b.goldenHelmet": 1, "c.copperIngot": 10, "m.sugarCane": 5, "m.vine": 8, "u.goldenApple": 1, "p.birchLog": 19, "q.dirt": 3, "k.sheep": 27, "m.deepslateIronOre": 8, "p.stoneSword": 1, "m.ironOre": 10, "q.redTulip": 4, "p.lilyOfTheValley": 22, "p.coal": 232, "m.wallTorch": 2, "u.diorite": 2, "c.cookedChicken": 1, "q.stick": 4, "g.sleepInBed": 5, "q.poppy": 1, "q.rottenFlesh": 6, "c.shield": 1, "k.ghast": 2, "g.play": 487, "c.goldenHelmet": 1, "m.birchLog": 9, "p.mutton": 43, "u.goldenBoots": 1, "g.interactWithGrindstone": 2, "p.soulSand": 1, "q.sand": 1, "d.skeleton": 4, "m.deepslate": 690, "m.sunflower": 20, "g.hunger": 19, "u.bakedPotato": 1, "m.soulFire": 1, "u.carrot": 20, "m.roseBush": 40, "p.scaffolding": 3, "rc_display": 0, "cu.crouchOneCm": 77638, "p.yellowBed": 3, "tc.temp": 131, "p.rawCopper": 10, "c.stoneAxe": 18, "k.skeleton": 18, "tc.use_stone": 0, "u.ironPickaxe": 237, "p.leather": 27, "g.health": 20, "p.rottenFlesh": 44, "u.cobblestone": 35, "q.spiderEye": 2, "m.pinkTulip": 10, "c.torch": 108, "cu.walkUnderWaterOneCm": 56170, "g.damageDealt": 22249, "p.arrow": 21, "p.redstone": 36, "p.stonePickaxe": 1, "c.bakedPotato": 7, "p.sand": 130, "cu.playTime": 584853, "g.damageAbsorbed": 40, "m.cornflower": 7, "c.craftingTable": 2, "c.oakPlanks": 28, "p.dirt": 244, "cu.boatOneCm": 425990, "m.cobblestone": 1, "g.damageBlockedByShield": 870, "m.clay": 15, "q.saddle": 1, "u.shield": 33, "m.soulSand": 1, "p.rawIron": 18, "c.woodenAxe": 1, "p.cobblestone": 294, "m.redstoneOre": 1, "g.timeSinceRest": 11863, "m.yellowBed": 2, "u.cookedChicken": 1, "p.spiderEye": 2, "p.glowInkSac": 2, "u.ironChestplate": 1, "k.cow": 34, "duraPing.weapon": 9, "p.stick": 237, "p.torch": 8, "m.netherGoldOre": 23, "p.sugarCane": 5, "m.deepslateRedstoneOre": 7, "c.ironIngot": 47, "m.craftingTable": 12, "b.stoneShovel": 1, "p.pumpkin": 9, "m.crimsonNylium": 6, "q.scaffolding": 3, "m.fire": 11, "p.azureBluet": 28, "g.totalWorldTime": 584853, "p.apple": 13, "q.goldenShovel": 1, "p.darkOakLog": 1003, "p.allium": 23, "q.feather": 1, "p.orangeTulip": 28, "g.sneakTime": 21436, "m.oxeyeDaisy": 11, "u.bread": 11, "m.lilyPad": 1, "u.yellowBed": 3, "k.pig": 45, "g.armor": 12, "u.cookedPorkchop": 47, "cu.sprintOneCm": 1401318, "m.lilyOfTheValley": 26, "u.goldenHelmet": 1, "u.craftingTable": 15, "k.witherSkeleton": 1, "p.dripstoneBlock": 1, "m.netherrack": 1453, "m.dripstoneBlock": 1, "q.cornflower": 1, "p.clayBall": 56, "g.deathCount": 22, "c.stonePickaxe": 25, "d.silverfish": 1, "p.redTulip": 4, "g.air": 300, "c.cookedPorkchop": 53, "m.darkOakLog": 504, "m.redTulip": 5, "m.torch": 4, "p.oakBoat": 12, "m.scaffolding": 1, "p.cobbledDeepslate": 636, "c.ironLeggings": 1, "cu.fallOneCm": 236793, "p.grindstone": 1, "m.infestedDeepslate": 1, "cu.walkOneCm": 1600121, "tc.disabled": 0, "color": 0, "c.stoneShovel": 4, "m.grass": 122, "c.ironAxe": 1, "d.zombie": 2, "p.netherrack": 1390, "TreeCapitator": 0, "m.twistingVinesPlant": 1, "u.grindstone": 1, "b.stoneAxe": 16, "p.porkchop": 92, "u.ironAxe": 146, "p.lightGrayWool": 1, "p.bone": 22, "tc.use_gold": 0, "m.basalt": 47, "cu.interactWithCraftingTable": 55, "b.stonePickaxe": 25, "m.soulSoil": 2, "m.oakLeaves": 71, "u.cookedBeef": 19, "m.whiteTulip": 6, "u.porkchop": 9, "c.oakBoat": 1, "g.mobKills": 173, "u.apple": 13, "m.goldOre": 2, "m.granite": 10, "cusNetPor": 0, "m.deepslateGoldOre": 4, "k.pillager": 1, "p.birchSapling": 9, "g.playerKills": 1, "u.ironSword": 246, "p.carrot": 1, "cu.interactWithFurnace": 126, "p.spruceSapling": 148, "tc.use_netherite": 0, "p.playerHead": 1, "m.spruceLeaves": 99, "tc.sneak": 0, "u.blackstone": 30, "u.darkOakLog": 2, "c.goldenBoots": 1, "k.hoglin": 1, "u.ironLeggings": 1, "c.cookedBeef": 19, "b.ironAxe": 1, "u.stonePickaxe": 3203, "p.whiteWool": 21, "k.chicken": 7, "m.sand": 130, "cu.climbOneCm": 22849, "p.netherWartBlock": 1, "c.air": 0, "p.chicken": 4, "p.soulSoil": 2, "g.level": 31, "m.azureBluet": 30, "rc_help": 0, "q.goldenPickaxe": 1, "p.boneBlock": 59, "m.spruceLog": 183, "m.stone": 301, "q.bone": 2, "m.grindstone": 1, "p.beef": 62, "u.soulSoil": 2, "cu.flyOneCm": 1510544, "p.sunflower": 20, "p.ghastTear": 1, "p.diorite": 506, "k.zombie": 25, "u.stoneAxe": 1289, "p.oxeyeDaisy": 7, "g.playTime": 584853, "m.dandelion": 48, "m.diorite": 507, "d.hoglin": 2, "g.drop": 39, "m.orangeTulip": 32, "duraPing": 0, "q.wheatSeeds": 1, "g.openChest": 181, "p.pinkTulip": 9, "m.grassBlock": 198, "m.oakLog": 52, "m.boneBlock": 57, "u.woodenAxe": 26, "m.gravel": 3, "p.cookedPorkchop": 5, "u.netherrack": 594, "q.arrow": 15, "u.torch": 42, "p.lilac": 32, "c.sprucePlanks": 4, "p.rawGold": 6, "tc.use_wood": 0, "u.chest": 4, "m.allium": 24, "g.leaveGame": 4, "g.timeSinceDeath": 12319, "p.string": 4, "p.goldNugget": 102, "p.enderPearl": 1, "p.dandelion": 47, "m.netherQuartzOre": 20, "m.blackstone": 30, "c.chest": 4, "u.furnace": 3, "c.goldIngot": 27, "c.ironChestplate": 1, "cu.sleepInBed": 5, "m.whiteBed": 2, "q.oxeyeDaisy": 1, "p.bread": 11, "p.whiteBed": 2, "c.ironSword": 1, "cu.swimOneCm": 288965, "q.stoneSword": 1, "m.poppy": 7, "m.darkOakLeaves": 19, "p.oakSapling": 24, "k.spider": 6, "p.feather": 6, "m.tallGrass": 29, "p.basalt": 46, "k.enderman": 2, "u.sand": 1, "p.roseBush": 33, "u.sunflower": 1, "p.cornflower": 7, "m.dirt": 53, "q.diorite": 6, "tc.valid": 0}}
\ No newline at end of file
diff --git a/bcrmc/tabs.js b/bcrmc/tabs.js
new file mode 100644
index 00000000..f495a3cd
--- /dev/null
+++ b/bcrmc/tabs.js
@@ -0,0 +1,80 @@
+import { $, $all } from './utils.js';
+class Tab {
+ constructor(element, group_id) {
+ this.element = element;
+ this.group_id = group_id;
+ this.name = element.getAttribute('name');
+ }
+ ;
+}
+const TAB_CLICKED = new Event('tab-clicked');
+let tab_groups = {};
+let tab_controlled_elements = [];
+let loaded_tab_content = {};
+let active_tab;
+let previous_tab;
+export function new_tab_group_id() {
+ let new_id = Math.random().toString(36).substring(2, 7);
+ while (tab_groups.hasOwnProperty(new_id)) {
+ new_id = Math.random().toString(36).substring(2, 7);
+ }
+ return new_id;
+}
+export function get_tab_group_id(element) {
+ return element.getAttribute('tab-group-id');
+}
+export function $tab_group(group_id) {
+ return $(`[tab-group-id="${group_id}"]`);
+}
+export function setup_tabs() {
+ $all('button.tab').forEach((button) => {
+ // Group tab buttons with the same parent
+ if (!button.parentElement.hasAttribute('tab-group-id')) {
+ button.parentElement.setAttribute('tab-group-id', new_tab_group_id());
+ tab_groups[get_tab_group_id(button.parentElement)] = [];
+ loaded_tab_content[get_tab_group_id(button.parentElement)] = null;
+ }
+ let group_id = get_tab_group_id(button.parentElement);
+ let this_tab = new Tab(button, group_id);
+ tab_groups[group_id].push(this_tab);
+ // And keep track of what elements are being controlled by tab buttons
+ if ($(`div[name=${button.name}]`)) {
+ tab_controlled_elements.push($(`div[name=${button.name}]`));
+ }
+ else {
+ console.warn(`Nothing is being controlled by tab button with name "${button.name}"`);
+ }
+ button.addEventListener('click', () => {
+ if ((active_tab == this_tab) && (button.classList.contains('active'))) {
+ return;
+ }
+ previous_tab = active_tab;
+ active_tab = this_tab;
+ document.dispatchEvent(TAB_CLICKED);
+ });
+ });
+ document.addEventListener('tab-clicked', () => {
+ tab_groups[active_tab.group_id].forEach((tab) => {
+ tab.element.classList.remove('active');
+ });
+ active_tab.element.classList.add('active');
+ // What, if anything, is currently loaded in the desired tab's group
+ let loaded_active_group = loaded_tab_content[active_tab.group_id];
+ if (loaded_active_group != null) {
+ loaded_active_group.classList.add('off');
+ loaded_tab_content[active_tab.group_id] = null;
+ // i wrote this in a haze last night and it works but i dont remember how
+ let previous_loaded_content = $(`div[name="${previous_tab.name}"]`);
+ previous_loaded_content.classList.add('off');
+ if (active_tab.group_id != previous_tab.group_id) {
+ for (let tab of tab_groups[previous_tab.group_id]) {
+ tab.element.classList.remove('active');
+ }
+ }
+ loaded_tab_content[previous_tab.group_id] = null;
+ }
+ let to_load = $(`div[name="${active_tab.name}"]`);
+ to_load.classList.remove('off');
+ loaded_tab_content[active_tab.group_id] = to_load;
+ });
+}
diff --git a/bcrmc/tabs.ts b/bcrmc/tabs.ts
new file mode 100644
index 00000000..23b152bf
--- /dev/null
+++ b/bcrmc/tabs.ts
@@ -0,0 +1,92 @@
+import { $, $all } from './utils.js'
+
+class Tab {
+ public readonly name: string;
+
+ constructor(public element: HTMLElement, public group_id: string) {
+ this.name = element.getAttribute('name');
+ };
+}
+
+const TAB_CLICKED: Event = new Event('tab-clicked');
+
+let tab_groups: { [key: string]: Array } = {};
+let tab_controlled_elements: Array = [];
+let loaded_tab_content: { [key: string]: HTMLElement } = {};
+let active_tab: Tab;
+let previous_tab: Tab;
+
+export function new_tab_group_id(): string {
+ let new_id: string = Math.random().toString(36).substring(2,7);
+ while (tab_groups.hasOwnProperty(new_id)) {
+ new_id = Math.random().toString(36).substring(2,7);
+ }
+ return new_id;
+}
+
+export function get_tab_group_id(element: HTMLElement): string {
+ return element.getAttribute('tab-group-id');
+}
+
+export function $tab_group(group_id: string): HTMLElement {
+ return $(`[tab-group-id="${group_id}"]`);
+}
+
+export function setup_tabs(): void {
+ $all('button.tab').forEach((button: HTMLButtonElement) => {
+ // Group tab buttons with the same parent
+ if (!button.parentElement.hasAttribute('tab-group-id')) {
+ button.parentElement.setAttribute('tab-group-id', new_tab_group_id());
+ tab_groups[get_tab_group_id(button.parentElement)] = [];
+ loaded_tab_content[get_tab_group_id(button.parentElement)] = null;
+ }
+
+ let group_id: string = get_tab_group_id(button.parentElement);
+ let this_tab: Tab = new Tab(button, group_id);
+
+ tab_groups[group_id].push(this_tab);
+
+ // And keep track of what elements are being controlled by tab buttons
+ if ($(`div[name=${button.name}]`)) {
+ tab_controlled_elements.push($(`div[name=${button.name}]`));
+ } else {
+ console.warn(`Nothing is being controlled by tab button with name "${button.name}"`);
+ }
+
+ button.addEventListener('click', () => {
+ if ((active_tab == this_tab) && (button.classList.contains('active'))) {
+ return;
+ }
+ previous_tab = active_tab;
+ active_tab = this_tab;
+ document.dispatchEvent(TAB_CLICKED);
+ });
+ });
+
+ document.addEventListener('tab-clicked', () => {
+ tab_groups[active_tab.group_id].forEach((tab: Tab) => {
+ tab.element.classList.remove('active');
+ });
+
+ active_tab.element.classList.add('active');
+ // What, if anything, is currently loaded in the desired tab's group
+ let loaded_active_group: HTMLElement = loaded_tab_content[active_tab.group_id];
+ if (loaded_active_group != null) {
+ loaded_active_group.classList.add('off');
+ loaded_tab_content[active_tab.group_id] = null;
+ // i wrote this in a haze last night and it works but i dont remember how
+ let previous_loaded_content: HTMLElement = $(`div[name="${previous_tab.name}"]`);
+ previous_loaded_content.classList.add('off');
+ if (active_tab.group_id != previous_tab.group_id) {
+ for (let tab of tab_groups[previous_tab.group_id]) {
+ tab.element.classList.remove('active');
+ }
+ }
+ loaded_tab_content[previous_tab.group_id] = null;
+ }
+
+ let to_load: HTMLElement = $(`div[name="${active_tab.name}"]`);
+ to_load.classList.remove('off');
+ loaded_tab_content[active_tab.group_id] = to_load;
+ });
+}
\ No newline at end of file
diff --git a/bcrmc/tsconfig.json b/bcrmc/tsconfig.json
index 57f7f5c9..7f44c5a2 100644
--- a/bcrmc/tsconfig.json
+++ b/bcrmc/tsconfig.json
@@ -1,12 +1,12 @@
{
"compilerOptions": {
- "lib": ["es6", "dom", "es2017"],
- "target": "es5",
+ "lib": ["es6", "dom", "ES2019", "DOM.Iterable"],
+ "target": "ES6",
"module": "es2015",
"esModuleInterop": true
},
"include": [
"*.json",
"*.ts"
- ]
+, "scoreboard/scoreboard.ts" ]
}
\ No newline at end of file
diff --git a/bcrmc/utils.js b/bcrmc/utils.js
index 60c10872..fa86cd0b 100644
--- a/bcrmc/utils.js
+++ b/bcrmc/utils.js
@@ -7,49 +7,37 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
-var __generator = (this && this.__generator) || function (thisArg, body) {
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
- function verb(n) { return function (v) { return step([n, v]); }; }
- function step(op) {
- if (f) throw new TypeError("Generator is already executing.");
- while (g && (g = 0, op[0] && (_ = 0)), _) try {
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
- if (y = 0, t) op = [op[0] & 2, t.value];
- switch (op[0]) {
- case 0: case 1: t = op; break;
- case 4: _.label++; return { value: op[1], done: false };
- case 5: _.label++; y = op[1]; op = [0]; continue;
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
- default:
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
- if (t[2]) _.ops.pop();
- _.trys.pop(); continue;
- }
- op = body.call(thisArg, _);
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
- }
-};
export function json(path) {
- return __awaiter(this, void 0, void 0, function () {
- var response, data;
- return __generator(this, function (_a) {
- switch (_a.label) {
- case 0: return [4 /*yield*/, fetch(path)];
- case 1:
- response = _a.sent();
- return [4 /*yield*/, response.json()];
- case 2:
- data = _a.sent();
- return [2 /*return*/, data];
- }
- });
+ return __awaiter(this, void 0, void 0, function* () {
+ let response = yield fetch(path);
+ let data = yield response.json();
+ return data;
});
}
+export function $(query) {
+ return document.querySelector(query);
+}
+export function $all(query) {
+ return document.querySelectorAll(query);
+}
export function extract_number(input_string) {
return Number(input_string.match(/\d+/)[0]);
}
+export function humanize_number(num) {
+ const abbrevs = ['', '', '', 'k', 'm', ' billion', 'trillion'];
+ const digits = num.toString().length - 1;
+ console.log(digits);
+ return (num / Math.pow(10, digits)).toPrecision(2).toString() + abbrevs[digits];
+}
+export function reverse_object(source_object) {
+ return Object.fromEntries(Object.entries(source_object).map(([k, v]) => [v, k]));
+}
+export function to_camel(input_string) {
+ let words = input_string.toLowerCase().split(' ');
+ let camel_array = [];
+ words.forEach(word => {
+ camel_array.push(word[0].toUpperCase() + word.slice(1));
+ });
+ let camel_string = camel_array.join('');
+ return camel_string[0].toLowerCase() + camel_string.slice(1);
+}
diff --git a/bcrmc/utils.ts b/bcrmc/utils.ts
index 7e5b3765..8cc06439 100644
--- a/bcrmc/utils.ts
+++ b/bcrmc/utils.ts
@@ -4,6 +4,35 @@ export async function json(path: string) {
return data;
}
+export function $(query: string): any {
+ return document.querySelector(query);
+}
+
+export function $all(query: string): NodeListOf {
+ return document.querySelectorAll(query);
+}
+
export function extract_number(input_string: string): number {
- return Number(input_string.match(/\d+/)[0])
+ return Number(input_string.match(/\d+/)[0]);
+}
+
+export function humanize_number(num: number): string {
+ const abbrevs: Array = ['', '', '', 'k', 'm', ' billion', 'trillion'];
+ const digits: number = num.toString().length - 1;
+ console.log(digits);
+ return (num / Math.pow(10, digits)).toPrecision(2).toString() + abbrevs[digits];
+}
+
+export function reverse_object(source_object: { [key: string]: string }): { [key: string]: string } {
+ return Object.fromEntries(Object.entries(source_object).map(([k, v]) => [v, k]));
+}
+
+export function to_camel(input_string: string): string {
+ let words: Array = input_string.toLowerCase().split(' ');
+ let camel_array: Array = [];
+ words.forEach(word => {
+ camel_array.push(word[0].toUpperCase() + word.slice(1));
+ });
+ let camel_string: string = camel_array.join('');
+ return camel_string[0].toLowerCase() + camel_string.slice(1);
}
\ No newline at end of file