🐗 Boar Adventure - Review #3
Replies: 4 comments 6 replies
-
OnlyExtended.solI did a PR prior to this thread to be able to change the Extended address. In some case it can be easier to deploy the contract with a private address, then attach the Extended role to the actual multisig. I added a 2 steps process (set and accept) similar to what Yearn uses in the Vaults contract. |
Beta Was this translation helpful? Give feedback.
-
rERC20.solMy main concern come from the allowance. I would rather use something like this - mapping(uint => mapping (uint => uint)) public allowance;
+ mapping(address => mapping (uint => mapping (uint => uint))) public allowance; English translation : An The |
Beta Was this translation helpful? Give feedback.
-
loot.solLGTM |
Beta Was this translation helpful? Give feedback.
-
BoarAdventure.solI did a pr with some changes, but here is more of them :) It may be good to update the stats of the Dungeons. After some simulation here is my suggestion : - int public constant dungeon_health = 16;
- int public constant dungeon_damage = 4;
- int public constant dungeon_to_hit = 5;
- int public constant dungeon_armor_class = 4;
+ int public constant dungeon_health = 16;
+ int public constant dungeon_damage = 7;
+ int public constant dungeon_to_hit = 5;
+ int public constant dungeon_armor_class = 5; This way, a max strenght new adventurer won't survive the fight, but a more balanced one will.
For the For the For the
|
Beta Was this translation helpful? Give feedback.
-
Review and questions for the Boar Adventure
Scope :
Beta Was this translation helpful? Give feedback.
All reactions