end_of_eden/assets/scripts/artifacts/juicy_fruit.lua
Daniel Schmidt b2fdbee545 Lua format.
2023-05-16 10:45:31 +02:00

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
}
});