From bca429dd94dafc49cf9134040dfdfb6baf0de10c Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 22 Mar 2025 21:41:50 +0000 Subject: Add basic item system --- main.rhm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main.rhm') diff --git a/main.rhm b/main.rhm index 2d306bb..5648c53 100644 --- a/main.rhm +++ b/main.rhm @@ -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") -- cgit v1.2.3