diff options
author | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-03-22 21:41:50 +0000 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@fryzekconcepts.com> | 2025-03-22 21:41:50 +0000 |
commit | bca429dd94dafc49cf9134040dfdfb6baf0de10c (patch) | |
tree | a2a63bc9fb584622156f268dd71f94424819461d /main.rhm | |
parent | cb01f1f6f930cee6529e51dc3d29945edaa9d95a (diff) |
Add basic item system
Diffstat (limited to 'main.rhm')
-rw-r--r-- | main.rhm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -49,7 +49,8 @@ test(!entity.move(0, 0), "blocked by wall") test(entity.move(1,1), "move by wall") reset_entity(entity, 0, 0) -let other_ent = world.EntityGatherable(1, 1, 1, chunk) +entity.equip[world.Slot.right_hand] := world.Item.bronze_axe +let other_ent = world.EntityGatherable(1, 1, 1, chunk, world.ItemCap.chop) let gather_result = entity.gather(other_ent) test(gather_result == world.ActionResponse.ok || gather_result == world.ActionResponse.unsuccessful, "gathering") |