PST Stage Skill Development System
The PST Stage modification provides character progression management by restricting access to skill trees and individual abilities based on player-achieved development stages.
Core Functionality
This addon allows pack creators and modpack developers to establish dependencies between player-earned stages and the unlocking of development elements:
- Entire skill trees become available only after reaching specific stages
- Individual abilities and skills can be locked until progression conditions are met
Requirements
CraftTweaker installation is required for proper mod functionality, as the configuration system is implemented through scripts.
Usage Examples
Restricting access to skill trees:
import mods.pststage.PSTStage;
PSTStage.applySkillTreeStage("one", [<resource:skilltree:main_tree>, <resource:mymode:tree>]);
Restricting individual skill learning:
PSTStage.applySkillStage("one", [<resource:skilltree:hunter_class>, <resource:skilltree:hunter_crafting_1>]);
Application
The system is perfectly suited for creating structured progression where players gradually unlock new character capabilities by meeting certain requirements and achieving new development levels.