1 reply
0 recast
0 reaction
Today's progress:
Finished the equipping/unequipping logic. Items can now be equipped to specific slots like head, chest, main hand, off hand, etc.
Most items have a single slot they can be equipped to (e.g., a helmet to a head slot). Others have multiple valid slots (e.g., a one-handed weapon can be equipped to the main hand or off hand), and some take up multiple slots (e.g., a two-handed weapon is equipped in the main hand but also occupies the off-hand slot).
Handling all these cases in the equipItems/unequipItems functions took a bit longer than expected, but it's now working.
Converting the logic from ERC1155 to ERC721 was also a bit tricky. In ERC1155, the tokenId usually defines the item type (unless it's used to define NFTs via totalSupply 1). In ERC721, the tokenId is unique per NFT, but the item type is separate.
All tests are now also passing again after the introduction of the ItemSystem, which is a nice milestone. 1 reply
0 recast
0 reaction