diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-14 21:37:10 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-06-14 21:37:10 +0200 |
commit | e1be7203f4c3366a9d278c9bb625a9c678c2ef24 (patch) | |
tree | 0753b9c68ffaada23f2602aebc613c3c7d1eaae2 /plugins/fireball/fireball.c | |
parent | 9d3ecc266d2e06f6cc8f2a310543b16edb8cbd56 (diff) | |
download | dungeon_game-e1be7203f4c3366a9d278c9bb625a9c678c2ef24.tar.xz |
Add loot boxes
Diffstat (limited to 'plugins/fireball/fireball.c')
-rw-r--r-- | plugins/fireball/fireball.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/fireball/fireball.c b/plugins/fireball/fireball.c index a0e9a13..e771d08 100644 --- a/plugins/fireball/fireball.c +++ b/plugins/fireball/fireball.c @@ -3,6 +3,7 @@ #include "../game/game.h" #include "../movement/movement.h" #include "../inventory/inventory.h" +#include "../loot/loot.h" struct fireball_data { @@ -113,4 +114,11 @@ __attribute__((constructor)) static void init() .count = 7, .meta = NULL, }); + + register_loot((struct loot) { + .item = &fireball_item, + .chance = 3, + .min = 4, + .max = 7, + }); } |