ldd-CC/CCBN/ccbn-data/chipdata/recov200

16 lines
320 B
Plaintext
Raw Normal View History

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