forked from itsjesski/firebot-rpg
-
Notifications
You must be signed in to change notification settings - Fork 0
Player Handbook
Justin edited this page Aug 21, 2022
·
37 revisions
Firebot RPG was built to be as simple as possible on the front end since it is meant to be played through a chat interface. However, the backend is a deep system of different mechanics that we'll cover here for anyone wanting to dive deep into the game.
All characters in the game have certain equipment slots they're able to equip items to. These slots are:
- Main Hand (main) - The main hand slot for weapons.
- Off Hand (off) - The off hand slot, for weapons or shields.
- Armor - The armor slot, which contains a full set of whatever armor you're wearing.
- Backpack - The backpack slot is a temporary slot. When you get loot, it will go to your backpack for you to review if you want to equip it. If you get another item, the previous item in the backpack will be discarded. It only holds one item.
All weapons in the game will have at least one weapon property on it. These have special effects in combat.
- Ammunition - This is a ranged weapon which must be reloaded to fire. It has penalties when used in melee combat, but most of the time has tremendous range.
- Finesse - This weapon will use only DEX for it's hit bonus.
- Heavy - This weapon will use only STR for it's hit bonus.
- Light - This weapon will ignore the innate chance to miss if it's used in the off hand.
- Reach - This weapon will get one free melee attack at the start of melee combat.
- Thrown - This weapon is treated as a ranged weapon, but typically has short range. It does not have penalties in melee combat.
- Two-handed - This weapon requires both hands to use.
- Versatile - This weapon will use your highest stat out of STR or DEX for it's hit bonus.
All armor and shields will have armor properties.
- Heavy - 50% arcane failure chance, 20ft approach speed, 50% dex bonus to AC, heavy resistances to certain physical damage types.
- Medium - 30% arcane failure chance, 30ft approach speed, 75% dex bonus to AC, medium resistances to certain physical damage types.
- Light - 0% arcane failure chance, 40ft approach speed, 100% dex bonus to AC, light resistances to certain physical damage types.
In addition, you can wear no armor. In this case you get: 0% arcane failure chance, 60ft approach speed, 100% dex bonus to AC, and no resistances.
Combat is done in two phases, a ranged phase and a melee phase.
In the ranged phase, we take into account thrown and ranged weapons. This phase happens before melee combat.