1
0
mirror of https://github.com/LDDestroier/CC/ synced 2024-07-05 11:33:17 +00:00
ldd-CC/CCBN/ccbn-data/chipdata/recov30

15 lines
316 B
Plaintext
Raw Normal View History

2019-03-13 04:15:41 +00:00
local stage, players, objects, projectiles, act, images = ...
return {
info = {
name = "Recon30",
description = "Gives you 30 health!",
cooldown = {
shoot = 6,
move = 2
}
},
logic = function(info)
info.player.health = math.min(info.player.health + 30, info.player.maxHealth)
return false
end,
}