Oraxen
  • Getting started
  • Frequently Asked Questions
  • Usage
    • Commands
    • Default items
    • Recipes
  • Configuration
    • Understanding the basics
    • Plugin settings
    • Items (beginners)
    • Items (advanced)
      • Dyeable Items
    • Custom Armors
      • Component Based (1.21.2+)
      • Trims Based (1.20-1.21.1)
      • Shader Based (1.18-1.19.4)
    • Custom HUD
    • Item Appearance
    • Glyphs
      • Custom Gui
  • Mechanics
    • Introduction
    • All mechanics
      • Custom mechanic
      • clickAction Mechanic
    • Furniture Mechanic
      • Furniture Position
      • Display-Entity Furniture
      • Farming Mechanic
    • NoteBlock mechanic
      • Stripped log Mechanic
      • Directional mechanic
      • Farmblock Mechanic
    • StringBlock Mechanic
      • Sapling Mechanic
  • Compatibility
    • BossShopPro - shop
    • CrateReloaded - crates
    • ModelEngine - custom mobs
    • MythicMobs - custom mobs
    • TrMenu - custom inventories
    • MMoItems
    • MythicCrucible
    • HappyHUD
    • World Generators
      • Iris World Generator
      • EpicWorldGenerator
      • Custom Ore Generator
      • RealisticWorldGenerator
  • Vendors
    • Vendor Guidelines
  • Developers
    • Create your own Mechanic
    • Add Compatibility with a plugin
    • Custom hosting service
    • API
Powered by GitBook
On this page
  • How to create custom ores
  • 1) Locate your dimension configuration
  • 2) Add your ore!

Was this helpful?

  1. Compatibility
  2. World Generators

Iris World Generator

Iris is a paid world generator

PreviousWorld GeneratorsNextEpicWorldGenerator

Last updated 2 years ago

Was this helpful?

IrisWorldGenerator allows you to easily generate a really cool looking world. This supports custom BlockDatas, so you can add custom minerals created with Oraxen to be generated like diamond for example. Spigot Link:

How to create custom ores

In this example we assume that you have added a block (an amethyst ore for example) following to your oraxen configuration.

1) Locate your dimension configuration

Go to Iris/pack/YOUR_PACK_NAME/dimensions/YOUR_DIMENSION_NAME.json, by default this should be: Iris/packs/overworld/dimensions/overworld.json

Then, open the file (or the vscode workspace to enjoy the cool vscode integration).

2) Add your ore!

Locate this part of the config:

    "ORES": "All settings in regards to deposits. Contains the ores spawning in your world.",
    "deposits": [
        {
            "minHeight": 19,
            "maxPerChunk": 4,
            "maxHeight": 150,
            "minPerChunk": 1,
            "minSize": 25,
            "maxSize": 25,
            "palette": [{"block": "granite"}],
            "varience": 2
        },

Add your own config using the custom ore properties found at step one. For example:

    {
      "minHeight": 2,
      "maxPerChunk": 2,
      "maxHeight": 30,
      "minPerChunk": 0,
      "minSize": 3,
      "maxSize": 6,
      "palette": [{ "block": "oraxen:amethyst_ore" }],
      "varience": 5
    },

You can now save the file, reset your world and restart!

https://www.spigotmc.org/resources/iris-world-gen-the-dimension-engine.84586/
this example
Page cover image