About Social Code
summaryrefslogtreecommitdiff
path: root/main.rhm
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-22 21:41:50 +0000
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-22 21:41:50 +0000
commitbca429dd94dafc49cf9134040dfdfb6baf0de10c (patch)
treea2a63bc9fb584622156f268dd71f94424819461d /main.rhm
parentcb01f1f6f930cee6529e51dc3d29945edaa9d95a (diff)
Add basic item system
Diffstat (limited to 'main.rhm')
-rw-r--r--main.rhm3
1 files changed, 2 insertions, 1 deletions
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")