Items can be optained by the player and carried around. The amount of items limited to each entity is determined via its Inventory. Each Bestia (and also a lot of other entities), have their own inventory with different sizes.

Items are mostly crafted by the players. Its quite rare to obtain direct item drops from killed enemies. Instead its very common to loot resources when enemies are killed.

Item Level

Each item has a level assigned. This level is important to determine how hard or easy it is to forge this item, upgrade it and so on. It also effects how spells interact with the item entity.

Item LevelCategory
1 - 20Mundane
21 - 50Superior
51 - 80Rare
81 - 100Legendary
101+Epic

Weapon Refinement

Weapons and armors can be refined which accounts to extra damage dealt if the weapon is used. Each upgrade step can result in a destruction of the equipment.

A refined weapon has increased base damage per level:

Weapon CategoryBase Damage Bonus / Upgrade Level
Mundane2
Superior4
Legendary6
Epic10

Upgrade Chances

These are the base upgrade chances. The chances can be altered via skills or item usages. If a upgrade fails the weapon is destroyed. It is then complelty unusable and also the resources are lost.

Weapon CategoryUpgrade Formula
Mundane$ min(1, e^{-(itemLv-5)/9.8)}) $
Superior$ min(1, e^{-(itemLv-4)/8.69)}) $
Legendary$ min(1, e^{-(itemLv-3)/7.69)}) $
Epic$ min(1, e^{-(itemLv-2)/7.31)}) $

This results in the following upgrade chances. As you can see the chance of success gets less and less the higher the weapon is upgraded and then caps (depending on the weapon level between 5% and 15%). Skills and buffs can alter this chance.

The refine level is not capped but each higher refinement process can destroy the weapon/equipment with an increasing chance. The upgrade chances can be increased by leveling up the Skill Mastery Upgrade Mastery.

Armor Refinement

A refined armor has increased resistance for hard defense. Each upgrade point grants ⅓ points more defense.

Upgrade Chances

TBD

The refine level is not capped but each higher refinement process can destroy the weapon/equipment with an increasing chance. The upgrade chances can be increased by leveling up the Skill Mastery Upgrade Mastery.

Item Crafting

Bestia uses an innovative new item crafting system. The player is allowed to craft all items. Some items however might be so hard to craft so it is not possible to craft it without appropriate skill. Some items may require special ingredients which can not be substituted. The higher the crafted item level and the harder it get to successful craft it. If the crafting of the item fails all the materials used to craft it are lost. In order to craft an item two things are important: the sum of raw materials used to craft and how the materials are laid out.

Item craft success chance is determined by the level of the raw materials used. Higher level raw materials also means a higher success chance.

After an item was successfully crafted the recipe is saved for the user inside his recipe list. From this list the recipe can be inscribed upon paper to give it to other players who can consume and learn it. The learning will take some time (depending of the level of the item).

Players are encouraged to try and create stuff. There are basically 6 domains of craftable and user generatable content in the world of Bestia, and are related to the linked Skill Mastery.

  • Weapons (Blacksmith: Weapon)
  • Armor (Blacksmith: Armor)
  • Magical Artifacts (Scholar: Crafting)
  • Potions and Usables (Alchemy Mastery)
  • Meals (Cooking)
  • Buildings, Traps and non magical devices (Engineering)

Some item are exclusivly usable for certain crafting schools (for example a grape can not be used for forging). Items are categorized into a feature space which consists of 9 axis which describe the different properties of the outcome. The items used add or subtract from those axis and depending on your skill and the distance to a potential target you will successfully learn the blueprint. An attempt to learn a blueprint consumes the raw materials.

After a blueprint was learnt you or your Bestia can produce the items for you.

Feature Space Axis

Armor

  • Hardness - Which main material is mainly used? Metal, leather, cloth?
  • Elasticity - How easy is it to rip it apart (a cloth based armoer will be less stable than a full plate armor)
  • Arcane Absorbtion - How well the item channels magical schools.
  • Elemental Resonance - How well the item aligns with existing elemental flow, which can grant magical effects.
  • Pattern Complexity - Is it a very detailed and sophisticated or rather blunt item?

Craft Duration

Craft duration is determined by the item level which the player is crafting. Skill points in the suitable skill tree (weapon, equipment, construction or alchemy, artifacts) reduces the build time. The baseDuration is given in real time seconds.

  baseDurationSeconds = 1.2 * itemLevel * itemLevel
baseDurationConsumablesSeconds = .3 * baseDurationSeconds
  

Damaging of Items

As with any item in Bestia, it can be damaged. There will be professions capable of repairing items. The durability of an item is given via a percentage. Items will function normally within a wide range of their condition. At a certain level, they slowly lose their properties (armor their armor value, weapons hit less often, magic staffs suffer a damage penalty, etc.). Until the items become unusable. If you then inflict further damage on them, they can be completely and irretrievably destroyed.

DurabilityState
30 - 100%Normal Operation
1 - 29%Increasing Damage Effects
0%Item breaks unrecoverably

Items on the ground can suffer damage from attacks. They are affected by Area Of Effect spells and can be targetted manually albeit they are not auto targeted like enemies.

Item Status Values

In order to let items participate in the battle system they need status values. Items status value distribution is based upon their type (weapon, potion, book etc) and the total amount of points to distribute is given by the item level.

  availableItemStatPoints = itemLv
  

Inventory

The inventory is an important system for interaction between the player and the game mechanics. It must be easy to access and logical build. Each Bestia has its own inventory. So the player must be careful to exchange items between the Bestias in time. Trading must be fast to do to reduce the annoyance.

If a Bestia/Entity is killed and has had some items inside its inventory usually the items are dropped and can be looted. In case a player killed a mob the loot will be protected for 30 seconds so he can exclusivly loot it.

Weight Limit

Items weight is given by units of about 1kg per unit. The smallest division is 0.1 units which aproximates to 100gr. The maximum amount a Bestia can carry is dependent on its strength and its vitality. The Packhorse skill can increase the carriable weight limit. The formula is given as:

  weightLimit = STR / 2 + VIT / 5 + 15 + LEVEL / 5
  

Please not that depending of your used up weight limit regeneration of certain status values might be affected.

Last updated 17 Sep 2025, 01:19 +0200 . history