> 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/vanilla-templates.md).

# Vanilla Templates

If you would like Emendatus Enigmatica to completely replace the Vanilla Ores, and give me more control over some of its values, the below templates can be used with minor modifications to suit your needs;

**NOTE:** It is simply impossible to compare the results of a tint-based texture to a drawn texture, and therefore the tint result of the below templates might seem a little off when compared to Vanilla based textures. A complete set of drawn textures has been provided to avoid such mismatching, and should you wish to use the textures provided in [Resources](/emendatus-enigmatica-v2-wiki/resources.md#vanilla-resources), make sure you remove the <mark style="color:orange;">`color`</mark> object from the below templates.

### Materials:

#### Coal

```json
{
  "id": "coal",
  "source": "vanilla",
  "localizedName": "Coal",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "gem",
    "harvestLevel": 0,
    "isBurnable": true,
    "burnTime": 1600
  },
  "oreDrop": {
    "drop": "minecraft:coal",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "1c1c1e"
  }
}
```

#### Copper

```json
{
  "id": "copper",
  "source": "vanilla",
  "localizedName": "Copper",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "metal",
    "harvestLevel": 1
  },
  "oreDrop": {
    "drop": "minecraft:raw_copper",
    "min": 2,
    "max": 5
  },
  "colors": {
    "materialColor": "d78767"
  }
}
```

#### Iron

```json
{
  "id": "iron",
  "source": "vanilla",
  "localizedName": "Iron",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "metal",
    "harvestLevel": 1
  },
  "oreDrop": {
    "drop": "minecraft:raw_iron",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "828282"
  }
}
```

#### Gold

```json
{
  "id": "gold",
  "source": "vanilla",
  "localizedName": "Gold",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "metal",
    "harvestLevel": 2
  },
  "oreDrop": {
    "drop": "minecraft:raw_gold",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "dc9613"
  }
}
```

#### Lapis Lazuli

```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
  },
  "colors": {
    "materialColor": "173782"
  }
}
```

#### Redstone

```json
{
  "id": "redstone",
  "source": "vanilla",
  "localizedName": "Redstone",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "gem",
    "harvestLevel": 2,
    "hasParticles": true
  },
  "oreDrop": {
    "drop": "minecraft:redstone",
    "min": 4,
    "max": 5
  },
  "colors": {
    "particlesColor": "ff0000",
    "materialColor": "aa0f01"
  }
}
```

#### Diamond

```json
{
  "id": "diamond",
  "source": "vanilla",
  "localizedName": "Diamond",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "gem",
    "harvestLevel": 2
  },
  "oreDrop": {
    "drop": "minecraft:diamond",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "1c919a"
  }
}
```

#### Emerald

```json
{
  "id": "emerald",
  "source": "vanilla",
  "localizedName": "Emerald",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
    "materialType": "gem",
    "harvestLevel": 2
  },
  "oreDrop": {
    "drop": "minecraft:emerald",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "007b18"
  }
}
```

#### Nether Quartz

```json
{
  "id": "quartz",
  "source": "vanilla",
  "localizedName": "Nether Quartz",
  "disableDefaultOre": true,
  "processedTypes": [
    "ore",
    "dust",
    "plate",
    "gear",
    "rod"
  ],
  "properties": {
"materialType": "gem",
"harvestLevel": 0
  },
  "oreDrop": {
    "drop": "minecraft:quartz",
    "min": 1,
    "max": 1
  },
  "colors": {
    "materialColor": "ddd4c6"
  }
}
```

***

### Strata

#### Stone

```json
{
  "id": "minecraft_stone",
  "baseTexture": "minecraft:block/stone",
  "suffix": "stone",
  "fillerType": "minecraft:stone",
  "localizedName": "Stone"
}
```

#### Deepslate

```json
{
  "id": "minecraft_deepslate",
  "baseTexture": "minecraft:block/deepslate",
  "suffix": "deepslate",
  "fillerType": "minecraft:deepslate",
  "localizedName": "Deepslate"
}
```

#### Netherrack

```json
{
  "id": "minecraft_netherrack",
  "baseTexture": "minecraft:block/netherrack",
  "suffix": "netherrack",
  "fillerType": "minecraft:netherrack",
  "localizedName": "Netherrack"
}
```

***

### Deposits

As of the latest version of Minecraft, some of the Vanilla Ores have multiple spawn configurations. Multiple configuration templates can be found below per Material.

#### Coal

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_coal_ore_lower_deposit",
  "config": {
    "material": "coal",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 20,
    "size": 17,
    "minYLevel": 0,
    "maxYLevel": 192,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_coal_ore_upper_deposit",
  "config": {
    "material": "coal",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 30,
    "size": 17,
    "minYLevel": 136,
    "maxYLevel": 320,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

#### Copper

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_copper_ore_normal_deposit",
  "config": {
    "material": "copper",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 16,
    "size": 10,
    "minYLevel": -16,
    "maxYLevel": 122,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_copper_ore_large_deposit",
  "config": {
    "material": "copper",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 16,
    "size": 20,
    "minYLevel": -16,
    "maxYLevel": 122,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

#### Iron

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_iron_ore_small_deposit",
  "config": {
    "material": "iron",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 10,
    "size": 4,
    "minYLevel": -64,
    "maxYLevel": 72,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_iron_ore_middle_deposit",
  "config": {
    "material": "iron",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 10,
    "size": 9,
    "minYLevel": -24,
    "maxYLevel": 56,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_iron_ore_upper_deposit",
  "config": {
    "material": "iron",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 90,
    "size": 9,
    "minYLevel": 80,
    "maxYLevel": 384,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

#### Gold

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [
    "minecraft:badlands",
    "minecraft:eroded_badlands",
    "minecraft:wooded_badlands"
  ],
  "registryName": "vanilla_overworld_gold_ore_extra_deposit",
  "config": {
    "material": "gold",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 50,
    "size": 9,
    "minYLevel": 32,
    "maxYLevel": 256,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_gold_ore_lower_deposit",
  "config": {
    "material": "gold",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 1,
    "size": 9,
    "minYLevel": -64,
    "maxYLevel": -48,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_gold_ore_normal_deposit",
  "config": {
    "material": "gold",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 4,
    "size": 9,
    "minYLevel": -64,
    "maxYLevel": 32,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:the_nether",
  "biomes": [
  ],
  "registryName": "vanilla_nether_general_gold_ore_deposit",
  "config": {
    "material": "gold",
    "fillerTypes": [
      "minecraft_netherrack"
    ],
    "chance": 10,
    "size": 10,
    "minYLevel": 10,
    "maxYLevel": 118,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:the_nether",
  "biomes": [
    "minecraft:basalt_deltas"
  ],
  "registryName": "vanilla_nether_delta_gold_ore_deposit",
  "config": {
    "material": "quartz",
    "fillerTypes": [
      "minecraft_netherrack"
    ],
    "chance": 20,
    "size": 10,
    "minYLevel": 10,
    "maxYLevel": 118,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

#### Diamond

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_diamond_ore_large_deposit",
  "config": {
    "material": "diamond",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 9,
    "size": 12,
    "minYLevel": -80,
    "maxYLevel": 80,
    "placement": "triangle",
    "rarity": "rare"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_diamond_ore_lower_deposit",
  "config": {
    "material": "diamond",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 4,
    "size": 8,
    "minYLevel": -80,
    "maxYLevel": 80,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_diamond_ore_normal_deposit",
  "config": {
    "material": "diamond",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 7,
    "size": 4,
    "minYLevel": -80,
    "maxYLevel": 80,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

#### Emerald

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [
    "minecraft:windswept_hills",
    "minecraft:windswept_gravelly_hills",
    "minecraft:windswept_forest",
    "minecraft:meadow",
    "minecraft:frozen_peaks",
    "minecraft:jagged_peaks",
    "minecraft:stony_peaks",
    "minecraft:snowy_slopes",
    "minecraft:grove"
  ],
  "registryName": "vanilla_overworld_emerald_ore_normal_deposit",
  "config": {
    "material": "emerald",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 100,
    "size": 3,
    "minYLevel": -16,
    "maxYLevel": 480,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

#### Lapis Lazuli

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_lapis_ore_lower_deposit",
  "config": {
    "material": "lapis",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 4,
    "size": 7,
    "minYLevel": -64,
    "maxYLevel": 64,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_lapis_ore_normal_deposit",
  "config": {
    "material": "lapis",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 2,
    "size": 7,
    "minYLevel": -32,
    "maxYLevel": 32,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

#### Redstone

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_redstone_ore_lower_deposit",
  "config": {
    "material": "redstone",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 8,
    "size": 8,
    "minYLevel": -32,
    "maxYLevel": 32,
    "placement": "triangle",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:overworld",
  "biomes": [],
  "registryName": "vanilla_overworld_redstone_ore_normal_deposit",
  "config": {
    "material": "redstone",
    "fillerTypes": [
      "minecraft_stone",
      "minecraft_deepslate"
    ],
    "chance": 4,
    "size": 8,
    "minYLevel": -64,
    "maxYLevel": 15,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

### Nether Quartz

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:the_nether",
  "biomes": [
  ],
  "registryName": "vanilla_nether_general_quartz_ore_deposit",
  "config": {
    "material": "quartz",
    "fillerTypes": [
      "minecraft_netherrack"
    ],
    "chance": 16,
    "size": 14,
    "minYLevel": 10,
    "maxYLevel": 118,
    "placement": "uniform",
    "rarity": "common"
  }
}
```

```json
{
  "type": "emendatusenigmatica:vanilla_deposit",
  "dimension": "minecraft:the_nether",
  "biomes": [
    "minecraft:basalt_deltas"
  ],
  "registryName": "vanilla_nether_delta_quartz_ore_deposit",
  "config": {
    "material": "quartz",
    "fillerTypes": [
      "minecraft_netherrack"
    ],
    "chance": 32,
    "size": 14,
    "minYLevel": 10,
    "maxYLevel": 118,
    "placement": "uniform",
    "rarity": "common"
  }
}
```


---

# 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/vanilla-templates.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.
