CRLib

CRLib is my new Library Mod for all my future Mods and Roost Ultimate. It brings in a feature to create your own Fluid Eggs with all existing Fluids from Vanilla and Mods.

It creates also his own DataPack structure /crlib/resources/.....

New Fluid Eggs get created via json entry in /crlib/fluid_eggs.json

"texture": "fluid_egg" is the default texture to use colormode.

if u want to use your own texture, simple remove lines of colormode:

"colorMode": "OVERRIDE",
    "r": 120,
    "g": 180,
    "b": 255

and set your own texture id and copy your texture to path: /crlib/resources/assets/crlib/textures/item/

Model Jsons get auto created by my Mod.

My Mod creates also the lang en_us.json entry for u.

[
  {
    "chickenName": "Water Egg",
    "id": "egg_water",
    "fluidId": "minecraft:water",
    "texture": "fluid_egg",
    "colorMode": "OVERRIDE",
    "r": 120,
    "g": 180,
    "b": 255
  },
  {
    "chickenName": "Lava Egg",
    "id": "egg_lava",
    "fluidId": "minecraft:lava",
    "texture": "fluid_egg",
    "colorMode": "OVERRIDE",
    "r": 255,
    "g": 110,
    "b": 20
  }
]

Last updated