Allows characters to perform time-based jobs to yield resources. Jobs scale with skill levels and provide passive progression.
// Example code for Job System
import { Jobs } from 'rpg-maker-studio';
// Initialize the system
const jobsSystem = new Jobs();
// Configure using helper functions
addJob();
// Add to your game
game.addSystem(jobsSystem);