009
We have items, we have lootbags, it’s time to put them together to finish off a big mechanic of the game.
What we’re after is a way to tell an enemy to spawn a lootbag with some items when it dies. Each item should have its own probability of being in the lootbag, eg. common items like potions could have a 100% chance to spawn, while rare items would only be in the loot bag 5% of the time.
Let’s couple the Item and it’s chance of being spawned into a struct, which we’ll call a LootTableEntry
.
While we’re here, let’s also make a custom PropertyDrawer because currently it looks like this:
It’s fine, but it takes up 2 lines making it a foldout, which is unnecessary.
Here we just put both on one line, and also turned the chance field into a slider. This is what it looks like now:
For this first version, it’s gonna be rather simple. We setup an array and loop over each of the items, get a random value and use it to determine whether to spawn the item or not.
We subscribe to the OnDeath event in Awake()
and spawn the loot bag with the items when its invoked.
I added a simple toggle to ItemContainer
, deleteWhenEmpty
. If this is on, everytime the container is updated it checks whether all itemslots are empty and if so, simply destroys itself.
Here’s how it looks in action:
In the future I will probably expand this system with something like groups, essentially excluding the possibility of getting certain items at once.