Minecraft Game Stages Conditions mod 2026 download
logo
minecraft mod Game Stages Conditions

Game Stages Conditions

Game Version: 1.18.2
Total Downloads: 8,342
Updated: May 2, 2022
Created: Nov 8, 2021
Download Game Stages ConditionsDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
gamestageconditions-1.18.2-2.0.jar release 11.06 KB May 2, 2022 1.18.2 0 download Game Stages Conditions gamestageconditions-1.18.2-2.0.jar releaseDownload
gamestageconditions-1.16.5-1.2.jar release 10.91 KB May 1, 2022 1.16.5 1 download Game Stages Conditions gamestageconditions-1.16.5-1.2.jar releaseDownload
gamestageconditions-1.1.jar release 7.44 KB Mar 21, 2022 1.16.5 4,779 download Game Stages Conditions gamestageconditions-1.1.jar releaseDownload
gamestageconditions-1.0.jar release 7.39 KB Nov 8, 2021 1.16.5 3,562 download Game Stages Conditions gamestageconditions-1.0.jar releaseDownload

Description

Share this:

Game Stage Conditions

Adds a condition predicate to be used in data-driven files such as loot tables, so that certain aspects trigger based on the stage that the player has.
Useful for loot tables if you want to generate items for players based on the progress that they are at.

Recommended Lootr
Requires Game Stages

Example for stage1 and stage2 and default (in case no stage is applied)
Json loot table
v Written copy-paste helping text version of the image below v
{
"type": "minecraft:chest",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:loot_table",
"name": "minecraft:chests/end_city_treasure",
"conditions": [
{
"condition": "gamestageconditions:stage",
"stage": "stage_2"
}
]
},
{
"type": "minecraft:loot_table",
"name": "minecraft:chests/ruined_portal",
"conditions": [
{
"condition": "gamestageconditions:stage",
"stage": "stage_1"
}
]
},
{
"type": "minecraft:loot_table",
"name": "minecraft:chests/jungle_temple"
}
]
}
]
}
]
}

Comments

Add a comment