mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-05 01:26:20 +00:00
f4d7b3f893
What an update, like damn
15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
local stage, players, objects, projectiles, act, images = ...
|
|
return {
|
|
info = {
|
|
name = "Recov10",
|
|
description = "Gives you 10 health!",
|
|
cooldown = {
|
|
shoot = 6,
|
|
move = 2
|
|
}
|
|
},
|
|
logic = function(info)
|
|
info.player.health = math.min(info.player.health + 10, info.player.maxHealth)
|
|
return false
|
|
end,
|
|
} |