promotional bannermobile promotional banner

Sushi Bar [Unofficial]

A library mod for Chai's mods

Sushi Bar

Sushi Bar is a lightweight library mod for Chai’s mods that provides:

  • An improved owo-config screen integration
  • A convenient item–registration helper to cut boilerplate
  • Extensions for Lavender’s in-game books

🔧 Installation

  1. Download the latest Sushi Bar .jar from CurseForge and drop it into your mods/ folder.
  2. Run your game with Fabric Loader 0.14.0+ or Quilt Loader 1.22.0+.
  3. Make sure you have owo-lib and Mod Menu installed.

🛠 Features

1. Improved owo-config

Replace your @Modmenu annotation with:

@SushiModmenu
public final class MyMod implements ModInitializer { … }

to get:

  • Full support for List<Identifier> fields
  • Automatic generation of sliders, dropdowns, toggles, and textboxes
  • Seamless integration with Mod Menu’s “Config” screen

2. Item Registration Helper

Cut down on Registry.register boilerplate by using RegistrationHelper.

public static final RegistrationHelper register = new RegistrationHelper(MOD_ID);

// 1. Generic item
public static final Item ITEM_A = register.item("item_a");

// 2. Custom item class with default settings
public static final Item ITEM_B = register.item("item_b", MilkBucketItem::new);

// 3. Generic item with custom settings
public static final Item ITEM_C = register.item("item_c",
    new FabricItemSettings().maxCount(1)
);

// 4. Fully custom item
public static final Item ITEM_D = register.item("item_d",
    new EnderPearlItem(new FabricItemSettings().maxCount(16))
);

For comparison, registering without helper:

public static final Item ITEM_A = Registry.register(
    Registries.ITEM,
    new Identifier(MOD_ID, "item_a"),
    new Item(new FabricItemSettings())
);

The helper handles identifier creation and settings for you!


3. Lavender Extensions

Enable advanced in-book recipes by adding the flag to your book JSON:

{
  "type": "minecraft:book",
  "title": "My Handbook",
  "author": "Mod Author",
  "sushi_features": true,
  "pages": [
    { "type": "text", "text": "Crafting recipes!" }
  ]
}

Then use:

  • 2×2 crafting grid:
  <recipe_2x2;minecraft:crafting_table>
  • 1×1 crafting grid:
  <recipe_1x1;minecraft:oak_planks>

 

 

The Sushi Bar [Unofficial] Team

profile avatar
  • 163
    Followers
  • 114
    Projects
  • 140.5M
    Downloads

Modding addict and expert pack player (1.12.2), i really like reviving dead mods ! My only discord username is @Leclowndu93150, please be aware of scammers that use my identity. leclowndu93150.dev

More from Project8gbDeRamView all

  • Scout Reforged project image

    Scout Reforged

    • 1.9K
    • Mods

    "Physically" extending the inventory via bags. NeoForge/Fabric rewrite.

    • 1.9K
    • June 11, 2026
    • Mods
    • +2
  • Really Fast Load project image

    Really Fast Load

    • 212
    • Mods

    Reduces world-load time by skipping unnecessary waits and running chunk I/O in parallel.

    • 212
    • June 9, 2026
    • Mods
  • Create: Simulated Thrusters project image

    Create: Simulated Thrusters

    • 17.6K
    • Mods

    Thruster blocks that generate lift and propulsion for Create: Aeronautics contraptions without moving parts.

    • 17.6K
    • June 9, 2026
    • Mods
    • +1
  • Cable Facades project image

    Cable Facades

    • 6.9M
    • Mods

    Facade support for all cables and blocks in the game!

    • 6.9M
    • June 8, 2026
    • Mods
  • Scout Reforged project image

    Scout Reforged

    • 1.9K
    • Mods

    "Physically" extending the inventory via bags. NeoForge/Fabric rewrite.

    • 1.9K
    • June 11, 2026
    • Mods
    • +2
  • Really Fast Load project image

    Really Fast Load

    • 212
    • Mods

    Reduces world-load time by skipping unnecessary waits and running chunk I/O in parallel.

    • 212
    • June 9, 2026
    • Mods
  • Create: Simulated Thrusters project image

    Create: Simulated Thrusters

    • 17.6K
    • Mods

    Thruster blocks that generate lift and propulsion for Create: Aeronautics contraptions without moving parts.

    • 17.6K
    • June 9, 2026
    • Mods
    • +1
  • Cable Facades project image

    Cable Facades

    • 6.9M
    • Mods

    Facade support for all cables and blocks in the game!

    • 6.9M
    • June 8, 2026
    • Mods