Skip to content

Commit

Permalink
Move chem-related stuff to its own creative tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Sollace committed Dec 23, 2024
1 parent 3d2c4a8 commit 233f9b0
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions src/main/java/ivorius/psychedelicraft/item/PSItemGroups.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ public interface PSItemGroups {
entries.add(RiftFractionComponent.set(PSItems.RIFT_JAR.getDefaultStack(), 0.9F));
}

entries.add(PSItems.TRAY);
entries.add(PSItems.BUNSEN_BURNER);

entries.add(PSItems.SMOKING_PIPE);
entries.add(PSItems.CIGARETTE);
entries.add(PSItems.CIGAR);
Expand Down Expand Up @@ -88,11 +85,6 @@ public interface PSItemGroups {

entries.add(PSItems.MORNING_GLORY);
entries.add(PSItems.MORNING_GLORY_SEEDS);
entries.add(PSItems.CRYSTAL_METH);
entries.add(PSItems.LSA_SQUARE);
entries.add(PSItems.LSD_PILL);
entries.add(PSItems.EXTACY);
entries.add(PSItems.PACIFIER);

entries.add(PSItems.JIMSONWEED_SEEDS);
entries.add(PSItems.JIMSONWEED_SEED_POD);
Expand All @@ -112,10 +104,6 @@ public interface PSItemGroups {
entries.add(PSItems.COCA_LEAVES);
entries.add(PSItems.DRIED_COCA_LEAVES);
entries.add(PSItems.COCAINE_POWDER);
entries.add(PSItems.CRACK_COCAINE);

entries.add(PSItems.HEROINE_POWDER);
entries.add(PSItems.MORPHINE_TABLET);

entries.add(PSItems.AGAVE_LEAF);
entries.add(PSItems.PEYOTE);
Expand All @@ -132,6 +120,7 @@ public interface PSItemGroups {
entries.add(PSItems.DRIED_CANNABIS_BUDS);

entries.add(PSItems.HASH_MUFFIN);
entries.add(PSItems.JOLLY_RANCHER);

entries.add(PSItems.BROWN_MAGIC_MUSHROOMS);
entries.add(PSItems.RED_MAGIC_MUSHROOMS);
Expand Down Expand Up @@ -172,6 +161,22 @@ public interface PSItemGroups {
}
}
}));
RegistryKey<ItemGroup> PHARMACEUTICALS = register("pharmaceuticals", FabricItemGroup.builder()
.icon(PSItems.MORPHINE_TABLET::getDefaultStack)
.entries((context, entries) -> {
entries.add(PSItems.BUNSEN_BURNER);
entries.add(PSItems.TRAY);
entries.add(PSItems.GLASS_TUBE);
entries.add(PSItems.MORPHINE_TABLET);
entries.add(PSItems.LSD_PILL);
entries.add(PSItems.EXTACY);
entries.add(PSItems.CRYSTAL_METH);
entries.add(PSItems.LSA_SQUARE);
entries.add(PSItems.PACIFIER);
entries.add(PSItems.BROKEN_GLASS);
entries.add(PSItems.CRACK_COCAINE);
entries.add(PSItems.HEROINE_POWDER);
}));
RegistryKey<ItemGroup> DRINKS = register("drinks", FabricItemGroup.builder()
.icon(PSItems.OAK_BARREL::getDefaultStack)
.entries((context, entries) -> {
Expand Down

0 comments on commit 233f9b0

Please sign in to comment.