mirror of
https://github.com/BigJk/end_of_eden.git
synced 2026-02-06 10:48:09 +00:00
13 lines
287 B
Lua
13 lines
287 B
Lua
register_artifact("JUICY_FRUIT", {
|
|
name = "Juicy Fruit",
|
|
description = "Tastes good and boosts your HP.",
|
|
price = 80,
|
|
order = 0,
|
|
callbacks = {
|
|
on_pick_up = function(ctx)
|
|
actor_add_max_hp(ctx.owner, 10)
|
|
return nil
|
|
end
|
|
}
|
|
});
|