### Development Setup and Execution Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/README.md Details the steps required to set up the development environment, including installing dependencies and running the build process using Grunt. It also mentions the need for Ruby and scss-lint. ```bash npm install gem update --system && gem install scss-lint grunt ``` -------------------------------- ### Install RPG Awesome with Bower Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/README.md Installs the RPG Awesome toolkit using the Bower package manager. ```bash bower install rpg-awesome ``` -------------------------------- ### Install RPG Awesome with NPM Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/README.md Installs the RPG Awesome toolkit using the NPM package manager and provides instructions for referencing the CSS file. ```bash npm add --save rpg-awesome ``` ```css ./node_modules/rpg-awesome/css/rpg-awesome.min.css ``` -------------------------------- ### Install RPG Awesome with Meteor Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/README.md Installs the RPG Awesome toolkit using the Meteor package manager. ```bash meteor add rpg-awesome ``` -------------------------------- ### Import RPG Awesome SCSS Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/README.md Shows how to import the RPG Awesome SCSS files directly into a Sass project. ```scss @import "node_modules/rpg-awesome/scss/rpg-awesome"; ``` -------------------------------- ### RPG Awesome Status Effects Source: https://github.com/nagoshiashumari/rpg-awesome/blob/master/demo/index.html This section lists identifiers for various status effects within the RPG Awesome project. These are likely used internally for game logic, UI display, or data management. ```text ra-aura ra-aware ra-double-team ra-falling ra-monster-skull ra-muscle-fat ra-muscle-up ra-player ra-player-despair ra-player-dodge ra-player-king ra-player-lift ra-player-pain ra-player-pyromaniac ra-player-shot ra-player-teleport ra-player-thunder-struck ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.