Decursio Team Wiki
  • The Official Decursio Team Wiki
  • Modpacks
    • Decursio Project: Expert
      • General Info
        • Frequently Asked Questions
          • VR
          • GUI & Visuals
          • Gameplay
          • No Release?
        • Mod Distribution (WIP)
        • Modified Features (WIP)
        • Tips (WIP)
      • Mechanics
        • Quests
        • Ages
        • Gated Features
        • Mob Difficulty
        • Chunk Claiming/Loading
        • Player Health
        • Player Nutrition (PR 26+)
        • Seasons/Agriculture (WIP)
        • Dimensions (WIP)
        • Boss Fights (WIP)
        • Endgame (WIP)
      • Guides
        • Ore Gen
        • The First Day
        • Making Charcoal
        • The Pit Kiln
        • Ore Kilns
        • Construction Paste Processing (WIP)
        • Leather Working (WIP)
        • Making Iron
        • Armors (WIP)
        • Resourceful Bees (WIP)
        • Eidolon & Rituals (WIP)
        • Create Rotational Power Generators (WIP)
  • mods
    • Decursio Stages
      • Generating the mod's files
      • decursio_stages folder
      • The Stage/Restriction file
        • How to make a stage
        • Restrictions
      • Possible Configuration Examples
      • Debug Feature
      • In-Game Commands
      • FAQ
    • [DISCONTINUED ] T.H.I.S.
      • 1.16.5
        • Understanding Stages/Restrictions
        • Creating stages
        • Creating restrictions
          • Restriction Data
          • Settings
        • Final Example
        • Integrations
          • Improved Mobs
      • 1.18-1.19.2
        • Understanding Stages/Restrictions
        • Creating stages
        • Creating restrictions
          • Restriction Data
          • Settings
        • Final Example
    • Pickable Health Orbs
      • Locating the orbs folder
      • Modifying already existing orbs
      • Creating custom orbs
        • Orbs Data
Powered by GitBook
On this page

Was this helpful?

  1. mods
  2. [DISCONTINUED ] T.H.I.S.
  3. 1.16.5

Creating stages

Now let's get to the "harder" part

PreviousUnderstanding Stages/RestrictionsNextCreating restrictions

Last updated 8 months ago

Was this helpful?

So, creating stages is as easy as it could be, just follow the first step of going to the instance's config folder and in there you should find a file called "thitemstages-common.toml" (File example #1), open it with your preferred text editor and start creating stages!

So the contents of the config file should be similar to these:


["General Options"]
	#List all the stages that you want to have.
	stages = ["age_1", "age_2"]
	#Set this value to 'true' whenever you're having issues, this will allow the mod to output everything it tries to do in the log.
	debugMode = true

To create a stage you simply just list another stage in the "stages" parameter. Example: In the code provided above we have: "stages = ["age_1", "age_2"]" if we wanted to add a stage named "nether" we should modify that parameter to look something like this: "stages = ["age_1","age_2", "nether"]"

Now that you know how to create stages let's get to creating restrictions

File example #1