> For the complete documentation index, see [llms.txt](https://emendatus-enigmatica.gitbook.io/emendatus-enigmatica-v2-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://emendatus-enigmatica.gitbook.io/emendatus-enigmatica-v2-wiki/examples.md).

# Examples

### Materials:

A couple of examples of material files for a Modded Metal, a Vanilla Gem, and an Alloy.

#### Example 1: Aluminum <mark style="color:green;">\[Modded Metal]</mark>

```json
{
  "id": "aluminum",
  "source": "modded",
  "localizedName": "Aluminum",
  "processedTypes": [
    "ore",
    "storage_block",
    "ingot",
    "nugget",
    "raw",
    "dust",
    "plate",
    "gear",
    "rod",
    "sword",
    "pickaxe",
    "axe",
    "shovel",
    "hoe",
    "paxel",
    "helmet",
    "chestplate",
    "leggings",
    "boots",
    "shield",
    "cluster",
    "fluid",
    "slurry",
    "crystal",
    "shard",
    "clump",
    "dirty_dust",
    "gas",
    "crushed_ore"
  ],
  "properties": {
    "materialType": "metal",
    "harvestLevel": 2,
    "isBurnable": true,
    "burnTime": 1600,
    "isEmissive": true,
    "hasOxidization": true
  },
  "colors": {
    "fluidColor": "c5dbed",
    "materialColor": "c5dbed",
    "gasColor":"98b350",
    "oxidizationColor": "781c22"
  },
  "gas": {
    "isBurnable": true,
    "burnTime": 40,
    "energyDensity": 200,
    "isRadioactive": true,
    "radioactivity": 0.5,
    "isCoolant": true,
    "coolantType": "heated",
    "thermalEnthalpy": 0.4,
    "conductivity": 0.7
  },
  "compat": {
    "create": true,
    "occultism": false,
    "mekanism": true
  }
}
```

#### Example 2: Lapis Lazuli <mark style="color:green;">\[Vanilla Gem]</mark>

```json
{
  "id": "lapis",
  "source": "vanilla",
  "localizedName": "Lapis Lazuli",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "gem",
    "harvestLevel": 1
  },
  "oreDrop": {
    "drop": "minecraft:lapis_lazuli",
    "min": 4,
    "max": 9
  }
}
```

#### Example 3: Brass <mark style="color:green;">\[Alloy]</mark>

```json
{
  "id": "brass",
  "source": "modded",
  "localizedName": "Brass",
  "processedTypes": [
    "storage_block",
    "ingot",
    "nugget",
    "dust",
    "plate",
    "gear",
    "rod",
    "fluid"
  ],
  "properties": {
  "materialType": "alloy",
  "harvestLevel": 2
},
  "colors": {
    "fluidColor": "b5a642",
    "materialColor": "b5a642"
  },
  "compat": {
    "thermal": true,
    "mekanism": false,
    "ars_novea": false
  }
}
```

### Compats:

A couple of examples of material compat files for a Thermal Expansion, and Create.

#### Example1: Iridium <mark style="color:green;">\[Thermal Expansion - Ore and Raw]</mark>

```json
{
  "id": "iridium",
  "recipes" : [
    {
      "mod": "thermal",
      "machine": "pulverizer",
      "values": [
        {
          "type": "ore",
          "output": [
            { "item": "emendatusenigmatica:iridium_dust", "count": 2, "chance": 0.25 },
            { "item": "minecraft:gravel", "count": 1, "chance": 0.35 }
          ]
        },
        {
          "type": "raw",
          "output": [
            { "item": "emendatusenigmatica:diamond_dust", "count": 1, "chance": 0.35 }
          ]
        }
      ]
    },
    {
      "mod": "thermal",
      "machine": "induction_smelter",
      "values": [
        {
          "type": "ore",
          "output": [
            { "item": "minecraft:gold_nugget", "count": 4, "chance": 0.25 }
          ]
        }
      ]
    }
  ]
}
```

#### Example2: Steel <mark style="color:green;">\[Thermal Expansion - Alloy]</mark>

```json
{
  "id": "steel",
  "recipes" : [
    {
      "mod": "thermal",
      "machine": "induction_smelter",
      "values": [
        {
          "type": "alloy",
          "input": [
            { "item": "minecraft:iron_ingot", "count": 2 },
            { "item": "minecraft:coal", "count": 8 }
          ],
          "output": [
            { "item": "emendatusenigmatica:iron_dust", "count": 1, "chance": 0.15 }
          ]
        }
      ]
    }
  ]
}
```

#### Example 3: Silver <mark style="color:green;">\[Create - Ore and Crushed Ore]</mark>

```json
{
  "id": "silver",
  "recipes" : [
    {
      "mod": "create",
      "machine": "crushing_wheels",
      "values": [
        {
          "type": "ore",
          "output": [
            { "item": "emendatusenigmatica:crushed_silver_ore", "count": 3, "chance": 0.25 },
            { "item": "minecraft:sand", "count": 1, "chance": 0.65 }
          ]
        }
      ]
    },
    {
      "mod": "create",
      "machine": "fan_washing",
      "values": [
        {
          "type": "crushed_ore",
          "output": [
            { "item": "emendatusenigmatica:gold_dust", "count": 2, "chance": 0.75 }
          ]
        }
      ]
    }
  ]
}
```

### Strata:

A couple of examples of strata files for a Modded, and a Vanilla type.

#### Example 1: Minecraft Sand <mark style="color:green;">\[Vanilla Type]</mark>

```json
{
  "id": "minecraft_sand",
  "baseTexture": "minecraft:block/sand",
  "suffix": "sand",
  "fillerType": "minecraft:sand",
  "localizedName": "Sand",
  "harvestTool": "shovel",
  "hardness": 0.5,
  "resistance": 0.7
}
```

#### Example 2: Undergarden Depthrock <mark style="color:green;">\[Modded Type]</mark>

```json
{
  "id": "undergarden_depthrock",
  "baseTexture": "undergarden:block/depthrock",
  "suffix": "depthrock",
  "fillerType": "undergarden:depthrock",
  "localizedName": "Depthrock",
  "sampleStrata": true
}
```

### Deposits:

A couple of examples of deposit files for a Vanilla, a Sphere, and a Geode.

#### Example 1: Uranium <mark style="color:green;">\[Vanilla Deposit]</mark>

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [
  ],
  "registryName": "vanilla_overworld_uranium_ore_deposit",
  "config": {
    "material": "uranium",
    "fillerTypes": [
      "minecraft_sand",
      "minecraft_stone",
      "minecraft_andesite",
      "minecraft_granite"
    ],
    "chance": 10,
    "size": 16,
    "minYLevel": 60,
    "maxYLevel": 128,
    "placement": "uniform",
    "rarity": "rare"
  }
}
```

#### Example 2: Galena <mark style="color:green;">\[Sphere Deposit]</mark>

```json
{
  "type": "emendatusenigmatica:sphere_deposit",
  "dimension": "minecraft:the_nether",
  "biomes": [
    "minecraft:crimson_forest"
  ],
  "registryName": "sphere_nether_galena_deposit",
  "config": {
    "blocks": [
      {
        "material": "lead",
        "weight": 10
      },
      {
        "tag": "forge:ores/silver",
        "weight": 3
      }
    ],
    "fillerTypes": [
      "minecraft_netherrack",
      "minecraft_basalt",
      "minecraft_blackstone"
    ],
    "chance": 10,
    "radius": 16,
    "minYLevel": 32,
    "maxYLevel": 128,
    "generateSamples": true,
    "sampleBlocks": [
      { "material": "lead", "weight": 1 , "strata":  "minecraft_netherrack" },
      { "material": "silver", "weight": 2, "strata": "minecraft_basalt" }
    ]
  }
}
```

#### Example 3: Vanilla Metal in the Undergarden <mark style="color:green;">\[Geode Deposit]</mark>

```json
{
  "type": "emendatusenigmatica:geode_deposit",
  "dimension": "undergarden:undergarden",
  "biomes": [
  ],
  "registryName": "geode_undergarden_vanilla_ore_deposit",
  "config": {
    "outerShellBlocks": [
      {
        "block": "minecraft:basalt",
        "weight": 10
      },
      {
        "block": "minecraft:obsidian",
        "weight": 3
      }
    ],
    "innerShellBlocks": [
      {
        "block": "minecraft:blackstone",
        "weight": 10
      },
      {
        "block": "minecraft:tuff",
        "weight": 3
      }
    ],
    "innerBlocks": [
      {
        "block": "minecraft:iron_ore",
        "weight": 10
      },
      {
        "tag": "forge:ores/copper",
        "weight": 3
      },
      {
        "material": "gold",
        "weight": 3
      }
    ],
    "fillBlocks": [
      {
        "block": "minecraft:air",
        "weight": 10
      }
    ],
    "clusters": [
      "emendatusenigmatica:small_gold_bud", 
      "emendatusenigmatica:medium_copper_bud", 
      "emendatusenigmatica:large_copper_bud"
    ],
    "fillerTypes": [
      "undergarden_depthrock"
    ],
    "chance": 10,
    "crackChance": 0.62,
    "minYLevel": 32,
    "maxYLevel": 128
  }
}
```

#### Example 4: Zinc <mark style="color:green;">\[Dense Deposit]</mark>

```json
{
  "type": "emendatusenigmatica:dense_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [
    "minecraft:dark_forest"
  ],
  "registryName": "dense_lead_overworld_deposit",
  "config": {
    "blocks": [
      {
        "material": "lead",
        "weight": 10
      }
    ],
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_andesite"
    ],
    "chance": 10,
    "size": 16,
    "minYLevel": -16,
    "maxYLevel": 128,
    "generateSamples": true,
    "sampleBlocks": [
      { "material": "lead", "weight": 1 , "strata":  "minecraft_gravel" }
    ]
  }
}
```

#### Example 5: Arcane <mark style="color:green;">\[Dike Deposit]</mark>

```json
{
  "type": "emendatusenigmatica:dike_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [
    "minecraft:savanna"
  ],
  "registryName": "dike_arcane_overworld_deposit",
  "config": {
    "blocks": [
      {
        "tag": "#forge:ores/arcane",
        "weight": 2
      }
    ],
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_andesite"
    ],
    "chance": 10,
    "size": 16,
    "minYLevel": -16,
    "maxYLevel": 128,
    "generateSamples": true,
    "sampleBlocks": [
      { "tag": "#forge:ores/arcane", "weight": 1 }
    ]
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://emendatus-enigmatica.gitbook.io/emendatus-enigmatica-v2-wiki/examples.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.
