Define character attributes like Strength, Intelligence, and Dexterity to determine character capabilities. Supports multiple named stat sets (e.g. stats, skills).
// Example code for Stats System
import { Stats } from 'rpg-maker-studio';
// Initialize the system
const statsSystem = new Stats();
// Configure using helper functions
createStatSet();
// Add to your game
game.addSystem(statsSystem);