Skip to content
ShareYourGraves edited this page Sep 16, 2021 · 4 revisions

attacking

in order to level up, and gain experience, you need to attack enemies. You attack enemies by adding an ⚔️ under the enemy. you can only attack enemies that you spawn, unless you are attacking a boss, in which case, people from your

physical attacks

If you are using a physical weapon: spears, swords, axes and bows, your damage is calculated base off of these formulas.

physical_damage = attacker_strength + attacker_weapon_power - int(0.8 * defender_defense)

magical attacks

If you are using a magical weapon: tomes(magic), your damage is calculated base off of these formulas.

magical_damage = attacker_magic + attacker_weapon_power - int(0.8 * defender_logic)

critical hits 💢

every time you attack, you have a chance of hitting a critical hit, a critical hit doubles your damage. The chance of you hitting a critical hit, is calculated base on the attacker's weapon type.

physical weapons critical chance: crit_chance = attacker_strength + attacker_weapon_crit - defender_defense

magical weapons critical chance: crit_chance = attacker_magic + attacker_weapon_crit - defender_logic

dodge chance

every time you are being attacked, by either an enemy or a player, you might dodge their attack, which automatically neutralizes the enemy's incoming attack. The chance of you dodging is base on these formula.

dodge chance = (defenders_speed - attacker_speed)*5


enemies

You will face many enemies throughout your playthrough, the enemies get progressively tougher as the levels go on.

regular enemies

These are the enemies you will face most of the time, you attack them by going under a floor's bot chat, and summoning them using the .battle command.

Tip: you can't fight enemies, when you are at 0 health, so try not to do that 🙃

bosses

These are the more challenging enemies that you will face, however, you also need to fight them in order to progress onto the next floor, see more about this in progression

Bosses have their separate classes, so their stats are going to be higher than the usual enemies, they also drop more loot upon death.

Clone this wiki locally