# 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.

```json
[
  {
    "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
  }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tarantel.gitbook.io/roost-ultimate/1.20.1/crlib.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
